This thread is over two years old and may be outdated. Please create a new thread if you need help, or email us if you have an active Premium license.

white padding under the menubar.

10 years ago · Last reply by Andrew Misplon 10 years ago

Dear SiteOrigin

I want to delete the white padding below the menu bar.
How do I resolve this issue?

I’ve tried inserting codes into the custom CSS:
#main {
padding: 0px !important;
}

#main { padding-top: 0; }

but it doesn’t get rid of the white padding entirely…
Please help

Thank you

URL: http://savantcoedu.com/mission/

This is our free support forum. Replies can take several days.

Need fast email support? Get SiteOrigin Premium

Replies

9
  1. Andrew Misplon Staff 10 years, 6 months ago

    Hi [email protected]

    You can fix/change this with some custom CSS. If you navigate to Appearance > Custom CSS, you’ll get our custom CSS editor. Just add the following code.

    /* Mission */
    .page-id-8 .entry-header {
    	display: none;
    }
  2. Andrew Misplon Staff 10 years, 6 months ago

    Sorry to hear you ran into problems with this. Try replacing the Custom CSS I just sent with the following:

    /* Full Width Page Template */
    .page-template-template-full .entry-header {
    	display: none;
    }

    On my side that doesn’t seem to change the menu.

  3. [email protected] Private 10 years, 6 months ago

    This is a private message.

  4. [email protected] Private 10 years, 6 months ago

    This is a private message.

  5. Andrew Misplon Staff 10 years, 6 months ago

    Phew, I’m running into a wall there. I can see the problem, I just can’t fix it.

    Are there only five sliders? Can I child theme a solution for you? If so, please, send me a list of page names with the corresponding slider shortcode and I’ll work something up.

  6. [email protected] Private 10 years, 6 months ago

    This is a private message.

  7. [email protected] Private 10 years, 6 months ago

    This is a private message.

  8. Andrew Misplon Staff 10 years, 6 months ago

    Yes, Meta Slider Pro is a competitor to Revolution in terms of layering ability. Pro won’t solve this issue.

    Please, try the following child theme:

    https://siteorigin.com/wp-content/uploads/2015/08/vantage-child-totorovern-01.zip

    Install from Appearance > Themes > Add New: Upload Theme.

    Activating a child theme will cause Customizer and menu location settings to reset. Test the child theme out before using it.

    I’ve replaced the regular slider function with the following:

    <?php 
    		if ( is_front_page() ) {
    			echo do_shortcode ( '[metaslider id=219]' );
    		} 
    		if ( is_page( 8 ) ) {
    			echo do_shortcode ( '[rev_slider alias="mission_homepage"]' );
    		}
    		if ( is_page( 11 ) ) {
    			echo do_shortcode ( '[rev_slider alias="Services_homepage"]' );
    		}
    		if ( is_page( 13 ) ) {
    			echo do_shortcode ( '[rev_slider alias="Differentiations_homepage"]' );
    		}		
    	?>

    Initially, this will cause a duplicate slider on each page. Remove the in page slider and let the header.php file load the slider.

    This will insert the slider in the regular page slider position, above the content and below the nav.

Replies on this thread are closed.

Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Have a different question or issue?

Start New Thread