CSS: Quick Question.

Associate
Joined
1 Sep 2011
Posts
955
Location
Peterborough
Hi all,

Just knocking up a team Intranet thing for our work team using a free CSS template we like but i've hit a little problem in the following:

Code:
	<div id="header">
		<div id="logo">
			<h1><a href="#">[B][COLOR="Red"]MIA Intranet   [/COLOR][/B]</a></h1>
			<p> Intranet for the Managed Internet Access Team</p>
		</div>
	</div>

For some reason, the MIA Intranet bit always shows lower-case. What would i need to change in the .css file to keep the same format so it shows upper-case?.


Many thanks!
 
Thanks for the quick reply :)

Current H1 sections on the .css read:

Code:
h1, h2, h3 {
	margin: 0;
	padding: 0;
	font-weight: normal;
	color: #A42903;
}

h1 {
	font-size: 2em;
}

So would i just add
Code:
text-transform: uppercase !important;
into both h1 parts, if that makes sense?.
 
Back
Top Bottom