• Hi!

    I’ve been trying to find a post here with a solution to my problem. The ones I find seem to be old and outdated.

    How do I remove the “firstpart” class from being used? Or how do I set it do the default a-link class color?

    It’s currently hosted locally, sorry.

    Thanks in advance!

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can either go through all of the virtual CSS files, find the rules for firstpart, and comment out the color property, or add an overriding rule for firstpart at the end of the various.css virtual CSS file. For example, try adding this to the end of your virtual.css file:

    #sitetitle a .firstpart,
    .hentry h2 a .firstpart,
    .hentry h1 .firstpart,
    .hentry:hover h2 a .firstpart,
    .widget h3 span .firstpart,
    #menu1 > li > a span.firstpart {
       color: inherit;
    }

    Thread Starter jonaspalsson

    (@jonaspalsson)

    Thank you so much for your help! Worked like a charm!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Make header links the same color’ is closed to new replies.