Jump to content
Sign in to follow this  
style

Unable to change H1, H2, H3... font through CSS

Recommended Posts

style

Hello, I'd like my H1, H2, H3... fonts to be in Arial. Below is the code in my CSS file on the base theme but unfortunately it's not working (though it did work before). Any thoughts?

body{
	font-family:arial, helvetica, sans-serif;
	font-size:small;
	}
	
	.font-highlight, h1, h2, h3, h4, h5, h6 {
	font-family:arial, helvetica, sans-serif;
	}
	
	#sidebar {
	font-family:arial, helvetica, sans-serif;
	}
	
	#sidebar .wtitle {
	font-family:arial, helvetica, sans-serif;
	}
	

Share this post


Link to post
Share on other sites
Andrew

Maybe a specificity problem.. try `body .hentry, body h1, body h2, body h3 {font-family: ... }`

Share this post


Link to post
Share on other sites
cesarabueg

Andrew, This would be great if we can do this in the next version that allows for us an easy way to change the default Header attributes. I understand the whole theme thing and all at the Design Control area...would be nice.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×