I've noticed using Firebug on my webpage the blogtitle is showing in html as h2 vs. h1. I thought the 3.3.3 version corrected this and seems to have it covered in the html file using 'h_blogtitle. How can I edit this for correction.
In addition this code is in my Style.css:
h1.blogtitle,
h2.blogtitle {
display: block;
/* more ... */
}
I have added the following to adjust in my HTML/CSS Inserts:
h1.blogtitle {
font-family: "Times New Roman", times;
font-size: 250%;
font-style: italic;
}
h2.blogtitle {
font-family: "Times New Roman", time;
font-size;175%;
font-weight: bold;
font-style: italic;
}
h1 {
font-family: "Times New Roman", times;
font-size:250%;
font-weight: bold;
font-style: italic;
}
h2 {
font-family: "Times New Roman", time;
font-size;175%;
font-weight: bold;
font-style: italic;
}
What am I missing here to make the proper adjustments? I'm stumped!