Hi Im currently working on a fan site
but i need to know..
How can i have a content box next to another content box.
Im a beginner so please give me the basic.
Printable View
Hi Im currently working on a fan site
but i need to know..
How can i have a content box next to another content box.
Im a beginner so please give me the basic.
http://www.dynamicdrive.com/style/layouts/
Hope that helps! ;)
Nope.
:[
I need a tutorial or something.
I'v done 3 content boxes,
but wen i do another one
it goes under the second one i did.
Read up on block level elements.
Im guessing this is it:
<div>Content one</div><div>content two</div>
you need to give them the display property as, by default divs are block level elements.
this can be done in css by adding display:block.
You may also want to space the content boxes appart, do this by using the margin property.