Reputation: 131
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
Reputation: 780
try changing in your init.js this:
var $sc = $('#sidebar, #content'), tid;
for this:
var $sc = $('#sidebar'), tid;
Upvotes: 1