• Hi want to add certain text on my website in bold
    When I look in the HTML code it shows that it is bold but when you look at the site that is not the case.
    I’ve tried the following
    “strong {font-weight:bold;}to the bottom of your theme’s style.css file”
    Suggested on a previous forum but nothing happens – unless I’m not doing it right.
    Here is my site
    https://www.always-foreverweddings.co.uk
    I’m trying to get “Our services includes” in bold plus information on other pages but have not published them yet until its right
    Please help

Viewing 2 replies - 1 through 2 (of 2 total)
  • You are missing the period — which is how you select a class in CSS — so it needs to be

    .strong {
    font-weight: bold;
    }

    I see that you have the incorrect version in the stylesheet in several places in your stylesheet. So you need to remove all instances of

    strong {font-weight:bold;}

    One of them was inserted in the middle of the body tag styles so you messed those up as well — be sure the body section looks like this after you take out the above:

    body {
    	background: #f2f7fe;
    	font-size: 62.5%;
    	font-family: Century-Gothic, Arial, sans-serif;
    	-webkit-font-smoothing: antialiased;
    	-webkit-text-size-adjust: 100%;
    }

    Then add the correct strong piece of code to the bottom of the file. But really, you should be using a Child Theme to make any changes to your site.

    Hello,

    The solution is to lookup the following in the stylesheet:

    p.tags {
    font-size: 1.3em;
    margin: 20px 0px 20px 0px;
    }

    And then add underneath it following:

    .entry strong {
    font-weight: bold;
    }
    .entry em {
    font-style: italic;
    }

    This should fix your bold and your italic. That’s how I fixed mine.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Theme: Wedding Bells] text is not bolded’ is closed to new replies.