Need To Remove Portfolio Background Image
-
I using the Sirens theme and do not seem to be getting anywhere with the creators of the theme with my issue. I am creating pages using the Portfolio option, along with the Ajax Portfolio Content. To use this, you must use the “Set Featured Image” function. When you use this, it automatically uses the first image you add into the Portfolio as a background image in the page title area, and I do not want this. I just want it to be white.
You can see the sample theme here: https://themes.themegoods.com/?theme=Sirens
And then go to “Portfolio 2 columns” and you can see the background image.The image comes in through the div: “.page_captio”n and here is what I have:
.page_caption
{
margin: auto;
width: 100%;
height: 70px;
text-align: center;
border-bottom: 1px solid #fff;
text-align: center;
padding-top: 4px;
padding-right: 0;
padding-bottom: 2;
padding-left: 0;
background-color: #FFFFFF;
background-image: none;
}But when I inspect the element, I get this:
.page_caption {
background: #f9f9f9 url(‘https://develop.laneforest.com/wp-content/uploads/2013/12/BarkO-Mulch-bg.jpg’) center center no-repeat;
background-size: cover;So I think it might be coming through the custom-css.php file which as this:
<?php $pp_page_header_bg_color = get_option(‘pp_page_header_bg_color’); ?> .page_caption { background:<?php echo $pp_page_header_bg_color; ?>; } .caption_header h1.withbg, .caption_breadcrumbs.withbg { background:<?php echo $pp_page_header_bg_color; ?>; padding-left:5px; padding-right:5px; } <?php } ?>I would send a link to my website, but it has a redirect on it. The Sirens portfolio page is doing the exact same thing we are experiencing.
Any help would be greatly appreciated. I just want the background to be white with no image.
- The topic ‘Need To Remove Portfolio Background Image’ is closed to new replies.