I have a couple smal banners in my sidebar. i just stacked the html in the advertisment section. Now the banners are almost touching. how do i let them breath a little with a space or 2. thanks.
<br> is a slightly rudimentary way of doing it. You are best using css.
HTML Code:
.ads {
padding: 5px
}
That will leave a 5px space round anything with the class of element. So if you put your advertisement in a <div> with the class of ads it will have the space round it.
And you need to have a div element for each ad, otherwise, they will end up like they are now. (You probably only want padding-top and padding-bottom, not all four sides.)