• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

Changing link headings

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password

Community Forums › Forums › Archived Forums › Design Tips and Tricks › Changing link headings

This topic is: not resolved

Tagged: changing link colors, magazine pro theme

  • This topic has 17 replies, 3 voices, and was last updated 10 years, 7 months ago by Brad Dalton.
Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • September 15, 2015 at 10:21 pm #165669
    designerwriter
    Member

    How do I change the link headings in my posts (that hyperlink to the article) so that they are a different color from the hover color in the nav bar? I think this blue is too light and it doesn’t look good. I believe this is part of the blue theme but I want a different blue. Plus, it doesn’t seem to be bold enough. It must be part of the nav hover font weight. Is there a way I can make it bolder by adding an extra ? Thanks in advance.

    http://magazinepro.eagleheartdynamic.com/2015/09/16/mass-megawatts-wind-power-2/
    September 15, 2015 at 10:39 pm #165672
    designerwriter
    Member

    Even if I can make the title bigger, it would look better but I am not sure how to do this to override the existing code.

    September 15, 2015 at 11:58 pm #165688
    Brad Dalton
    Participant

    Try this https://www.youtube.com/watch?v=s2JINyKD_Xo


    Tutorials for StudioPress Themes.

    September 16, 2015 at 6:30 am #165728
    designerwriter
    Member

    Well thanks Brad but the first link I can’t see what they’re really doing, there’s no talking instructions and the second link is a paid service. I am on EI trying to get my new website up so that it is mobile responsive. Any other suggestions?

    September 16, 2015 at 6:33 am #165729
    Susan
    Moderator

    Get Firebug, so you can identify what you need to change 🙂

    September 16, 2015 at 6:36 am #165732
    designerwriter
    Member

    I am using Inspect Element on Google Chrome. The blue color is part of the blue group color designation. How do I separate the code to apply it to specific headings that will change color?

    September 16, 2015 at 6:40 am #165736
    Brad Dalton
    Participant

    Are you referring to this link?

    http://magazinepro.eagleheartdynamic.com/wp-content/uploads/2015/09/wrprmassmegawattswind.pdf

    Try this:

    .magazine-pro-blue .entry-content a  {
        color: pink;
    }
    

    As Susan suggested, you will need to spend some time yourself playing around with Firebug or Googles Inspector to work out which classes and CSS you need to modify to get the styling you want.


    Tutorials for StudioPress Themes.

    September 16, 2015 at 6:48 am #165737
    designerwriter
    Member

    Yep. So I put this code with the color I want at the bottom of the CSS page correct so that it overrides the blue group color? What if I wanted to add a hover color to this...what code would I have to add?

    Thanks for your help. I need to take some CSS courses in code but I just haven’t had the time yet. I will though.

    September 16, 2015 at 7:20 am #165743
    Brad Dalton
    Participant

    I think its better to create a test site with a copy of your theme and play around with it.

    Here's a CSS reference w3 schools

    Here's how to change the hover http://wpsites.net/web-design/find-test-modify-the-css-in-your-themes-style-css-file/


    Tutorials for StudioPress Themes.

    September 18, 2015 at 9:52 pm #166053
    designerwriter
    Member

    Well this code didn’t work...
    .magazine-pro-blue .entry-content a { color: pink;
    }

    It’s ok though I left it #333. I will look at the other link about the hover color. Thank you for your help Brad.:-)

    September 18, 2015 at 10:06 pm #166055
    designerwriter
    Member

    Well I am not sure where to find the code to change this blue sentence since it is part of the blue group.

    http://magazinepro.eagleheartdynamic.com/2015/09/17/general-fusion-revolutionary-technology/?preview=true&preview_id=1287&preview_nonce=b362c31c44

    It’s the Download sentence I would like to have change color but I am not sure how to change it since it’s part of that blue group! Even if I can add an underline that would be ok too but I don’t want the underline to show up in the nav bar hover.

    Grace

    September 18, 2015 at 10:08 pm #166056
    designerwriter
    Member

    Just looking at this paragraph, is there any way I can move the line underneath the title with the date? It’s a dumb place to have it since it interferes with the title and body copy.

    September 19, 2015 at 2:03 am #166063
    Brad Dalton
    Participant

    This works, i tested it.

    .magazine-pro-blue .entry-content a  {
        color: pink;
    }
    

    Screen Shot 2015 09 19 at 3 01 32 pm


    Tutorials for StudioPress Themes.

    September 19, 2015 at 5:55 pm #166107
    designerwriter
    Member

    I put it at the bottom of the css page and it didn’t work. I will put it at the bottom of the blue section and see if it works.

    September 19, 2015 at 7:45 pm #166110
    designerwriter
    Member

    It worked but I am still not getting a different hover color. I do get a change from the pointer to a hand though. Is that good enough for the viewer? For some reason, even when I tried adding hover and visited, the color did not change on this line. So I will just leave it as is going from the pointer to the hand for the link.

    September 19, 2015 at 8:36 pm #166113
    designerwriter
    Member

    Ok I went over the notes of the link you sent me. So here is what I did. Initially, I changed this code

    a {
    background-color: inherit;
    color: #222;
    font-weight: 400;
    text-decoration: underline;

    to have underline in there. So I changed it from none to underline. However, this added an underline to the name bar menu names so I went back and changed underline back to none and they disappeared. I initially wanted the underline on the hyperlink but decided it didn’t look good on the Nav bar menu names so I reverted back to none.

    a {
    background-color: inherit;
    color: #222;
    font-weight: 400;
    text-decoration: none;

    Here’s the code I added after the blue code section:

    .magazine-pro-blue .entry-content a {
    color: #00add0;
    }
    .magazine-pro-blue .entry-content a:hover {
    color: #0075b0;

    ...and it worked. So I have the lighter blue initially and then it hovers to the darker blue which is what I wanted. I can live without the underline but just in case I change my mind, what code would I put after this hover code if I wanted the underline? Thank you!

    September 19, 2015 at 8:48 pm #166114
    designerwriter
    Member

    Nevermind I figured it out...all I had to do to get the underline was put the line of code for text decoration (see the bold copy) after the lines of code referring to the 2 colors as such:

    .magazine-pro-blue .entry-content a {
    color: #00add0;
    }
    .magazine-pro-blue .entry-content a:hover {
    color: #0075b0;
    text-decoration: underline;
    }

    It worked!

    September 20, 2015 at 2:54 am #166122
    Brad Dalton
    Participant

    ok.


    Tutorials for StudioPress Themes.

  • Author
    Posts
Viewing 18 posts - 1 through 18 (of 18 total)
  • The forum ‘Design Tips and Tricks’ is closed to new topics and replies.

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2026 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble