bern 0 Report post Posted April 23, 2011 Hi, I'm loving platform, my site is really taking shape. I have three boxes in the morefoot area. http://www.smalltalkesl.com/ I styled them using this code in the base.css body #boxes .dcol-pad{ background: #0066FF; border-radius:10px; -moz-border-radius:10px; -moz-box-shadow:1px 3px 6px #999 box-shadow:1px 3px 6px #999; padding:10px} Is it possible to style each box in a different color and how? Thanks for your help. Bern Share this post Link to post Share on other sites
catrina 103 Report post Posted April 23, 2011 In order to style each box differently, you'll need to assign a different selector to each box in the section.morefoot.php file. (Note: This is not recommended since the change won't carry over to the upgrade, but you can try it out.) Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
bern 0 Report post Posted April 24, 2011 Hi, thanks for replying that didn't really help but I did it myself quite simply. I'm feeling pretty proud of myself so thought I'd post my solution (haha) First use firebug to find the individual box id's, they'll look something like this: #fbox_368 Then add this code to the base theme for each box to style the border and change the background color. #fbox_368 .dcol-pad{ background: #0066FF; border-radius:10px; -moz-border-radius:10px; -moz-box-shadow:1px 3px 6px #999 box-shadow:1px 3px 6px #999; padding:10px} The result: http://www.smalltalkesl.com/ Share this post Link to post Share on other sites