• Is there a way to remove the top white menu bar? It is in the way of my header image and I would like to turn it off.

    Image is attached to this post. The top white bar that says Tip Tail and has the page links. I would like that to go away or be able to change it to make it a lot smaller, or change the colors. Thanks.

    • This topic was modified 10 months, 4 weeks ago by cynthiablue. Reason: added text

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello,

        The top white menu bar you’re referring to is most likely part of your theme’s header section. You have a few options depending on what you’d like to achieve:

        1. Remove the Top Menu Bar Entirely
            If you don’t want the top menu at all, you can hide it using custom CSS. Please follow the steps below:

            Go to Appearance > Customize > Additional CSS

            Add the following CSS code:

            .menubox .container {
              display: none;
            }

        2. Make the Top Bar Smaller
            To reduce the height of the top menu, you can try this CSS:

            .main-navigation a {
              padding: 14px 22px;
              font-size: 14px;
            }

        3. Change the Background Color
            If you’d prefer to keep the top menu but change its appearance, you can use this CSS:

            .menubox .container {
              background-color: #000000; /* Replace with your preferred color */
            }
           
        Let me know if you need further assistance or if you’d like help customizing the colors or layout further!

    Thank you.

Viewing 1 replies (of 1 total)

The topic ‘Remove Top Bar?’ is closed to new replies.