BoulderBum
Programmer
Okay, so I have this site that looks great in IE, bad in Firefox.
Basically what I want is a section that has an image floating to the left, an image floating to the right, and text in between that continues beneath the left section.
The HTML gets spit out in a format like this:
In FireFox, all of the elements get stacked right on top of each other and knock off the alignment of everything else. Can anyone tell me how to get this to render properly in Firefox and, even better, can someone tell me what I'm doing wrong?
Oh, by the way, to see the real world prototype that doesn't render well in firefox, you can visit here:
MCP, MCTS - .NET Framework 2.0 Web Applications
Basically what I want is a section that has an image floating to the left, an image floating to the right, and text in between that continues beneath the left section.
The HTML gets spit out in a format like this:
Code:
<div style="clear: both">
<div style="float: right">
<div style="height:203px;width:182px;">
<img style='border-width: 0px;' src='...'/>
</div>
</div>
<div style="float: left">
<img align="left" src="..."
style="border-width:0px; margin-right:17px" />
<strong>Title here,</strong>
A lot of text goes here...
</div>
</div>
In FireFox, all of the elements get stacked right on top of each other and knock off the alignment of everything else. Can anyone tell me how to get this to render properly in Firefox and, even better, can someone tell me what I'm doing wrong?
Oh, by the way, to see the real world prototype that doesn't render well in firefox, you can visit here:
MCP, MCTS - .NET Framework 2.0 Web Applications