• Resolved afitmess

    (@afitmess)


    hello. i’m using gossip and i can’t figure out how to remove the search box from the header. also is it possible to increase the main menu font size?

Viewing 2 replies - 1 through 2 (of 2 total)
  • If you’ve created a child theme then add the following rule to your child theme’s style.css file. Otherwise, use a CSS plugin like Jetpack or Custom CSS Manager. Don’t edit the theme’s style.css file directly or your changes will be lost the next time you update the theme.

    .search-form {
       display: none;
    }
    @media only screen and (min-width: 784px) {
       .gossip-nav .gossip-desktop-navigation ul li a {
          font-size: 13px;
       }
    }

    The font-size value of 13px is what is currently in effect. Change it to suit your needs.

    Thread Starter afitmess

    (@afitmess)

    thank you. This was exactly what I needed.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘remove search box from header’ is closed to new replies.