orangewedge 0 Report post Posted May 27, 2011 Are there any? What are some of the codes to create a horizontal line, boxes in the body, etc. A list would be appreciated! Share this post Link to post Share on other sites
kastelic 6 Report post Posted May 27, 2011 To create a horizontal line you can just use the html tag for a horizontal rule which is ``[/code] . I don't know that there are shortcodes to make boxes, but you can always make divs to do that for example: html(put this in your page): [code]<div class="blue-box">Read Me!</div> css(put this in Custom Code -> Custom CSS): .blue-box{ padding:10px 20px; background:blue; color:white; border:1px solid #999; } Share this post Link to post Share on other sites