A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.
Hi guys
I am in the process of developing a skin based on mitchinson-earthy. I want to a simple thing. Just draw a solid 1px border for each module that is placed in the right or left panels and not the whole panel. I noticed that a module display constitues of series of divs witch starts using CSS classes rtop and rbottom and ltop and lbutton and then moduletitle and modulecontent. The problem is that if I put border for each of these divs it will look disconnected in some areas. What I want is to wrap each module in one div and put that div in a class that draws the borders around it. What is the best way of doing this?
Regards
NG
Try this:
.leftside .panelwrapper, .rightside .panelwrapper {border: 1px solid #000;}
HTH,Joe D.
Excellent! Thanks! It worked! I didn't notice that there was a class specific for that!