change hyperlink color

Discussion in 'GoldenEagle WordPress Theme' started by feisalhensbergen, Oct 2, 2013.

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

    feisalhensbergen Guest

    Joined:
    Aug 15, 2013
    Messages:
    33
    Likes Received:
    0
    Hi there,

    I would like to have all hyperlinks in my blog built on the golden eagle theme to have the hyperlinks in a different color, the css name for the color is 'hotpink'.

    could you please provide with custom css code so all links will automatically change to this color?

    thank you
     
  2. 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:
    a{
    color:hotpink;
    }
     
  3. feisalhensbergen

    feisalhensbergen Guest

    Joined:
    Aug 15, 2013
    Messages:
    33
    Likes Received:
    0
    thanks, that works.

    other question:
    i have tried to change the footer also in hotpink, with following code;

    .footer {
    background: hotpink!important;
    }
    .footer .footer-inner h3 {
    color: white;
    }
    .footer .footer-inner p {
    color: white;
    }
    .footer .footer-inner a {
    color: white;
    }
    .footer .footer-inner ul li a{
    color: white;
    }

    but if you look on www.ceetje.nl you will see that some of the lines and searchbox are purple, iw ould like these to be white.
     
  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:
    .footer .footer-inner .searchform {
    background: grey;
    }
    .footer .footer-inner h3 {
    background: none;
    border-bottom:1px solid grey;
    }
    Inplace of "grey" put your color code.
     
  5. feisalhensbergen

    feisalhensbergen Guest

    Joined:
    Aug 15, 2013
    Messages:
    33
    Likes Received:
    0
    hi, great that works, except for one issue;
    the word 'search' is in white letters in the searchbox, so when i make the searchbox white, the letters 'search' should be in white. and if possible i would like to translate this as well, where can we change this?
     
  6. 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:
    .footer .footer-inner .searchform input[type="text"]{
    color:black;
    }
    This will solve your issue.
     
  7. feisalhensbergen

    feisalhensbergen Guest

    Joined:
    Aug 15, 2013
    Messages:
    33
    Likes Received:
    0
    hey there, almost there i think, the text is made black, but the box itself is being purple or grey instead of white.

    all code in custom css i have now is:

    .footer .footer-inner .searchform {
    background: white;
    }
    .footer .footer-inner h3 {
    background: none;
    border-bottom:1px solid white;
    }


    .footer {
    background: hotpink!important;
    }
    .footer .footer-inner h3 {
    color: white;
    }
    .footer .footer-inner p {
    color: white;
    }
    .footer .footer-inner a {
    color: white;
    }
    .footer .footer-inner ul li a{
    color: white;
    }

    a{
    color:hotpink;
    }
     
  8. Nitesh

    Nitesh Support Staff

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

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

    .footer .footer-inner .searchform input[type="text"]{
    color:black!important;
    }
    .footer .footer-inner .searchform {
    background: white!important;
    }
    .footer .footer-inner h3 {
    background: none;
    border-bottom:1px solid white!important;
    }
     
  9. feisalhensbergen

    feisalhensbergen Guest

    Joined:
    Aug 15, 2013
    Messages:
    33
    Likes Received:
    0
    yes perfect thank you.
     
Thread Status:
Not open for further replies.

Share This Page