Page 1 of 1

change Background color of text field

Posted: 05 Dec 2008, 21:14
by cracky
I want to have a darker textfield, look at the screenshothttp://www.we-play-house.de/textfield.jpg

Re: change Background color of text field

Posted: 05 Dec 2008, 23:38
by Jan
Hi, this depends on your template css, so your template should have a css class for textarea...

Jan

Re: change Background color of text field

Posted: 06 Dec 2008, 02:49
by cracky
thanks, i will look it up...

i dont find any entry for the WYSIWYG Editor .. using Theme Siteground j15-68
die Color jet is FFFFFF and this Code isn't anywhere in the Css Files ...

Re: change Background color of text field

Posted: 06 Dec 2008, 16:14
by Jan
so if it is not defined, you need to add new class (id - # or class - . ) into your css where you will define background color for textarea tag...

Jan

Re: change Background color of text field

Posted: 06 Dec 2008, 23:02
by cracky
in witch css should I write the new backgroundcolor? an how do I "connect" this entry in the css file with the script? i don't know wehre this Textarea is included? (in witch filetyp html php, an in which one)

Re: change Background color of text field

Posted: 07 Dec 2008, 00:39
by Jan
Phoca Guestbook doesn't style the textarea tag (text editor), so this needs to be styled by your template css, so you need to find your template css and add the code here... for this action you need to have some html/css skills...

Jan

Re: change Background color of text field

Posted: 07 Dec 2008, 14:03
by cracky
Jear now i understood what i have to do :)

i know how to change this, but in my template.css there is damm huge...

i used to search the color I wanted to replace with Strg + F and the #FFFFFF ... but now I guess there are many
entries with this color, so i have to look at it carefully...
the CSS is at the attachment, if someone has the time and will look over it, it would safe me some time
(Color now: FFFFFF I want to have CCCCCC)

thanks a lot to you Jan! You helped me throug, very good support *ThumbsUp*

Edit: Therefore you get a special review at extensions.joomla.org ;)

Re: change Background color of text field

Posted: 08 Dec 2008, 18:37
by Jan
just try to add:

textarea {
background-color:#ccc;
}

or
.mceEditor {
background-color:#ccc;
}

or
#pgbcontent {
background-color:#ccc;
}

...

Re: change Background color of text field

Posted: 10 Dec 2008, 21:37
by cracky
It didn't worked :(

i got the Firefox Extension Web Developer. it should help to find out which css is used at this frame, but it didn't realy helpted


I Tried to change:
the editor CSS of my Template
the editor_ui.css and editor_content.css of tinymce in folder plugins\editors\tinymce\jscripts\tiny_mce\themes\advanced\css


didn't changed the color... has someone an idear which one is the correct one?