Tagged: ,

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #2189
    ronmerk
    Participant

    Hi Satkin:

    I’m using Simple Catch (Public) . I’ve made some small modifications using the Style field in the Theme options. Also have some simple changes using a child theme.

    My problem is that the color option for Links doesn’t seem to work. I have the link color currently set for #e18627, but they display as black. You can see the site here:

    http://www.victoriaband.ca/

    Any suggestions would be greatly appreciated.

    Ron

    #2191
    ronmerk
    Participant

    So you can see the CSS changes I’ve implemented:

    Here are the modifications to the CSS

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {color: #999999;}
    #header .social-search form.searchform {display:none;}

    Here are the changes in my style CSS file in the child theme director

    h1#site-title {
    font-size: 45px;
    font-family: ‘Helvetica’;
    font-weight:normal;
    color:#999999;
    padding-bottom:0px;

    }
    h2#site-description {
    font:14px Arial, Helvetica, sans-serif;
    color:#999999;
    padding:8px 0 0 0;

    #2192
    ronmerk
    Participant

    Actually I fixed it by using a declared statement in the specific page for the link reference I wanted:

    “<a class=”specialLink”/a>

    Then I added the following in the theme custom CSS style box

    a.specialLink:link { color: blue; }
    a.specialLink:hover { color: blue; }

    Hopefully this will help some one else looking to do something similiar

    Ron

    #2268
    Sakin
    Keymaster

    @ronmerk: for link color. you can add following css:

    a {
    color: #e18627;
    }

    #2280
    ronmerk
    Participant

    Thanks Sakin

     

    That worked perfectly!!

    🙂

    Ron

    #14717
    karenstl
    Member

    I just tried to use this code to change the link color in the CSS box for Catch Everest (free). I didn’t work. Any suggestions?

    The site is: http://westpinelaclede.com

    #14742
    Sakin
    Keymaster

    @karenstl: I see that you have successfully added link color as
    a { color: #8ba870; }

    You can see your link has been changed http://westpinelaclede.com/category/general/

    #14757
    karenstl
    Member

    I wanted the links in the widgets to change also. Is that separate code?

    #14784
    Sakin
    Keymaster

    @karenstl: To change the link color in widget. You can change the color code in the following CSS and added it in “Appearance => Theme Options => Custom CSS” box.

    .widget-area .widget a {
        color: #757575;
    }
    #14790
    karenstl
    Member

    Thanks. Worked.

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Link Color’ is closed to new replies.