I am trying to put stuff in my side bar of my website but when I put a link under each other, they link sit on top of each other, they are connected for example here is one box here is the other box, I want to separate them so that it looks better any help would be greatly appreciated, I'll rep, stumble digg, promote or whatever
I don't really understand your problem Are you using WP with widget to create sidebar, or just pure HTML. If only pure HTML below should work: <table width="200" border="1"> <tr> <td><a href="hyperlink here"> Here is One Box </a></td> </tr> <tr> <td><a href="hyperlink here"> Here is the other Box </a></td> </tr> </table> --- Any live website to show your real problem?
alter the margins if you are using divs they are supposed to be on top of each other, separate them with margin example: <div> <a href="link1.html" title="Link 1">Link 1</a> </div> <div style="margin-top:10px;"> <a href="link2.html" title="Link 2">Link 2</a> </div>
Here's a question for you. Are those links part of a list of links (like a menu)? If so, then use a list instead of DIVs for them. Then style to taste.