In live mode, Opiummmm I'm told did this anywho, can someone pop in the code to make the bottom frame small, like at most 25px or something? In netscape it's a lovely 25% or so of the bottom... and it's pretty hideously big :o)
I wouldn't complain if it had the normal default resizable thingies but it doesn't, so I can't stretch it smaller.... just a minor complaint
Simple solution, change from this code:
<html><head><title>thegreatdark's friends: live!</title></head>
<frameset rows="100%,0%" border="0">
<frame src="friends?mode=framed" name="livetop">
<frame src="friends?mode=livecond&lastitemid=0" name="livebottom">
</frameset></html>
To this:
<html><head><title>thegreatdark's friends: live!</title></head>
<frameset rows="*,1" border="0">
<frame src="friends?mode=framed" name="livetop">
<frame src="friends?mode=livecond&lastitemid=0" name="livebottom">
</frameset></html>
Note: I didn't realize until after I read the code that it wasn't actually SUPPOSED to display that bottom thing. Which explains why my first text doesn't quite make sense. A value of 1 would make it be nicer for Netscape (Seeing as how Mozilla displays it properly -- that is, no bottom frame showing up). Just a thought.