Hi Steve,
Please remove the float:left and float:right from the CSS File. Namely use
following one instead:
#content-main-two-column {
width:540px;
}
#content-side-two-column {
width:160px;
}
You can refer to:
http://webjournl.wordpress.com/2007/03/15/css-float-property-not-working-in-
firefox-or-is-it/
to learn how to use float.
BTW, sometimes we can use two different CSS files to support different
browsers. You can try following way to do so.
In aspx:
Replace this line:
<link href="App_Themes/Standard/css-content.css" rel="stylesheet"
type="text/css" media="interactive, braille, emboss, handheld, projection,
screen, tty, tv" />
With:
<link href=<%=GetCSSFile() %> rel="stylesheet" type="text/css"
media="interactive, braille, emboss, handheld, projection, screen, tty, tv"
/>
In aspx.cs:
protected string GetCSSFile()
{
if (Request.Browser.Browser == "IE")
{
return "App_Themes/Standard/css-content.css";
}
else //Other browsers
{
return "App_Themes/Standard/cssforotherbrowsers.css";
}
}
Please try it to see if it works and let me know if you have any further
questions.
Regards,
Allen Chen
Microsoft Online Community Support
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can
improve the support we provide to you. Please feel free to let my manager
know what you think of the
level of service provided. You can send feedback directly to my manager at:
(e-mail address removed).
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/en-
us/subscriptions/aa948868.aspx#notifications.
Note: MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from
the community or a Microsoft Support Engineer within 2 business day is
acceptable. Please note that each
follow up response may take approximately 2 business days as the support
professional working with you
may need further investigation to reach the most efficient resolution. The
offering is not appropriate
for situations that require urgent, real-time or phone-based interactions.
Issues of this nature are
best handled working with a dedicated Microsoft Support Engineer by
contacting Microsoft Customer
Support Services (CSS) at
http://msdn.microsoft.com/en-us/subscriptions/aa948874.aspx
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.