Devaki Arulmami
Devaki Arulmami

Reputation: 131

Remove extra height (white space in bottom of the page)

i have a website https://www.youwintube.com/ , If you look at the bottom of the website there is lot of white space.

So To remove that i went to inspect element in firefox .. there style automatically set like

<div style="height: 871px; min-height: 487px;" id="content">

but in html template its just

<div id="content">

So how is this height automatically set , how do i remove it .

Upvotes: 2

Views: 728

Answers (1)

Jon Ander
Jon Ander

Reputation: 780

try changing in your init.js this:

var $sc = $('#sidebar, #content'), tid;

for this:

var $sc = $('#sidebar'), tid;

Upvotes: 1

Related Questions