Links in sidebar

Discussion in 'Squirrel WordPress Theme' started by shawkins, Aug 16, 2013.

  1. shawkins

    shawkins New Member

    Joined:
    Mar 28, 2013
    Messages:
    14
    Likes Received:
    0
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    I think you want to add link in the text of sidebar.
    So, go to the Appearance > Widget in your dashboard and, drag and drop the text widget in the Primary or Secondary Widget Area
    and then paste the code given below in the content area of the text widget.

    Code:
    <a href="Enter the your Link here"> Enter your text here</a>
    See the link for the referene.
    http://www.w3schools.com/html/html_links.asp
     
  3. shawkins

    shawkins New Member

    Joined:
    Mar 28, 2013
    Messages:
    14
    Likes Received:
    0
    Hi,

    Sorry, I realize that I wasn't clear in my question. How do I change the colour of the links in the sidebar?

    Thanks,
    Steph
     
  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:
    .sidebar ul li a {
    color: red;
    }
    .sidebar a{
    color: red;
    }
    Inplace of "red" put your color code.
     

Share This Page