Quote:
Originally Posted by Hugo Holbling
One issue I'm having with this is that the container collapses in size when loading the new tab. This has the effect of making the forum homepage jump; i.e. as the container reloads the forums move up, and as the new tab is shown the forums move back down again. Is there any way to stop this or fix the size of the container so that it remains constant, whether reloading or not and regardless of how much content is contained in each tab?
|
Hey Hugo.... you can set the container to a "fixed" height, but it you have more text than the height of the container, then its going to over flow below the the set height.
If you want to experiment with it, edit the "smnlikquick" template ..
This Div is what controls the container...
Code:
<div id="divcontainer" style="border:0px; width:97%; padding: 6px; margin-bottom:1em">
</div>
So to give it a "fixed" height, just add the height attribute In RED) to the style like this..
Code:
<div id="divcontainer" style="border:0px; height:205px; width:97%; padding: 6px; margin-bottom:1em">
</div>