• Resolved txphi592

    (@txphi592)


    I’ve tried everything I could find on the internet and nothing has worked so far. I’m trying to reduce/remove the white space between the menu bar and the top of the Meta Slider on https://www.grandegirolle.com . I would HIGHLY appreciate the help.

    My Styles.CSS :

    [ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]

    /*
    Theme Name: Storefront Child
    Template: storefront
    Author: Child Theme Configurator
    Version: 1.0.1432529442
    Updated: 2015-05-25 04:50:42
    */
    
    @charset "UTF-8";
    
    #primary {
    width: 100%;
    }
    
    .woocommerce-result-count {display:none;}
    add_action( 'init', 'custom_remove_footer_credit', 10 );
Viewing 3 replies - 1 through 3 (of 3 total)
  • This is the CSS, from line 391 of your parent theme, that I think causes the large white space there:

    .home.blog .site-header, .home.page:not(.page-template-template-homepage) .site-header, .home.post-type-archive-product .site-header {
        margin-bottom: 4.236em;
    }

    In your child theme’s style.css, try adding this:

    .home.blog .site-header, .home.page:not(.page-template-template-homepage) .site-header, .home.post-type-archive-product .site-header {
        margin-bottom: 0;
    }

    If that doesn’t do it, try this instead:

    .home.blog .site-header, .home.page:not(.page-template-template-homepage) .site-header, .home.post-type-archive-product .site-header {
        margin-bottom: 0 !important;
    }

    By the way, the following should be in your child theme’s functions.php and not in style.css:

    add_action( 'init', 'custom_remove_footer_credit', 10 );

    Thread Starter txphi592

    (@txphi592)

    The second one worked, thanks a lot!!

    Prixer

    (@prixer)

    Hello,

    That works great,
    How to do the same in mobile view?
    I have big gap after mobile menu
    and “huge” gap on the top of content area
    (I am using below header widget area – Only on mobile view)

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove White Space Below Menu’ is closed to new replies.