how do you change an individual color in a section on the homepage?

Discussion in 'BlackWell-WordPress Business Theme.' started by leadology, Jan 18, 2015.

  1. leadology

    leadology Member

    Joined:
    Dec 28, 2011
    Messages:
    100
    Likes Received:
    2
    for example, the default for my homepage is blue. i have eliminated a section or two and now i have two blue sections touching each other instead of there being another color or white. in my case, i want to change a blue to white default like the rest of the white homepage sections. thank you, mark;-)
     
  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi Leadology,

    I am providing you separate code to change color for each section.

    For section1
    Code:
    div#section1 {
    background: red;
    }
    For section2
    Code:
    .works_content {
    background: gray;
    }
    For section3
    Code:
    div#section3 {
    background: green;
    }
    For section4
    Code:
    div#section4 {
    background: blue;
    }
    For section5
    Code:
    div#section5 {
    background: purple;
    }
    For section6
    Code:
    .client_wrapper {
    background: yellow;
    }
    For section7
    Code:
    div#section7 {
    background: brown;
    }
    For section8
    Code:
    .contact_wrapper {
    background: pink;
    }
    Thanks,
    Praveen
     

Share This Page