PDA

View Full Version : Background of textbox in Profile


dd365media
01-03-2010, 11:03 AM
Hello,

I can't figure out how to change background of textbox in Profile (visitor messages). Through body_background it will change background of forum too.

Any ideas?

Lynne
01-03-2010, 02:43 PM
I just answered this recently....

.profile_content .editor_textbox iframe {
background: xxxxxx;
}

dd365media
01-03-2010, 02:58 PM
Thanks. I tried it but it didn't changed anything so I deleted

.profile_content .editor_textbox textarea, .profile_content .editor_textbox iframe {
background: {vb:stylevar body_background.backgroundColor};
font-size: {vb:stylevar small_fontSize};
height: 100px;
}

And now it's okay.

You helped me a lot. So thank you again.

Lynne
01-03-2010, 03:12 PM
If you tried the code I posted, my guess it you put it in the wrong place. You need to put it somewhere *after* vbulletin defines it or it won't overwrite the vbulletin property.

allenewood
01-03-2010, 08:13 PM
I'm trying to change that as well. I added that line to the bottom of member.css, but it didn't do anything. Did I add it to the wrong .css

Lynne
01-03-2010, 08:25 PM
What template was it originally defined in? You can put it at the end of that template.

tSS
01-31-2010, 01:26 AM
worked for me, THANK YOU!
Now I need to fix the already sent profile messages background - that's white/white too. :(

Attitude5ire
01-31-2010, 02:03 PM
Just gonna edit your code Lynne hope u dont mind, So that ppl dont have to worry where the CSS is added.


.profile_content .editor_textbox iframe {
background: #xxxxxx !important ;
}

tSS
01-31-2010, 02:10 PM
any tips on fixing this white on white "already sent profile messages"?
I had to highlight it so we could read it :(
111418

or this on the forums page?
111419

Attitude5ire
01-31-2010, 02:14 PM
The class used is this
.postbit-lite .posttext {
color:#coloruwant;
}
Try it but it might change some other text too..

daveaite
01-31-2010, 06:39 PM
Go into stylevars > and change "textedit_background"

reference:
http://stylevars.com/reply.htm

tSS
02-01-2010, 01:40 AM
Dave - tried yours first since it's easier - didn't work, I changed it to red just to check and it didn't affect it at all.

^^Attitude, Will try that in my css . . .

--------------- Added 1265002536 at 1265002536 ---------------

didn't work :(

JohnnieOO
03-01-2010, 01:03 AM
I just answered this recently....

.profile_content .editor_textbox iframe {
background: xxxxxx;
}

Lynne can you explain this for a dummy like me?
My profile page and the blog page both have a transparent background so that the page background shows through. Like others, I just want to change those blocks to white. I've used firebug and quite simply, it doesn't help in this matter.

So what to I look for, the profile template? and then add your code to the bottom and replace xxxxxx with the color I want?

Thanks,

Johnnie

Lynne
03-01-2010, 02:47 AM
I always just add CSS to additional.css instead of changing it in the default css files.

JohnnieOO
03-01-2010, 11:46 AM
OK, I'm not as smart as Lynne thinks I am, can I get the dumb guy step by step?

Lynne
03-02-2010, 03:14 AM
Styles & Templates > STyle Manager > find your style > select Edit Templates from the dropdown > double click on CSS Templates > click on additional.css to edit > add CSS > Save.