Home › Forums › CSS › Issue postioning Nav menu › Re: Issue postioning Nav menu
January 28, 2013 at 1:22 pm
#122614
Participant
you could use a media query and change the css when the menu overlaps.
@media all and (max-width:700px){
//your new css when the website is smaller than 700px.
//you don’t have to recreate all your css here. just the css that you want to change.
}