Quote:
Originally Posted by detalhe
Marked as instaled and nominated
One question, where do I change the style of the text to bold? (black menu)
Thank you!
|
Thanks detalhe
The weight of a font is how dark or light it appears. This also refers to the boldness of a font face, so this is what we need to add to the CSS
The most common font weight to use is "bold". This is a standard font weight determined by the user agent. It is the weight that is generally assigned when you use the <b> or the <strong> tags.
It's recommended that you use CSS and the font-weight property rather than the <b> tag:
example......
What we nee to do is to add this request with the spans in the menu links, so change the links you want like this
before...
Code:
<li><a href="http://www.ukbusinesslive.co.uk/"><span>UK Business Live</span></a></li>
and in the first span tag add the fon-weight as above, so you'll end up with something like this...
Code:
<li><a href="http://www.ukbusinesslive.co.uk/"><span font-weight: bold;>UK Business Live</span></a></li>
That should make that tab's title
bold
Hope you enjoyed the little lesson there, Thanks again