Unless you provide a link to your site, no one will be able to offer much in the way of specific help.
My apologies, this is my site,
http://www.guelphkettlebell.com
I found a “make shift” solution, but it still isn’t perfect. If it is the best I can get, I’ll live with it. 🙁
In the style.css:
body {
font-size: 62.5%; /* Resets 1em to 10px */
font-family: Tahoma, Verdana, Arial, Sans-Serif;
background: #bcc5c1 url(‘images/bg.jpg’) top center no-repeat; min-width: 1054px;
color: #333;
text-align: center;
margin: 0 0 20px 0;
padding: 0;
}
I added the line in bold. Now here is the new problem, in Firefox when moving the window the graphics are “gutty” for a lack of a better term, they “kinda” stay fixed… I hope that makes sense.
Thanks for the help,
Matthew
The fix you’ve implemented is pretty much what I’d have suggested. I can’t see any problem with the images in Firefox 3.6.
Yeah, I’m also using IE8 on Windows 7 and checked it there. The image still moves, I implemented the code in bold:
body {
font-size: 62.5%; /* Resets 1em to 10px */
font-family: Tahoma, Verdana, Arial, Sans-Serif;
background: #bcc5c1 url(‘images/bg.jpg’) top center no-repeat; min-width: 1054px;
color: #333;
text-align: center;
margin: 0 0 20px 0;
padding: 0;
display:table;
width:100%;
}
Unfortunatly, the “display: table” only works in versions of IE before IE8. I still need to try and fix, IE8. Thanks for your help thus far.
Matthew
Is that a fix? Pardon my “newbieness” but I checked it out and can’t figure out how to implement it to make sure there is no resizing on IE8.
Could you explain a little.
It was in reference to you wanting a fix for IE when using display:table.