Jump to content
Sign in to follow this  
orangewedge

shortcodes in ecopro

Recommended Posts

orangewedge

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

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×