Thank you in advance!
]]>how did you center the menu?
can you post a link to your site?
]]>@media screen and (max-width: 780px) {
/* overriding styles here */
}
You generally reset inapplicable styles by applying dimension 0 or specifying inherit
. A typical small screen override might be
margin: 0; width: 100%; position: inherit;
You should try to match existing media queries from your theme when adding them to custom CSS. Adding additional (or conflicting) breakpoints greatly increases the difficulty of determining proper CSS.
If you require more specific advice, please answer Michael’s questions.
]]>Bcworkz, thank you too!
]]>