Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Moving image to button on hover Reply To: Moving image to button on hover

#238025
motionair
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!