Reply To: Add Page Headers to BBpress?

Home Forums Support Add Page Headers to BBpress? Reply To: Add Page Headers to BBpress?

Home Forums Support Add Page Headers to BBpress? Reply To: Add Page Headers to BBpress?

#189850
Gerik

Thanks,

To make it a bit more complex I usually have a fluid background image. I put the

  • content as . (a period)
  • Add Padding
  • Add background image
  • Container type: FLuid

This is what I done so far.

<?php if ( is_bbpress() ) : ?>
<div class="page-header-content generate-page-header generate-content-header">
				<div class="inside-page-header-container inside-content-header grid-container grid-parent ">
					<div class="inside-page-header">
						.
					</div>
				</div>
			</div>
<?php endif; ?>

and the css as

.bbpress .generate-content-header {
    background-image: url(https://s3.amazonaws.com/x.jpg);
    background-size: cover;
}
.bbpress .inside-page-header {
    background-color: none!important;}

I can’t get rid of the white background.