what theme are you using?
how did you center the menu?
can you post a link to your site?
Generally speaking you would use media queries to override CSS for small screens. Media queries look roughly like this:
@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.
Thank you both for replying my post.
Michael, I`m using Spacious theme. Here is the link for my website http://www.vejaumbomfilme.com.br
I’d be really thankful if you could help me with any guidance.
Thank you very much
Bcworkz, thank you too!