In the css you have controling your fonts within the entries add "!important" before the semi-colon. That'll prevent their questionable font/color/size choices from showing up. I had the same problem with someone abusing comic sans in every post. That little trick worked magic.
Ugh. I can't seem to get it to work. XD. That font makes me cringe. And I'm the kind of person that gets driven Insane when things don't match, haha. XD.
This is what I'm using for mine. Unfortunately it's flexisquares not smoothsailing. However if you replace what I have as ".entry" to ".entryHolder" we might have it! And of course change the font to your preferred font, color, size, etc. You probably won't need the background-color or font-style attributes either. Soooo in the end try this?
oooh, PS. Just in case anybody needs this code in the future:
I had to take out the .entryHolder span class, because that played havoc with my subject and time/date style. I also took out the background color completely, because I had already defined one, and it messed up.
And i added font-weight: normal; font-style: normal; to get rid of the those pesky bolds and italics. :D.
OMG I had the same problem.. I have a deep red background in my layout... so some colors are just HORRIBLE on it. Can't people just be happy with font that is easy on the eyes and not huge?
I use this coding however. It dosen't mesh with my subject/date. .entryText font, .entryText span{ color: #D3656D !important; font-size: 10.5pt !important; font-family: Garamond, Palatino Linotype; }
Sorry if I'm not supposed to reply to a closed topic, but I had a similar problem and solved it with the piece of code from rubytears; thanks! The only addition I had to include (since one of my friends not only used vivid green text but bold too) was
Reply
That font makes me cringe. And I'm the kind of person that gets driven Insane when things don't match, haha. XD.
Reply
.entryHolder{
text-align: justify!important;
font-family: Tahoma important;
font-size: 11px!important;
line-height: 0.9em!important;
}
You forgot the ! in font-family and try putting a space before the !
Reply
Reply
Reply
I tried it with a space first time around.
...Still nothing.
I think a certain green font may make me cry soon xD
Reply
.entry font, .entry span, .entry, .entry div {
color:#9b4866 !important;
font-family: sans-serif !important;
font-size: 10px !important;
background-color: transparent !important;
font-style:inherit !important;
}
This is what I'm using for mine. Unfortunately it's flexisquares not smoothsailing. However if you replace what I have as ".entry" to ".entryHolder" we might have it! And of course change the font to your preferred font, color, size, etc. You probably won't need the background-color or font-style attributes either. Soooo in the end try this?
.entryHolder font, .entryHolder span, .entryHolder, .entryHolder div {
color: #000000 !important;
font-family: Tahoma !important;
font-size: 11px !important;
background-color: transparent !important;
line-height: 0.9em !important;
}
Reply
The text is fixed.
I think i love you....
You have no idea how much it annoyed me!
thanks! :D.
Reply
Reply
Reply
I had to take out the .entryHolder span class, because that played havoc with my subject and time/date style. I also took out the background color completely, because I had already defined one, and it messed up.
And i added
font-weight: normal;
font-style: normal;
to get rid of the those pesky bolds and italics. :D.
Reply
I use this coding however. It dosen't mesh with my subject/date.
.entryText font, .entryText span{
color: #D3656D !important;
font-size: 10.5pt !important;
font-family: Garamond, Palatino Linotype;
}
Reply
font-weight: normal !important;
after the font-size.
Reply
Reply
Leave a comment