Change certain background colors

Discussion in 'StartPoint Business One Page WordPress Theme' started by rexmanaster, Nov 13, 2014.

Thread Status:
Not open for further replies.
  1. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    Hi,

    I've seen the code for changing all the colors in a theme, but it's too much for my non-coding mind.

    Please can you tell me how to:

    1. change the hover/active background color in the 3 Column Feature Area?
    2. change the background color in the strip/bar immediately above the footer area? Alternatively, how can this strip/bar be removed/hidden?
    3. change the background color of the footer itself?

    For additional reference, please see the attached screen shot.

    Thanks,
    Rex
     

    Attached Files:

  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello!

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.


    For changing background of feature section.
    Code:
    .three-column-container .box1:hover, .three-column-container .box2:hover, .three-column-container .box3:hover
    {
    background:pink !important;
    }
    For footer strip.
    Code:
    .footer {
    background: #FAFAFA;
    }

    For last footer background.
    Code:
    .footer-copyright-wrapper {
    background: #B30991;
    }
    Set colors according to your requirement.

    Thanks & Regards
    Pramod
     
  3. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    Great, thanks Pramod.
     
Thread Status:
Not open for further replies.

Share This Page