Matthias99
Diamond Member
I'm using Netscape 7, and occasionally, the 'buddies' item in the left-hand side menu will be REALLY wide when I load a page, causing the rest of the items on the page to be scrunched way over to the right. I took a glance at the page source, and noticed that the 'buddies' menu item looks like this:
whereas the other items look like this:
That is, they have 'width:150px' in their "style" attribute. Is there a reason this was left off of this item? I think Netscape may sometimes be getting confused and making it a full-width bar instead of just 150 pixels wide.
Incidentally, I don't know WHAT you use to generate your HTML, but it produces some ugly source. There are extra line breaks and tabs everywhere, and it's nearly impossible to read.
<div class="ftmessageheaderbar" style="margin-bottom:1px;">
<a href="javascript:winopen('privatebuddy.cfm', 'pmbud', 500,500);" class="ftmessageheadermenulink"><strong>Buddies</strong></a><br>
<div style="margin-top:3px"></div>
</div>
whereas the other items look like this:
<div class="ftmessageheaderbar" style="width:150px;margin-bottom:1px;">
<strong>Favorites</strong><br>
<div style="margin-top:3px"></div>
</div>
That is, they have 'width:150px' in their "style" attribute. Is there a reason this was left off of this item? I think Netscape may sometimes be getting confused and making it a full-width bar instead of just 150 pixels wide.
Incidentally, I don't know WHAT you use to generate your HTML, but it produces some ugly source. There are extra line breaks and tabs everywhere, and it's nearly impossible to read.