Links Automatically in Bold

Homepage Community Forums Legacy Theme Support Links Automatically in Bold

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #7253
    Jennifer Nash
    Customer

      I noticed with the latest version that my links now appear in bold. For example, the title Categories in the Categories Widget isn’t in bold, but the actual categories that people can click on are now in bold. This issue also happened in a text widget where I added an email link for people to contact us. How do I remove the bold?

      Please note that I do NOT code.

      #7256
      Eric
      Customer

        Yeah that’s the way it was intended so that the links standout from the regular text, but you can easily remove that by changing “font-weight: 700;” to “font-weight: 400;” instead….or you could remove it altogether if you wanted. This is located in your theme around line 185 in the css (if you haven’t added or removed anything to the original code) and looks like this –

        a {
            color: #000;
            font-weight: 700;
            text-decoration: none;
        }

        Let me know if that helps….and don’t worry, you won’t need to know how to code to change this.


        I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

        #7260
        Jennifer Nash
        Customer
          This reply has been marked as private.
          #7263
          Eric
          Customer

            The file that you add it to is the style.css file of your theme. It’s the only css file, you can’t miss it. Yes I would highly recommend you figure out how to setup FTP since there are tons of tutorials out there that can help you. If you make a mistake and your site crashes you can just undo whatever you did and it will instantly be back up.

            For the css, you could probably make the changes without needing FTP as long as you do exactly as I say….your site won’t crash from CSS. Since you dont have line numbers in the WP editor, just do a search – ctrl + F (pc) or command + F (mac) and search for this – a { until you get to the code I added above. Then once you get there, simply change the 700 to 400 and nothing else, and you should be fine.

            The bold links are pretty standard/common for most sites, it’s about making it easy for your users to differentiate whats a link and whats regular text. Of course you can easily change all of this through your css (as were doing now).

            By the way, I had to send Wes an email in order to read what you wrote (since he’s a moderator), because private messages don’t show up for regular customers. They only show up for moderators, and I don’t have a moderator account like I used to (temporary). So in the future if you’re posting to a regular customer/member they won’t see what you wrote if you send it as a private message.


            I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

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