Home  ›  The Links  ›  Word Press Code Snippets/Tutorials  ›  Create Columns in WordPress Post or Page

Create Columns in WordPress Post or Page

Go to HTML editor and add:

<div id="left">text</div>
<div id="right">text</div>

Add following to the style sheet:

#contact-left{
 float: left;
 width: 150px;
}
#contact-right{
 float: right;
 width: 400px;
}

Leave a Reply

Help us improve the wiki Send Your Comments