• I want to remove or reduce the space directly below the Top Menu on all pages. I have tried various CSS but nothing is working.

    Thanks in advance!

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello missswain,

    Could you please add the following code to the Themes > Customize > Additional CSS section of your WordPress Admin dashboard:

    #header {
        margin-bottom: 60px; /* Change the 60px to whatever you feel looks better (maybe 30px?) */
        position: relative;
    }
    

    That should allow you reduce or remove the space directly below the menu on all pages.

    Hi @missswain,

    Update below code in the Custom CSS tab under Appearance > Customize
    OR
    You can update this code in your active theme style.css/style.min.css file (Path: https://wildaboutnutrition.co.uk/wp-content/themes/soledad/style.css)

    Old Code:

    #header {
        margin-bottom: 60px; 
        position: relative;
    }

    New Code:

    #header {
        margin-bottom: 25px; 
        position: relative;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Reduce/Remove Space after Top Menu’ is closed to new replies.