• I’m wondering if there’s a way, (I’m sure there is) to make certain links bold on the side bar? I’ve made them all bold at once, but I’m trying to make only certain links bold.
    Our Blog:
    [Moderator note: The following link contains adult content. It’s NOT SAFE FOR WORK]
    https://www.sexreloaded.com/sexreloaded-blog

    There are only two sections I would like to make bold, “The All Access Porn” section and the “Free Galleries” section. I’m not well versed in PHP so therein lies the problem!
    Thanks!!

Viewing 1 replies (of 1 total)
  • To do something like this properly, you could add a class to the specific links, say
    <a href="target site" class="bold"...>linktext</a>
    Then add a style rule to your style sheet
    .bold{
    font-weight:bold;
    }

    However, you might use the HTML attribute
    <b><a href="some site">linktext</a></b>

Viewing 1 replies (of 1 total)
  • The topic ‘Bolding certain links’ is closed to new replies.