I have created a Distributor page here:
http://gator995.hostgator.com/~ilotus/distributors

Am am using:
Drupal 6
Lightbox2 Module

When i load the page in Firefox it is perfect.
When i load the page in IE8 everything is messed up.

Im assuming its a css problem but have no idea how to fix it / define a seperate css file for IE8.

Any help would be REALLY appreciated.

Thank you.

Comments

pixelz’s picture

Hi,

Sorry - am not seeing any issues in IE8, but if you need to use a seperate sylesheet, use the IE conditional comments. In the head of your html write in:

<!-- [if IE8]
 <style type="text/css">
 @import("ie8styles.css");
</style>
-->

That will bring in your stylesheet for IE8 browsers

furthermore:
IE = internet explorer all versions
IEx = internet explorer version x
lt IEx = all versions earlier than IEx
lte IEx = all versions earlier than IEx including IEx
gt IEx = all versions later than IEx
gte IEx = all versions later than IEx including IEx

Hope this helps!