Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Rightside shows to the right of the rest of the site in Firefox

Quote Reply
Rightside shows to the right of the rest of the site in Firefox
When I display my modified Luna template set in FireFox, I see the rightside column floating to the right of the site for pages that have only rightside displayed in them; however, if I have the leftside and rightside shown in the same page, then both show correctly.

I have the rightside in the CSS specified like this:

Code:
/* Show the right sidebar*/
#ocwrapper {
# border-right-width: 180px;
}
#rightsidebar {
display: block;
margin-right: -180px;
width: 170px;
}
#contentheader .error, #contentheader .message {
margin: 0px 0px 0px 0px;
}

Can you please let me know...
Thanks much in advance...
Mark
Quote Reply
Re: [Mark2] Rightside shows to the right of the rest of the site in Firefox In reply to
#'s aren't comments in CSS (/* ... */ are comments). So the #ocwrapper rule is broken. I believe you didn't mean to put in the # on the border-right-width property.

Adrian
Quote Reply
Re: [brewt] Rightside shows to the right of the rest of the site in Firefox In reply to
Wooow... right on the target... .. actually now it works after I removed the "#" sign from the right-width line...

thanks much Adrian....

Mark