Change of link colors in post and pages

Discussion in 'BlogSpring WordPress Theme.' started by ybombale, Mar 24, 2014.

  1. ybombale

    ybombale New Member

    Joined:
    Jul 15, 2013
    Messages:
    18
    Likes Received:
    0
    Hello,

    1- My links within the content of my post and pages look exactly the same as normal text and I'd like to change the color of them so they stand out like links.

    I tried:
    Code:
    a {
    color: blue ! important;
    }
    
    But this will change it in the entire site, including menus, titles, sidebar content, etc. (something I dont want)

    Is there a way I can solve this?

    2- Is it possible to change the color when text is highlighted on post and pages as well?

    Thanks
     
  2. 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
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .post_content a {
    color: blue;
    }
    .content-bar a {
    color: blue;
    }
    .fullwidth a {
    color: blue;
    }
    .contact-page a {
    color: blue;
    }
    
    In place of "blue" you can put your color or color code.
    This will solve your issue.

    2. Could you please specify your second issue with the help of screenshot images that which text you want to change the hover color.
     
  3. ybombale

    ybombale New Member

    Joined:
    Jul 15, 2013
    Messages:
    18
    Likes Received:
    0
    Thanks, will try it out.

    Regarding the second, by highlighted text, I meant when the text is selected (i.e. before copying a text, see image bellow)

    [​IMG]

    I want this so it match everything on my site. I know this can be done via CSS, just dont know how. Could you also help me with it?

    Thanks again.
     
  4. 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:
    ::selection {
    background: blue; /* Safari */
            color: red;
    }
    ::-moz-selection {
    background: blue; /* Firefox */
            color: red;
    }
    
    In place of "blue" and "red" you can put your color or color code.
    This will solve your issue.
     
  5. ybombale

    ybombale New Member

    Joined:
    Jul 15, 2013
    Messages:
    18
    Likes Received:
    0
    Perfect! Thank you very much.

    Now please, could you let me know why the archives pages do not display pagination? Were they built so or am I doing something wrong, I mean they only display the latest 10 results and nothing more.
    I even tried in a demo site with no plugin installed but got the same results.
     
  6. Gourav

    Gourav Support Staff

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

    Download theme again from your members area and upload it. This will solve your issue.
    Login here: http://inkthemes.com/members/member/index

    Please check changelog.php file for changes.

    == Changelog ==

    = Theme Name: BlogSpring Theme Pro=

    = Version: 2.0.4 =
    1. Search page result pagination issue fixed.
    2. Blog page sidebar widget issue fixed.
    3. Archive page pagination added.



    Thanks & Regards
    Gourav Shrivastava
     
  7. ybombale

    ybombale New Member

    Joined:
    Jul 15, 2013
    Messages:
    18
    Likes Received:
    0
    Oh ok, it seems I had the first release of the version 2.0.4.
    The changelog file only has:

    = Version: 2.0.4 =
    1. Search page result pagination issue fixed.

    Will download it again. Thanks for your help.
     
  8. Piyush

    Piyush Support Staff

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

Share This Page