changing font from bold to normal

msctierney / 2013-02-11 03:28:16   

am trying to change the font on my main page from bold to normal and seem to only be able to change the main page (michael salvatore tierney) to normal. all other section titles remain bold.
h1 { font-size: 13px; margin-bottom: 1em; font-weight: bold; }
tierneyprojects.com

arsondpi / 2013-02-11 07:21:13   

You can find the correct css selector by right clicking on an element in your browser and select Inspect element.

In this case you can add in your style.css

  1. #index ul.section span.section_title, #index ul.section span.section_title a { font-weight: normal; }
msctierney / 2013-02-12 04:49:40   

perfect, thanks!!

This thread has been closed, thank you.