Rich Text On Friends Page.... -Solved.

Apr 22, 2008 22:40

Okay. I don't normally post in communities to figure things like this out - Especially when they're like this and seem so damned trivial.

Anyway. The problem itself seems simple.
And any help would be greatly recieved ( Read more... )

text

Leave a comment

nomoreprinces April 22 2008, 21:57:09 UTC
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.

Reply

xilaii April 22 2008, 22:25:55 UTC
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.

Reply

nomoreprinces April 22 2008, 22:37:34 UTC

.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

nomoreprinces April 22 2008, 22:39:05 UTC
And I really really really can't stand that font either. Outside of a K-2 classroom it really has no business being anywhere.

Reply

xilaii April 22 2008, 22:40:19 UTC
It's like internet plague. :(.

Reply

xilaii April 22 2008, 22:39:42 UTC
Oh crap. XD.
I tried it with a space first time around.

...Still nothing.

I think a certain green font may make me cry soon xD

Reply

nomoreprinces April 22 2008, 22:47:59 UTC

.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

xilaii April 22 2008, 22:52:16 UTC
Oh wow. It's gone.
The text is fixed.

I think i love you....
You have no idea how much it annoyed me!
thanks! :D.

Reply

nomoreprinces April 22 2008, 22:55:30 UTC
I had forgotten that the editor put the text in span or div tags. ^_^ You're very welcome.

Reply

xilaii April 22 2008, 22:59:36 UTC

Reply

xilaii April 22 2008, 22:55:11 UTC
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.

Reply

crownedlily April 23 2008, 05:46:15 UTC
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;
}

Reply

valiha June 14 2008, 13:25:22 UTC
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

font-weight: normal !important;

after the font-size.

Reply

crownedlily June 14 2008, 18:35:04 UTC
OMG, i have been trying so hold to get rid of the bold and nothing I used worked!

Reply


Leave a comment

Up