Change Widget Background Color, Button Color, Slider Arrow Colors

Discussion in 'GoldenEagle WordPress Theme' started by wesackerman, Jan 12, 2013.

  1. wesackerman

    wesackerman New Member

    Joined:
    Jan 12, 2013
    Messages:
    8
    Likes Received:
    0
    Hello. I would like to change the background color of the footer widgets, the color of the feature button, and the slider arrows. Also, if I wanted to temporarily remove the feature button and tag line how might I do that? Thank you.


     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    1.For your first and second issue



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



    Code:
    .footer {
    background: red;
    }
    .feature-buttons a.btn-1 {
    background: red;
    }
    2.For your third issue

    It is not possible to change slider arrows color because it is a image, If you want to change its color then, Go to images directory present in your theme directory and replace your image with present slider arrows image or edit it.

    The name of image is
    1."next.png"
    2."prev.png"

    Note:- Use same name for your edited image and remove the current image.

    3.For your forth issue

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


    Code:
    .feature-strip {
    display: none;
    }
    This will solve your issue.
     
  3. wesackerman

    wesackerman New Member

    Joined:
    Jan 12, 2013
    Messages:
    8
    Likes Received:
    0
    Thank you. I've been able to successfully apply the code. I'm unsure of how to replace the images. Where in the theme directory is the image directory located? On the "Editor" page I see only dynamic-image.php and apart from that there's the media tab where I've loaded other images in the library. Until I loaded images in the media library it was blank. I've loaded new arrows with the same file names in the media library but am not sure how to connect them to the site. Thank you.
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    You will not get theme directory in your dashboard.
    Open your Theme directory (through FTP) >images directory
    Download images directory from there, Edit it, Then again upload it.
     
  5. wesackerman

    wesackerman New Member

    Joined:
    Jan 12, 2013
    Messages:
    8
    Likes Received:
    0

Share This Page