• Resolved dragosb

    (@dragosb)


    I use the geometric theme. Text bolded in both posts and pages is the same as the “normal” text.
    An example would be the welcome post from the first page (www.dragosb.com). “latest completed projects”, “browse my entire portfolio”, “learn more about me” and “project for you” are bolded but they look the same as the rest of the text.
    What can I do to change this?

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Your reset.css file is forcing the font-weight of the text to inherit which seems to be causing it. You could try adding a selector such as:

    strong {
    font-weight: bold;
    }

    in style.css or somewhere else suitable. Alternatively, you can delete the line in reset.css somewhere around the start of the file where it says font-weight: inherit; which does not seem to have any negative effects on the site besides also bolding some of hte headings.

    Yet another example of a really poor CSS reset! Try editing style.css and adding:

    strong {font-weight:bold;}
    em {font-style:italic;}
    Thread Starter dragosb

    (@dragosb)

    Now it works. Thanks a lot!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Bold is the same with normal text’ is closed to new replies.