Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #81008
    Yvonne
    Member

    Hi,
    We are planning on getting rid of the page titles on all of the content pages on our site, and will be including a graphic image below the navigation, which you can see on this page: http://limocycle.com/adventure-tours/

    There is a lot of space between the main bar and the navigation. How do I make that smaller?

    Thanks,
    Yvonne

    #81025
    Pratik
    Keymaster

    Hi @Yvonne,

    Since you are using Catch Everest Pro version, go to “Appearance=> Theme Options => Custom CSS” box and add following code:

    
    #main {
        padding-top: 0;
    }
    

    This will remove the gaps for all the pages(even in homepage).

    If you want it on only that specific page, then you will need to find the ID of the page and use following code(this is for the page you have linked):

    
    page-id-2196. #main {
        padding-top: 0;
    }
    

    If you want it removed on only several pages, then you can stack up the page ids as follows:

    
    page-id-2194. #main,
    page-id-2195. #main,
    page-id-2196. #main {
        padding-top: 0;
    }
    
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Spacing under Main Navigation’ is closed to new replies.