Firefox 3 aligning issue

Zyenet

Addicted
Joined
Aug 17, 2007
Messages
758
Reaction score
0
FP$
511
I was testing my site in Firefox 3, and found that the right sidebar gets pushed down quite a bit. This is very annoying, and I'm wondering if anyone knows how to fix it.

Thanks in advance.

P.S. My url is http://www.zyetendo.com
 
I would create a new css class called .sidebar-right and use the following code:
Code:
.sidebar-right {
	width: 190px;
	margin-top: 8px;
	margin-bottom: 9px;
   float: right;
}

Then rename the right sidebar's container from class="sidebar" to class="sidebar-right".

Floating right may push it up. Not 100% Sure though.
 
Tried it. Didn't work. Actually, that's the same code I was using originally.
 
Why are you floating the <td>s? You dont need to.

Just something like this should work:

Code:
<table>
<tr>
<td width="20%">
left sidebar
</td>
<td width="60%">
center column
</td>
<td widht="20%">
right sidebar
</td>
</tr>
</table>
 
Tried that code. Not only made the page look worse, but didn't fix the floating issue.
 
Did you take into account that Spyka made a typo near the bottom of the code?

Try again but change:
Code:
<td widht="20%">
right sidebar
</td>

With:
Code:
<td width="20%">
right sidebar
</td>

Spyka knows what he's talking about when it comes to this kind of thing ~smile~
 
Back
Top Bottom