• Hello there, I’ve been trying to center my menu, but once I’ve centered it by CSS, it just disappeared at mobile screen.
    Does anyone know where and how can I fix it, please?

    Thank you in advance!

Viewing 3 replies - 1 through 3 (of 3 total)
  • what theme are you using?

    how did you center the menu?

    can you post a link to your site?

    Moderator bcworkz

    (@bcworkz)

    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.

    Thread Starter fgleite

    (@fgleite)

    Thank you both for replying my post.
    Michael, I`m using Spacious theme. Here is the link for my website https://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!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Center Menu’ is closed to new replies.