Change link colors; login widget

Discussion in 'Cloriato WordPress Theme' started by kimharp, Jan 3, 2014.

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

    kimharp New Member

    Joined:
    Aug 21, 2012
    Messages:
    11
    Likes Received:
    0
    Hi:

    Thanks for your previous help! I have two new questions:

    1). Is it possible to change the link color in text throughout my site so that links are more obvious?

    2). Is there a way to include a site login for users without including the other links that appear in the "Meta" widget (admin, feed and WordPress links). I only want the "login" link to show up.

    Site is: http://www.harpseminar.com/

    Thanks!

    Kim
     
  2. Piyush

    Piyush Support Staff

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

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

    Code:
    a {
    color: red ! important;
    }
    
    In place of "red" you can put your color or color code.
    This will solve your issue.

    2. Could you please explain your second issue little more.
     
  3. kimharp

    kimharp New Member

    Joined:
    Aug 21, 2012
    Messages:
    11
    Likes Received:
    0
    Thanks Piyush!

    The code did work, however it changes the color of ALL links throughout the site, including navigation links and the slider and heading text on the homepage. What I'd like to do is change only the links that appear within text, as those are hard to identify since they are the same color as the text. Is this possible.

    For issue #2, I would like users to be able to login to the site, but the only way I can see to do this is by using the "Meta" widget. When I apply that widget, users who are not logged in also see "Entries RSS", "Comments RSS", and "Wordpress.org." Is there a way to include only the "Login" link without the other links that are part of the Meta widget?

    Thanks!

    Kim
     
  4. Piyush

    Piyush Support Staff

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

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

    Code:
    .content a {
    color: red ! important;
    }
    .fullwidth-page a {
    color: red ! important;
    } 
    In place of "red" you can put your color or color code.
    This will solve your issue.

    2. For your second issue,
    Use meta widget and then paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    a[title="Syndicate this site using RSS 2.0"] {
    display: none;
    }
     
    a[title="The latest comments to all posts in RSS"] {
    display: none;
    }
     
    a[title="Powered by WordPress, state-of-the-art semantic personal publishing platform."] {
    display: none;
    } 
    This will solve your issue.
     
  5. kimharp

    kimharp New Member

    Joined:
    Aug 21, 2012
    Messages:
    11
    Likes Received:
    0
    Thank you Piyush! Both issues are now resolved with your code!

    Kim
     
Thread Status:
Not open for further replies.

Share This Page