How can we help?

If you are looking for support for our PokaTheme, this is the place!

Home Forums Child Themes support Bold Hyperlinks for content only

Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #6415
    cassy6
    Participant

    Hi trying to add CSS so only hyperlinks are bold and with color to child theme CSS

    .text-area a {
    color: #2753F5;
    font-weight: bold;
    }

    every other link are turning bold with color but the main content wich only turns bold but doesn’t show the color

    would you have proper CSS code so only hyperlinks for the content turns bold with color thx

    #6416
    discoman
    Participant

    Hi,
    You can use !important. That will work.

    .text-area a {
    color: #2753F5 !important;
    font-weight: bold;
    }

    #6424
    admin
    Keymaster

    Thanks discoman for the help!

    The previous is one solution and another one if you want to target pages or posts or specific templates you can have more specificity in your selector and this will override the parent theme styles.
    For example:
    `.home .text-area a { }`

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.