Change the box…

  • Unknown's avatar

    Is it possible to change the color of the white box on the front page – the box that has the verbiage “free estimates….”

    ocalasouthernsod.com

    Could I change that to a picture or another color?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    More info….

    I’m using the Sela theme and want change the background color of the content in the Hero Section

  • Unknown's avatar

    Hi there,

    You can change the background colour of that box using the following custom CSS:

    .front-page-content-area .with-featured-image {
        background: #fff;
    }

    Change the value of #fff to any HEX code of your choice. If you’d like to experiment with different colours, try a few Google searches to get a list of HEX codes and their corresponding values.

    Here’s an example of a site that I’ve used before:

    http://www.color-hex.com/

    If you’d like that box to be completely transparent so that the background image is visible, you can use the following:

    .front-page-content-area .with-featured-image {
        background: transparent;
        border: none;
        box-shadow: none;
    }

    Hope that’s helpful! :)

  • The topic ‘Change the box…’ is closed to new replies.