Reply To: slider height

Homepage Community Forums Epik Theme Support slider height Reply To: slider height

#15763
Wes
Moderator

    I would add this near line 1967 to your css –

    .home .head-wrap {
    	margin: 0;
    }

    that will get rid of some of the space. The other half of the space is coming from the slider section on line 1191. Remove that space by changing the padding to 0px (since all sides of the padding will be 0, you can just add one “0” that will cover them all)….and do the same for the margin area.

    .slider-wide .wrap {
        margin: 0 auto 0;
        padding: 0;
        max-width: 100%;	
    }

    The last step is to change the widget on line 1197 to 0

    .slider-wide .widget {
    	margin: 0;
    }

    The Line numbers may show up on different lines than what is presented above if you add content to your CSS file. Just do a search for the code if you’re unable to find it.