Info
- 4 posts
- 3 voices
- Started 4 years ago by schmitt
- Latest reply from M
- This topic is not resolved
Noobish CSS Question
-
- Posted 4 years ago #
The front page of my forum has the tags overflowing off the bottom. I struggle with CSS, anyone know what position property must be changed to fix this?
-
- Posted 4 years ago #
There's no direct solution. You can do one of these:
- Change
<?php tag_heat_map(); ?>to<?php tag_heat_map('limit=30'); ?>. The default limit is 40 I think, if you set it to 30 or any appropriate number they won't go so far down. But you'd want to change that again later. - Put the
footerinside thewrapper. I'm not sure how your templates are arranged, but in kakumei you'd just have to openfooter.phpand move the codeblock that produces the divfooterup a few lines, just above the previous</div>. Permanent change, now the footer is on the white, but the white will always stretch down sufficiently. - Wait it out - eventually there'll be enough topics to stretch the page :)
I think there are a few other things you could do, but that second point is probably the best if you need it changed now.
-
- Posted 4 years ago #
Thanks. Someone else contacted me with another fix.
add this<div style="clear:both;"></div>
just before the end of wrapper div.. before this</div>
<div
id="footer">
<p>Nyquist Forums is proudly powered by <a
href="http://bbpress.org">bbPress.</p
>
</div>
There are more topics but they are private. -
- Posted 4 years ago #
In Safari/Camino, it still has issues.
#hottags{height: 100%;}helps that one.Quick fix, not guaranteed to work... thus, I resort to an acronym: YMMV.
-
You must log in to post.