How To Change Hyperlink Formatting

Discussion in 'Harrington- A WordPress Business Theme.' started by helpful4you, Jun 16, 2014.

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

    helpful4you Member

    Joined:
    Jun 12, 2014
    Messages:
    46
    Likes Received:
    0
    I am not a programmer, but I know that it is possible to change something in the stylesheet.
    I want my Hyperlinked Links to be blue, bold and underlined. Where can I change this?
    Thanks, your support rocks!
     
  2. Nitesh

    Nitesh Support Staff

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

    Please share page links of which hyperlinks you want bold and in blue color.
    It will help us to provide you exact code.

    Thanks & Regards
    Nitesh Raghuwanshi
     
  3. helpful4you

    helpful4you Member

    Joined:
    Jun 12, 2014
    Messages:
    46
    Likes Received:
    0
    I want that behavior on all blog posts, pages as a general setting.
    I set up a redirect link as I do not want to post the direct URL here
    as it is a clients website and I want to keep their privacy:
    use this link (might not work after we solved this issue)
    http://helpful4you.com/inkthemes-site
     
  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:
    a{
    color:blue;
    font-weight:bold;
    }
     
    Thanks & Regards
    Gourav Shrivastava
     
  5. 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

    For featured area.

    Code:
    .feature_inner_box h6 a{
    font-weight: bold;
    text-decoration: underline;
    color: blue;}
    For blog post.

    Code:
    .feature_blog_content .post .post_title a {
    font-weight: bold;
    text-decoration: underline;
    color: blue;}
    For widget area.

    Code:
    .footer .footer_widget a {
    font-weight: bold;
    text-decoration: underline;
    color: blue;}
    Thanks & Regards
    Nitesh Raghuwanshi
     
  6. helpful4you

    helpful4you Member

    Joined:
    Jun 12, 2014
    Messages:
    46
    Likes Received:
    0
    Thanks guys! You rock!
     
Thread Status:
Not open for further replies.

Share This Page