I have been trying to add a background colour and boarder to some blocks of text in my page content.
I am trying to add this CSS to the
Edit Stylesheet: theme : Default
Code: Select all
div.sec {
 /* basic */
 background-color: #898D93;
 margin: 0 auto;
 width: 200px;
 padding: 100px;
 text-align: center;
 /* border-radius */
 -webkit-border-radius: 5px;
 -moz-border-radius: 5px;
 border-radius: 5px;
 /* box-shadow */
 -webkit-box-shadow: rgba(0,0,0,0.2) 0px 1px 3px;
 -moz-box-shadow: rgba(0,0,0,0.2) 0px 1px 3px;
 box-shadow: rgba(0,0,0,0.2) 0px 1px 3px;
}Code: Select all
<div class="section">Hello World!</div>been trying for days to do it, any help would be great
Thanks

