The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Mozilla problem (ugh)
I hate Mozilla with the fire of a thousand suns.
If you bring up my site in IE, Maxthon or Opera, my search box formats correctly. I have no breaks between the box and the submit button: IE: Opera: And now, FF, which is for some reason putting a break between the box and the button, even though the table cell in question is 250px wide, and the search bar is half of that. Here's the code: Code:
<!-- Search Box --> <td style="background: #333333 url(http://www.sevenstring.org/forum/images/misc/snav_gradient.jpg);" valign="middle" class="alt1" width="250"><form action="http://www.sevenstring.org/forum/search.php" method="post"> <input type="text" style="width:100px;" class="bginput" name="query"/> <input style="font: bold 10px Arial" type="submit" class="button" value="Search" /><input type="hidden" name="s" value="" /> <input type="hidden" name="do" value="process" /> <input type="hidden" name="showposts" value="0" /> <input type="hidden" name="quicksearch" value="1" /> </form></td> <!-- /Search --> |
#2
|
|||
|
|||
you applied the style before calling the class, you have to do the opposite... also, put the hidden fields outside the table, if possible, to stop the br like event...
HTML Code:
<!-- Search Box --> <form action="http://www.sevenstring.org/forum/search.php" method="post"> <input type="hidden" name="do" value="process" /> <input type="hidden" name="showposts" value="0" /> <input type="hidden" name="quicksearch" value="1" /> <td style="background: #333333 url(http://www.sevenstring.org/forum/images/misc/snav_gradient.jpg);" valign="middle" class="alt1" width="250"><input type="text" style="width:100px;" class="bginput" name="query"/> <input style="font: bold 10px Arial" type="submit" class="button" value="Search" /><input type="hidden" name="s" value="" /></td> </form> <!-- /Search --> |
#3
|
|||
|
|||
Thanks dude. I ended up wrapping it in a "div style="white-space:nowrap", which seemed to do the trick.
|
#4
|
|||
|
|||
yeah, sure, the nowrap is very useful between browsers incompatibilities...
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|