• Resolved StephenMasker

    (@stephenmasker)


    I am using the DW Minion Theme and have been unable to successfully change the Post Title (entry title) color and the Hyperlink Color independently.

    To clarify: I’d like the Post Entry color to be one color, and the Hyperlink Color to be a separate, different color.

    Additionally, I would like to permanently disable Post Titles *and* Hyperlinks from underlining when they are hovered over.

    I know absolutely nothing about CSS, so any detailed instructions on how to modify these elements would be greatly appreciated.

    My blog can be located at: https://www.stephenmasker.com/blog

    Thank you,
    Steve

Viewing 4 replies - 1 through 4 (of 4 total)
  • Install a plug-in like Simple Custom CSS then add this code for the titles and change the colors to your liking.

    .entry-title a {
        color: #0000ff;
    }
    .entry-title a:hover {
        text-decoration: none;
        color: #ff0000;
    }

    Thread Starter StephenMasker

    (@stephenmasker)

    I attempted to copy/paste the above code after installing the Simple Custom CSS plug-in, and only the color of the entry-title was modified.

    The hyperlink color has not been changed.

    Theme Author DesignWall

    (@designwall)

    Hi Steve, please use the following code to change links color:

    .entry-title a {color: red;}
    .entry-title a:hover {color: gray;text-decoration:none;}
    .entry-meta a {color: green;}
    .entry-meta a:hover {color: gray;text-decoration:none;}
    .entry-content a {color: blue;}
    .entry-content a:hover {color: gray;text-decoration:none;}

    Hope that helps!

    Thread Starter StephenMasker

    (@stephenmasker)

    Hi there, thank you – It did help. Issue resolved!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to change Post Title Color and Hyperlink Color?’ is closed to new replies.