• I am new to wordpress and I am building my first site.
    I’ve purchased the Vantage theme and created my own home slider.

    The problem is that I want my home page only display the header, menu, slider and footer, but somehow there is always a home page.

    I’ve managed already to let the home page title go away, but there is still an empty white part. How can I make it go away?

    my site is https://www.digimouse.nl/websites/nqcbe

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,

    You need to try this in your Custom CSS:

    .home #main {
        display: none;
    }
    #footer-widgets {
        display: none;
    }
    #site-info {
        margin: 0 !important;
    }

    If your theme does not support that then please use a free plugin for Custom CSS or use a child theme for adding this code.

    Put the below code in stylesheet:

    .page-id-17 .#main{
    display:none!important;
    }

    Hope it will reduce the whitespace.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘home with only slider’ is closed to new replies.