rounded corners and background color

A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.

This thread is closed to new posts. You must sign in to post in the forums.
1/14/2010 12:25:54 PM
Gravatar
Total Posts 37

rounded corners and background color

Hello All, 

I cant find the correct place to edit the backgrounf color of html content when added to the left panel. Im using the mitchinson-earthy skin. When I add html content to the center of the page its transparent but when adding to the left it using rounded corners and a background. I have found the code for rounded corners in the stylelayout.css and I have server cache off and colors did not change. thx in advance for any help :)

see example here

1/19/2010 3:51:24 PM
Gravatar
Total Posts 2239

Re: rounded corners and background color

Hi,

I am sorry no one responded to your inquiry sooner. In the future, please do not create a new post in another forum. You can safely "bump" a post if you want to bring it to the top again and no one has answered after a day or so. No one will get mad at you for it, I promise. Anyway, on to answering your question.

 

1) Open the style.css file and

Change (should be around line 197 if you are using a current version of the skin):

div.leftside h2.moduletitle,div.rightside h2.moduletitle,div.leftside div.modulecontent,div.rightside div.modulecontent {
background:#9C9473;
color:#FFF;
}

/* Corner Rounding withNifty Corners */
.rtop,.rbottom { display:block; background:#E4DCB2; }

To:

div.leftside h2.moduletitle,div.rightside h2.moduletitle,div.leftside div.modulecontent,div.rightside div.modulecontent {
color:#FFF;
}

/* Corner Rounding withNifty Corners */
.rtop,.rbottom { display:none; background:#E4DCB2; }

 

You also will want to make sure that browser caching is disabled by setting <add key="CacheCssInBrowser" value="false" /> in your user.config and then opening and saving the web.config (to force the application to reload).

HTH,
Joe D.

1/20/2010 2:57:32 PM
Gravatar
Total Posts 37

Re: rounded corners and background color

Thx you so much Joe, Im on the road today but in the morning I will try :)

thx again Im new to Mojoportal & CSS and I can see already the community is great.

You must sign in to post in the forums. This thread is closed to new posts.