Color Questions

Discussion in 'Andrina WordPress Theme' started by itzcandy, Jun 17, 2014.

  1. itzcandy

    itzcandy Member

    Joined:
    Dec 13, 2012
    Messages:
    102
    Likes Received:
    2
    Hello,

    I need help changing the colors on the following;
    1. Copyright footer color
    2. Widget text color - bottom/footer widgets only
    3. Read More button on Home page - change color
    4. Main Heading Text Color
    5. Feature Heading Text Color
    6. Left Column Heading Color
    7. Right Column Heading Color
    8. Can I change just the link colors on the buttons, home page and events page

    My Site http://howelloperahouse.webworldadvantage.com/

    Also I am using the event plugin from Modern Tribe and the event pages are not aligning properly, they are squeezed right up to the left margin. http://howelloperahouse.webworldadvantage.com/event/open-studio/
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    1) Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .bottom-footer .footer_bottom_inner span.copyright{
    color: YOUR COLOR VALUE;
    }
    2)
    Code:
    div.textwidget{
    color: YOUR COLOR VALUE;
    }
    .widget_inner {
    color: YOUR COLOR VALUE;
    }
    .footer ul li a{
    color: YOUR COLOR VALUE;
    }
    3)
    Code:
    .bottom-feature .bottom-feature-left .bottom-feature-left-inner a.index-read{
    background:  YOUR COLOR VALUE;
    border-radius: 12px;
    }
    4)
    Code:
    .feature-content h1{
    color: YOUR COLOR VALUE;
    }
    5)
    Code:
    .feature-content .feature-item h4{
    color: YOUR COLOR VALUE;
    } 
    6)
    Code:
    .bottom-feature-left h1{
    color: YOUR COLOR VALUE;
    }
    7)
    Code:
    .bottom-feature-right h1{
    color: YOUR COLOR VALUE;
    }
    8)
    Code:
    #tribe-events-content a{
    color: YOUR COLOR VALUE;
    }
    And for alignment.
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    #tribe-events-pg-template {
    max-width: 900px!important;
    }
    Thanks & Regards
    Nitesh Raghuwanshi
     
  3. itzcandy

    itzcandy Member

    Joined:
    Dec 13, 2012
    Messages:
    102
    Likes Received:
    2
    Thank you so much, I have just one more question. How do I change the background color of the copyright footer?
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    div.bottom-footer {
    background: red;
    } 

    Thanks & Regards
    Gourav Shrivastava
     
  5. itzcandy

    itzcandy Member

    Joined:
    Dec 13, 2012
    Messages:
    102
    Likes Received:
    2
  6. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

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

    Code:
    .footer h4 {
    color: black;
    } 
    In place of "black" you can put your color or color code.
    This will solve your issue.
     

Share This Page