Log in

View Full Version : Big Firefox/Chrome Issues



Jaganath
02-23-2010, 10:24 AM
Hi Folks, I've developed a site in IE that works perfectly, but falls to pieces in Firefox Chrome - the layout gets destroyed and there are issues with the menu text rendering etc.

I'm hoping that it's fairly simple float issues and not something fundamental as the stylesheet is fairly complex, but i've been unable to figure out what the problem is.

The site is http://www.absolutelyfit.co.uk and the stylesheet is http://www.absolutelyfit.co.uk/css/style.css

Any help would be grately apprieciated :D

bill.onthebeach
03-01-2010, 01:36 PM
If I understand your question, correctly,

I don't have alot of experience with IE, everything I have done is in FF3.5,3.6, so I am not sure if this helps or not.

I do know that it works for me, everytime
<html>
<head>

<style type=text/css>

body {
margin: 0;
padding: 0;
width: 100%;
}

.wrapper {
margin: 0;
padding: 0;
width: 95%;
}

<body>
<div class="wrapper">

<!-- Everything goes here --->

</div
</body>
</html>

Page is centered.
The bonus is that by adjusting the wrapper width, you can have two background colors, one for body and one for wrapper, which gives a nice effect.

works for me (in FF)

bill.onthebeach