• Resolved mharti

    (@mharti)


    Hello Coders, let me say in advance thank you for your time!

    if you would kindly follow the link and take a quick look at my site.

    The features and contact form sections both have white backgrounds where I would like to see them as a dark grey in color. How would one go about changing this?

    Additionally pages created have a white background in the text section,
    (http://it-solutions.co.za/home/specialising-in/) how would one go about changing this?

    Sincere THank you for your time.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    To change the Features section you could add this code in Appearance > Customize > Additional CSS:

    #hestia-features {
     background-color: #d4d4d4;
    }

    For the internal pages, you could use:

    .page .main {
    background-color: #d4d4d4;
    }

    For posts, you could use:

    .single .main {
    background-color: #d4d4d4;
    }

    Regards,
    Rodica

    Thread Starter mharti

    (@mharti)

    sorry for the late response.

    I pasted in your code and it worked like a charm thank you!

    i did notice though that the code

    // .page .main {
    background-color: #d4d4d4;
    }

    actually changed the features too.
    thought you might want to know?

    do you happen to know how to do this for the menu as-well.

    best regards.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing of in-site Element Colours’ is closed to new replies.