External and Internal links not underlined

Discussion in 'BizWay WordPress Theme' started by lougani, Jul 17, 2013.

  1. lougani

    lougani New Member

    Joined:
    Feb 4, 2013
    Messages:
    2
    Likes Received:
    0
    How do I underline the links (when I hoover over) and change the color of the text of these links? I have a bizway pro response theme and have tried to add css coding under styling options but this did not work. Presently these links are in a darker shade than the normal text but not recognisable as links. I have attached a screen shot Please help.
     

    Attached Files:

  2. 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

    Code:
    .footer-wrapper .footer_widget a:hover {
    text-decoration: underline;
    color: your color value;
    }
    Note: Add your color value.
     
  3. lougani

    lougani New Member

    Joined:
    Feb 4, 2013
    Messages:
    2
    Likes Received:
    0
    Thanks works perfect. how do I do this for the main body of text in each page? How do I change the text link colour permanently so when I hover it just underlines in the same colour?
     
  4. Piyush

    Piyush Support Staff

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

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

    Code:
    .footer-wrapper .footer_widget a:hover {
    text-decoration: underline;
    color: red;
    }
    .footer-wrapper .footer_widget a{
    color: red;
    }
    .main-content a {
    color: red;
    }
    .main-content a:hover {
    text-decoration: underline;
    color: red;
    }
    .page-content .fullwidth a {
    color: red;
    }
    .page-content .fullwidth a:hover {
    text-decoration: underline;
    color: red;
    }
    .page-content .content-bar a {
    color: red;
    }
    .page-content .content-bar a:hover {
    text-decoration: underline;
    color: red;
    }
    This will solve your issue.
     

Share This Page