• Resolved dwuman

    (@dwuman)


    Hi Ben, thank you for amazing theme!

    Fo the most part I was able to tailor it to my needs and preferences, but there are couple of things I am struggling with. Could you please help me with custom CSS?
    I tried to look in your collection of custom CSS snippets, but I could not find anything ??

    1. How can I change style of the hyperlinks? For example, on this page I have two links (H3) “Food & Drinks” and “Real estate & Architecture” which are underlined. Instead I wanted to make them same font as page title (“Portfolio”) and instead of the underlining highlight them with just a bit brighter shadow of the gray. Is it possible?
    https://auradius.com/

    2. The same goes for links inside the text. I have several links on this page which are underlined. How I can remove underline and make them just regular text with slightly brighter shadow on gray?
    https://auradius.com/about/

    Thanks a lot in advance!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Thanks for the nice message! I can help you out with this.

    I think the following CSS should work pretty well:

    .entry-content a {
      text-decoration: none;
      color: #ccc;
    }
    .entry-content a:link,
    .entry-content a:visited {
      color: #ccc;
    }

    That’s going to affect all links within your posts and pages. The gray is pretty light, so if you want to modify it, just make sure to replace “#ccc” in both places.

    Thread Starter dwuman

    (@dwuman)

    Thank you very much Ben! It worked!

    Theme Author Ben Sibley

    (@bensibley)

    You’re welcome! Stay in touch if you need anything else and I’ll be happy to help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to modify style of hyperlinks’ is closed to new replies.