• Resolved sunnycoder

    (@sunnycoder)


    I love the theme – great work.
    Only issue that I am facing is that hyperlinked text has same appearance as regular text. This makes is hard for visitors to discern what is clickable and what is not.
    How can I customize the appearance of links?

Viewing 3 replies - 1 through 3 (of 3 total)
  • You can create a child theme and in the stylesheet of your child theme, change:

    …just the post links to another color with:

    .post a {
        color: #00f;
    }

    …or all links with:

    a {
        color: #00f;
    }
    Theme Author sid88

    (@sid88)

    Hi Sunny
    Thanks you like the theme.
    I will be soon updating the theme with some css and other fixes.
    For the time being if you want to edit the appearance of link then in the css file go to line 29 and 92 and change the color
    a {
    color: #333333;
    text-decoration: none;
    }
    .post a {
    color: #333333;
    text-decoration: none;
    }

    Thread Starter sunnycoder

    (@sunnycoder)

    Worked like a charm .. Many thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Link appearance’ is closed to new replies.