Page 2 of 2
Re: Split database content.
Posted: Tue Dec 30, 2008 8:03 pm
by Andrewrun
Code: Select all
#ccol-one {
float: left;
width:445px;
height: auto;
margin: 10px 0px 0px 0px;
text-align: left;
background-color: aqua;
}
#ccol-two {
width: 445px;
height: auto;
margin-left: 455px;
background-color: gray;
}
Try something like this for the CSS. Basically, you're floating the first column on the left and then giving the second column a margin on the left so that it sits next to the first column. You can play around with numbers to get the desired effect.
Re: Split database content.
Posted: Tue Dec 30, 2008 8:29 pm
by newphpnoob
Oh sweet so the changed I did works just how you mentioned it.

Re: Split database content.
Posted: Tue Dec 30, 2008 9:08 pm
by newphpnoob
Thank you very much. Everything worked.
