Home › Forums › CSS › Moving image to button on hover › Reply To: Moving image to button on hover
February 15, 2016 at 3:08 am
#238025
Participant
Atelierbram, thanks for helping me out on this project. now i´m really happy about the new menu. Ive gotten better at CSS and JS, so i´m hoping the next challanges are easier to solve.
last little question, the display: flex; shows two word text on two lines. Is there a way to force it to show all items on one line, then use the following code to hide it for mobile?
@media only screen and (max-width: 900px) {
#fancy-nav {
flex-direction: column;
}
#fancy-nav #magic-line-two {
visibility: hidden;
}
}
Thanks!