• Hello,

    I would like to make the background photo on my homepage more transparent so it is easier to read the words on top of it (I Write and Edit Content…). I would also like to make the words bold. I think the photo is in the Header Bottom section. Any suggestions?

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

Viewing 1 replies (of 1 total)
  • @knemec

    To make image background more transparent for easier to read the words. We can change by custom style with code css:

    .page-cover::before {
    background-color: rgba(0,0,0,.6);
    }

    To play this code you can add to Additional Css of customize on WordPress.

    To make header text more bold you can play this code css:

    .page-cover-tagline, .page-cover-title {
    font-weight: 700;
    }

    Let me know if you need anything further!

Viewing 1 replies (of 1 total)
  • The topic ‘How to adjust transparency of background photo’ is closed to new replies.