kissesan
Member
Posted 1 year ago #
I am using the fontburner plugin and am having a small issue, but it's a small issue that's driving me bonkers. The fonts show up perfectly fine on an individual post page (ex. http://kissesandchaos.com/2010/11/18/tilt-2/) but on the home page (http://kissesandchaos.com), the post format and font are different. How can I correct this? I've tried to figure it out, but I am CSS illiterate. Please be patient with me. Thank you.
on the 'good' page - the word TILT is an 'h1.entry-title' css;
on the front page it is 'h2.entry-title'
you probably could edit the template that displays the front page ( normally index.php ) and change the <h2 class="entry-title sIFR-replaced"> to <h1 class="entry-title sIFR-replaced">
(the 'sIFR-replaced' might come from the plugin and might not be directly in your template)
kissesan
Member
Posted 1 year ago #
Thank you :)
I've tried locating the portion you highlighted and I cannot find it anywhere in the editor. I found this in the fontburner pluging:
.sIFR-active h1 {
line-height: 1.2em;
font-size: 16px;
visibility: hidden;
}
.sIFR-active h2 {
line-height: 1.2em;
font-size: 15px;
visibility: hidden;
}
.sIFR-active h3 {
line-height: 1.2em;
font-size: 14px;
visibility: hidden;
}
.sIFR-active h4 {
line-height: 1.2em;
font-size: 13px;
visibility: hidden;
}
This is maddening. I am using the 2010 Weaver theme if that helps at all.
kissesan
Member
Posted 1 year ago #
I sniffed around a bit more and found a similar section, made the suggested correction and it seems to have done the trick! Thank you for saving my sanity!