The obtrusive bar!
Printable View
The obtrusive bar!
shouldn't this be in the Forum Feedback section. ??
i think it represents the last post in the thread. not sure though, because it is present after the last post in all threads.
Moved.
I never noticed that and I have no idea what it is.
Thats been there for at least 18 months. [Edited by MartinLiss]
Its a
as in:
I localized the page and removed , leavingQuote:
<!-- BLJ add bar to break at bottom of posts -->
<div class="smallfont" align="center">
<table cellpadding="0" cellspacing="0">
<tr valign="bottom" align="left">
<td class="tfoot"> </td>
</tr>
</table>
</div>
<!-- /BLJ -->
<td class="tfoot"></td>
and the whole bar disappeared.
I then decided to see what happens if I made it an a:
Well, the bar reappeared and so did the a.
Seems that there needs to be some text present, but even a space changes the color at that point.
:ehh:
The non breaking space appears to be there because at the time our local template-editing admin was unaware of the possibility of using CSS to dictate the height of an empty element, rather than inserting a non breaking space :D
If an block element is empty naturally it defaults to zero height. It could be solved simply by adding an extra rule to the template CSS.
Code:tfoot
{
min-height: 1em;
}