mamonesekf
New Member
So I want to code the content section that displays the title, author and the post itself, the code I'm using is where I want the title on top on one row, then the author on another row and content on another:\[code\]<div id="main"> <div class="container"> <div class="title">Title</div> <div class="author">Author</div> <div class="content"> Content here </div> </div></div>\[/code\]or would span be a better choice like this?\[code\]<div id="main"> <div class="container"> <span class="title">Title</span> <span class="author">Author</span> <span class="content"> Content here </span> </div></div>\[/code\]Or is there a completely different and better way of doing this? Thank you.