• How may I remove the gray background “audible game jersey” As I think it is something connected with the portfolio but not showing up on the backend editor.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Your body-color is grey #848383, while the title-container is set to transparant.

    Thread Starter tenzinrabjam

    (@tenzinrabjam)

    So how may I change it?

    You’ll have to find it in your theme-settings.

    Because you’re using a commercial theme, bridge, please use their official support channel. We feel they are best equipped to support their products.

    https://themeforest.net/item/bridge-creative-multipurpose-wordpress-theme/7315054/support

    Commercial products are not supported in these forums.

    Yes, it’s true that commercial products are not supported here. And that’s not just a rule for rule sake: it’s very difficult (sometimes downright impossible) to support a product when we don’t have access to the full code, as with commercial products, to test things out to know why something is not working.

    What’s more, for all we (don’t) know, there may actually be a simple configuration option within your theme to make this change without writing any code… but it’s impossible for us to tell because we simply don’t have access to your theme as it’s a commercial product.

    Anyway, for a simple colour change like this, I personally don’t mind checking out the site and offering whatever little help I can. In case you don’t find an option in your theme to change this, the CSS code below should do the trick.

    To “remove” the background color, you just have to change it to white to match the rest of the section. Place this CSS code in the APPEARANCE > CUSTOMIZE > ADDITIONAL CSS box:

    .title.title_size_large.position_center {
    background-color: #fff !important;
    }

    We need the !important because the grey colour is actually specified by an inline CSS. I don’t know if you entered this manually or it came with your theme. Usually, inline CSS takes high priority over everything else, but the !important forces the code above to take higher priority over the inline CSS.

    Also, now that your background is white, your title text (which is also white) will become invisible. So we need to change the title text colour as well:

    .title h1 {
    color: #3f3f3f;
    }

    Good luck!

    Thread Starter tenzinrabjam

    (@tenzinrabjam)

    @george you guys are awesome

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Remove this gray background title’ is closed to new replies.