I have a site built incorporating a java script under the banner which I call the "Sponsors Scroll Bar". This is a fixed width (cannot use %) scroller.
The site looks different in the different browsers.
See http://www.ballinasalmonfestival.ie/index.php.
In some browsers or screen resolutions the banner background and footer appear narror than the site width and in others it appears wider than the Sponsor Scroll Bar.
Can anyone advise what might be wrong here?
Rgds
Kieran
[Solved]Site rendering in Firefox & IE6+
[Solved]Site rendering in Firefox & IE6+
Last edited by KJHunt on Tue Mar 15, 2011 8:54 am, edited 2 times in total.
Re: Site rendering in Firefox & IE6+
You need to use a fixed width page to accomplish uniformity.
Change:
to:
And you can get rid of the IE max and min width javascript from your template, as well.
Nullig
Change:
Code: Select all
div#pagewrapper {
border: 1px solid black;
margin: 0 auto; /* this centers wrapper */
max-width: 82em; /* IE wont understand these, so we will use javascript magick */
min-width: 60em;
background-color: #fff;;
color: black;
}
Code: Select all
div#pagewrapper {
border: 1px solid black;
margin: 0 auto; /* this centers wrapper */
width: 972px;
background-color: #fff;;
color: black;
}
Nullig
Re: Site rendering in Firefox & IE6+[Solved]
Nullig
Thanks a million - 3 of us spend a long time trying to fix this.
Thank you, thank you.....
Kieran
Thanks a million - 3 of us spend a long time trying to fix this.
Thank you, thank you.....
Kieran
