Gossamer Forum
Home : Products : Gossamer Links : Discussions :

luna_core.css and IE Mac

Quote Reply
luna_core.css and IE Mac
I am testing the default luna template set and css in multiple browsers.
I am testing Windows(FireFox, IE) and Mac(FireFox, IE, Safari).

The default install has 1 css glitch specific to IE Mac 5.2.3 on OS 10.x.
It has to do with the ocwrapper/rightsidebar css styles.
Specifically, what appears to be the rightsidebar, or the right-margin of
the ocwrapper extends to the right of the wrapper by the distance of rightsidebar.

I have attached pics and will include my css fix.
Is it possible to apply this style fix only to IE/Mac? If so, how?

default luna_core.css:
Code:
#ocwrapper {
/* background colour of left sidebar */
border-left: 0px solid #e2e1eb;
/* background colour of right sidebar */
border-right: 200px solid #e2e1eb;
background: #e2e1eb;
}


Fixed?. Use the background color of the page for border-right (below).
This "fixes" IE Mac, but breaks everything else, but it is the only way I could
find to "easily" make the luna template set work in IE Mac. It breaks the
other browsers by making the rightsidebar white ( no duh <g> ).
Code:
#ocwrapper {
/* background colour of left sidebar */
border-left: 0px solid #e2e1eb;
/* background colour of right sidebar */
border-right: 200px solid #ffffff;
background: #e2e1eb;
}



default colored ( used for 1 of the attached pics, to show what's really happening)
Code:
#ocwrapper {
/* background colour of left sidebar */
border-left: 0px solid #e2e1eb;
/* background colour of right sidebar */
border-right: 200px solid #696969;
background: #e2e1eb;
}
#rightsidebar {
background: #DCDCDC;
}

I would like to fix this, because I am working on different templates and styles for GLinks,
and because my stuff inherits from luna, it HAS to work there first, and IE Mac doesn't.
I wouldn't worry about it except Apple insists on shipping IE (crap) with OSX, so
people are going to use it Unsure.

Thanks for any help.

Chris
RGB World, Inc. - Software &amp; Web Development.
rgbworld.com
Subject Author Views Date
Thread luna_core.css and IE Mac rgbworld 2240 Apr 15, 2006, 9:10 AM
Post Re: [rgbworld] luna_core.css and IE Mac
aus_dave 2132 Apr 16, 2006, 7:02 AM
Thread Re: [rgbworld] luna_core.css and IE Mac
rgbworld 2138 Apr 20, 2006, 7:17 PM
Thread Re: [rgbworld] luna_core.css and IE Mac
brewt 2121 Apr 21, 2006, 6:10 PM
Post Re: [brewt] luna_core.css and IE Mac
rgbworld 2123 Apr 22, 2006, 5:13 AM