jkskovgaard 0 Report post Posted August 9, 2011 I'd like to style my boxes in the PlatformPro theme. I want a grey margin with rounded edges around each box. I've tried out the following piece of css-code: #boxes { background: #EEEEEE; /* CSS3 Styles */ -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } This code creates a grey margin around the entire box area. I want a margin around each box. How do I do that? Cheers, Jens. Share this post Link to post Share on other sites
Kate 3 Report post Posted August 9, 2011 Each box has a class of "fbox". You could use that instead Share this post Link to post Share on other sites
jkskovgaard 0 Report post Posted August 9, 2011 Thank you, Kate! Problem solved Share this post Link to post Share on other sites