Hello everyone, hope all is well. If any1 can help me with this problem, It would be much appreciated.
I have a stylesheet in my asp.net 2.0 website. On the master page, I have added the following line into to the <head> tag:
Code:
<link href="StyleSheet.css" rel="stylesheet" type="text/css"/>
In the stylesheet, I have the following defined:
Code:
h3
{
margin: 0px;
padding: 0px;
font:Arial;
}
The problem im getting is that the sylesheet isnt doing anything! Ive used the <h3> tag a lot in my web pages, but each h3 has still got a Times New Roman font.
Any ideas why my stylesheet isnt working?