I can show the inner banner image by adding a block to that region, but that also adds a grey bar across the bottom of the region.
Is there a way to show the banner, but without the gray bar?

Comments

shruti.sheth’s picture

Hello,

1. The grey bar is due to the background image given to in your style.css , Please refer to the following code in your style.css

body.not-front #content-top div.block-wrapper {
  background: transparent url('images/content-top-bg.png') repeat;
  color: #000;
  margin: 76px 0 0;
  padding: 10px;
}

2. If you remove the background from the above code you will not get the gray bar but you would also have to change the "color : #000; "
in the code to some color rather than black so your text doesn't merge with background in #content-top.

Thanks.

shruti.sheth’s picture

dpatte’s picture

Thanks. I'd like to keep the image but put nothing in the area. So I guess I'll remove the background and include a block with & n b s p ; -- that might work.

shruti.sheth’s picture

Hello,
Yes, I guess it should work fine.