Home › Forums › CSS › Moving image to button on hover › Reply To: Moving image to button on hover
February 15, 2016 at 4:08 am
#238026
Participant
Glad to be of help.
shows two word text on two lines.
white-space
property can force text not to “wrap” on two lines.
#fancy-nav {
/* stuff */
text-align: center;
}
#fancy-nav li {
/* stuff */
white-space: nowrap;
}