So I'm working with a child-theme of Twenty Twelve with very little change aside from layout modifications in a localhost environment.
I'm looking to change the font size of post titles as displayed on the standard landing page (viewed in 'recent posts' mode not 'static page' mode). I have added the following CSS to my child themes style.css but it isn't doing the trick.
'
.entry-header .entry-title {
font-size: 14px !important;
font-size: 1.0rem !important;
line-height: 1.2;
font-weight: normal;
}
.entry-header .entry-title a {
font-size: 14px !important;
font-size: 1.0rem !important;
text-decoration: none;
}
'
Seems to be inheriting both it's colour and font-size from the opening Reset.
'{
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
vertical-align: baseline;
}'
I want complete control over font style, size and colour for this area.. Any suggestions?