Slider height and spacing in blog homepage

  • Posted in : Responsy WP
  • marcobardus
    Participant

    Dear team,
    I would like to change the height of the slider (reduce it) or the space beneath it, so that I can move up the blog posts in the homepage with blog posts. Where do I find the code to change this space?

    http://d.pr/i/Zcmk

    The website is this: http://www.bechange.info/

    Thank you!

    Mehmet S.
    Keymaster

    Paste to Theme Settings > Style > Custom CSS:

    .page-header { display: none; }
    #sidebar .search-widget { display: none; }
    
    marcobardus
    Participant

    Thanks for the reply: but I would like to change it only in the homepage, not in the other pages. How can I do it?

    Mehmet S.
    Keymaster

    Paste to Theme Settings > Style > External JS:

    <script>
    jQuery(document).ready(function($)
    {
    if ( $( 'div' ).hasClass( 'small-slider-cta-wrap' ) )
    {
    $( '.page-header' ).hide();
    $( '#sidebar .search-widget' ).hide();
    }
    });
    </script>
    
    marcobardus
    Participant

    Thank you Mehmet, that solved the issue!

Viewing 5 posts - 1 through 5 (of 5 total)

The forum ‘Responsy WP’ is closed to new topics and replies.