Monday
Nov072011
Create A Custom Border
Example: You want to add a custom border (horizontal rule) to separate content in your site.
In Custom CSS put:
.myBorder { border-bottom: 1px solid #666; padding-bottom: 10px; margin-bottom: 10px;}
In HTML put:
<div class="myBorder">Your Content Here</div>
Difficulty
Intermediate


