320px width applied below, but in 480 px not same css rules

320px width applied below, but in 480 px not same css rules, correspond to media queries both at 3col-wide-footer.css ?

.subnav .wifili, .subnav .nav, .subnav h2 {
display:none;
}
.navLinks {
text-align:center;
}
look at georgiosrafaelavilla.com

well?

You’ll have to clarify your question, as it’s not clear. Perhaps post an example file that demonstrates the problem. Here’s a template you can use for that:

I mean in dw cs6 these work for width in dw 320px but not work for 480px… georgiosrafaelavilla.com

Hi as Ralph said its not clear which issue you are referring to but you do have a typo in the media query where you have forgotten the brackets. It should be like this:


 @media screen and [B](min-width:480px) and (max-width:767px)[/B] {
.wrapper {
 width: 95%;
 margin: 0 auto 0 auto;
}

}

worked thks