• I’m using the latest discover theme version and love the look of it but I can’t for the life of me figure out how to reduce the spacing between the slider and navigation (on my homepage) and the title and body of my pages. My website is https://www.jbsem.com. Any suggestions? Thanks in advance.

Viewing 1 replies (of 1 total)
  • In your dashboard area go to Appearance->Theme Options, and choose the “Custom Style” tab. You will need to add CSS in the Custom CSS editor here.

    I can’t for the life of me figure out how to reduce the spacing between the slider and navigation…

    You’ll need the following CSS:

    #header_container{
    padding-bottom: 0;
    }

    You can change the value of padding-bottom as you wish, depending on how much space you want between the slider and the navigation.

    …and the title and body of my pages

    Try the following:

    h1 {
    margin-bottom: 0;
    }
    
    #subhead_container {
    padding-bottom: 0;
    }
    
    #content_container {
    padding-top: 0;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Spacing btw Header & Title’ is closed to new replies.