HI, I created an image that is 300 x 250 for the right banner. When I add it to the right banner region, the image is vertically aligned to the bottom of the feature blocks. The right banner is right up against the feature bottom grey bar. Is there a way to add a top margin so there is white space in between? Is the position of the right banner set to a specific place? Thanks!
Hm. Hopefully I'm understanding you correctly, that banner should be displaying with a top margin. But you could try adding the following CSS to you stylesheet, and adjusting the margin that way:
.right-banner {
margin-top: 15px;
}
If I'm way off in understanding here I can take a look at your site if you want. The position of the right banner region is specificially set to appear above the right sidebar region.
Hey guy I also have a banner that seems to have no spacing at the top between featured blocks or breadcrumbs.
I found this near line 1039 of style2.css
.right-banner p {
padding: 0 0;
margin: 15px 0;
}
Maybe it's a small bug or I put the p in there by mistake. Removing the p solved the problem for me.
Replace with:
.right-banner {
padding: 0 0;
margin: 15px 0;
}
That was me that had included the p in there. I couldn't tell you why at this point, but it's in the original files so it must have made some sort of sense to me at the time. Without the p is the better way, of course.




