Forums

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

Home Forums CSS [Solved] Firefox and I.E Layout Problem Reply To: Firefox and I.E Layout Problem

#150954
Paulie_D
Member

Answer from StackOveflow

Your CSS is mainly written for webkit and safari browser only as you have used media queries.

Example:-

media="all"
@media screen and (-webkit-min-device-pixel-ratio: 0)
ul.pureCssMenu span {
overflow: hidden;
margin: 0 15px 0 15px;
}

Either use the same CSS for other browser set or create new CSS for other browsers.