I am putting together a website in codeIgniter, but I’m having some trouble with the CSS
The below code is giving me a serif font – I know the stylesheet’s properly linked because the text fits all the other parameters, and changes when I unlink it.
span.navbig {
font-size: 36pt;
font-family: Gill Sans / Gill Sans MT, sans-serif;
letter-spacing: -1.5pt;
text-decoration: none;
}
What am I not seeing here?
Thanks
Separate thefont types in your font-family declaration different, something like this:
Here’s some easy reference:
And here’s the W3C recommendation: