Changing first menu title to BOLD with COLOR
I found this forum but wasn't able to find this specific field or maybe these instructions were for an old version of JobRoller. Does anyone know how to make the page titles up top BOLD? (actually, only one of the page titles named "Supporting Partners" which I would like bold and green)
www.nh-internships.net/wordpress. Here are the instructions I found but was unable to follow;
If you want all your custom menu items to be bold add this to your style.css
Code:
ul#menu-[name of your custom menu] li { font-weight: bold; }
If you want all your menu items bold (including the ones generated by jobroller on the right) add this:
Code:
#topNav ul li { font-weight: bold; }
If you want some bold and some not you can target them specifically by their id. For this you need to view the source code of your page. the search for "Home" or "About". You will something like the following:
Code:
<li id="menu-item-39" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-39"> <a title="Home" href="http://www.yourwebsite.com/">Home</a></li>
You nee the "menu-item-39" the you can do this in your style.css:
Code:
#menu-item-39 { font-weight: bold; }
Hope this helps