 |
|
 |


 |

 |
|

 |
 |
 |
 |
 |
Mozilla Firebird is the next Mozilla browser. It's like Mozilla but it's designed for normal people to use, not geeks. It renders the same, but has a much nicer interface, and the stuff like mail, news, address-book and IRC have been removed and made into their own standalone packages, so all you get is the browser. It's pretty neat, and especially for testing web stuff. There's an extension for it that lets you load the current URL into Internet Explorer, and there's another one that lets you edit the CSS of a page live, without reloading. Really cute stuff. As for what's happening, I think the button's preventing the first column from floating all the way to the left, so there's no room for the second column. Try putting a clear: left rule in the CSS for the left column. You can see what's happening in this shot: http://lazycat.org/tmp/sbwhoops.gif
|
 |
 |
 |
 |
|

 |
 |
 |
 |
 |
 |
From: vexen |
Date: November 4th, 2003 05:23 pm (UTC) |
| (Link) |
|
Oh you answered my question as I asked it...
I liked the trimmed-down, no-additions, efficient browser-only-ness of it, many new browsers just make my old machine go slow, this one sounds like it'll be fast.
I've added clear:both to following CSS (I'm sure you'll get the gist):
div.top,div.title,div.BottomBar,div.Content{width:780px;margin-top:1em;margin-left:1em;clear:both}
All the content is in div.content, but by adding clear:both to all three main divs, I'm making sure that if random stray bigger-than-expected floats start messing with things their affects wont cross into the major pre- and post- content bits.
But... the whole site looks a bit funny, it's been a while since I fine-tuned style stuff for /other/ browsers!
|
 |
 |
 |
 |
|

 |
|

 |
 |
 |
 |
 |
Firebird is pretty neat, been using it for something like a year now. Be aware that it's not a finished product, hence the 0.7 and a few rough edges like the lack of an installer. If you find yourself adoring Firebird and want to play the nightly build game, read Burning Edge - they report on every nightly build so you can see if it's worth getting the latest build (i.e., if the bug that's annoying you has been fixed, or there's a cute new feature you want to play with). While you're playing with Firebird, try out some of the extensions. I use: - All-in-one gestures (mouse gestures for going back and forward, reloading, etc -- very addictive UI enhancement)
- EditCSS (modify a stylesheet in place without reloading)
- Checky (run the current page through a code validator.. don't install the 2.0 on this page, follow the homepage link and install 1.5 instead. This lets you do things like check accessibility and generated HTML validity really easily)
- Tabbrowser extensions (tweak how tabs work - like putting them at the bottom of the window, or making pop-ups load in tabs instead of new windows, etc)
- Download Statusbar (downloads in progress show as little blocks in the status bar instead of having their own window - really pretty handy)
- Cards (Solitaire, Golf, bunch of other card games... ahem :)
|
 |
 |
 |
 |
|

 |
|
|  |
 |

 |
 |
 |
 |
 |
 |
If you replace your old RetPassage() with this one, it works in IE 6, Opera 7, and Mozilla. I don't IE 5.5 or 5, so can't test on that, but this is standard DOM manipulation, so it should work back to 5.0 I think.
<script type="text/javascript"> function RetPassage(){ var temp=window.location.href var i=temp.indexOf("?",1) if(i>1){ temp=temp.substring(i+1) temp=temp.replace("%20"," ") passageElement = document.getElementById('Passage') passageElement.value=temp } } </script>
Also, because you don't specify a !DOCTYPE at the top of your document, you might find that CSS reacts differently across browsers. Then again you might not :) Using a DOCTYPE rather implies that you're coding to a specific standard, and geeks will bitch at you for not validating, whereas if you don't bother they probably won't pester you. Geeks like giving out opinions, but they don't much like teaching apparently!
|
 |
 |
 |
 |
|
|  |
 |

|