html - Remove extra height (white space in bottom of the page) -
i have website https://www.youwintube.com/ , if @ bottom of website there lot of white space.
so remove went inspect element in firefox .. there style automatically set
<div style="height: 871px; min-height: 487px;" id="content"> but in html template just
<div id="content"> so how height automatically set , how remove .
try changing in init.js this:
var $sc = $('#sidebar, #content'), tid; for this:
var $sc = $('#sidebar'), tid;
Comments
Post a Comment