Forum Moderators: not2easy

Message Too Old, No Replies

Safari Form Wrap

         

eternal

4:43 pm on Sep 29, 2005 (gmt 0)

10+ Year Member



I have a situation where by I have a form tightly sqeezed into a menu layer where the form is going onto a new line in Safari.

Here is my code:

<div class="navigation" id="lower_nav">
<img src="images/bottom_widget_left.gif" style="float:left;" alt="" />
<a href="#" style="padding-left:1px ">FIGHT NIGHT</a>
<a href="#">INTERVIEWS</a>
<a href="#">KOTV NEWS</a>
<a href="#">FIGHT ARCHIVE</a>
<a href="#" style="border:0 ">ADDITIONAL NAV</a>
<p style="float:left;">
<form class="search" action="">
<input class="input" type="text" />
<input class="submit" type="submit" value="search" name="submit" />
</form>
</p>
</div>

garann

7:06 pm on Sep 29, 2005 (gmt 0)

10+ Year Member



It looks like you just need your form to display inline. Does this fix it?

<form class="search" action="" [b]style="display:inline;"[/b]>

You should also be able to delete the paragraph around the form and apply the float to the form directly.