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:
/* 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> ).
/* 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)
/* 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
.
Thanks for any help.
Chris
RGB World, Inc. - Software & Web Development.
rgbworld.com
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

Thanks for any help.
Chris
RGB World, Inc. - Software & Web Development.
rgbworld.com