If you want to change heading sub heading style
Edit the template :then search "body {"
and finish by add before body style styles you want for h2, h3, h4 :
/* Content
----------------------------------------------- */
.post-body h2{font-size:30px!important;background:grey;color:white;
text-shadow:0px 0px 2px black;}
.post-body h3{font-size:20px !important;background:grey;color:white;
text-shadow:0px 0px 2px black;}
.post-body h4{font-size:15px !important;background:#ebebe0;color:black}
body {
font: $(body.font); ...
Thank you very much to the source :
http://www.alltechbuzz.net/add-custom-designed-subeadingh3-minor-headingh4-tags/
Adding some more info
- if try to change h2 does not work add !important
- if try to change size for h3 does not work does the same
If you want to use firebug for CSS exploration
add in "template" then, "customize" then, "advanced" and finally "add CSS" add (temporaly or not...).blogger-clickTrap{
display:none!important;
}
This will allow you to see style of your different item and then change them.