change Background color of text field
-
- Phoca Newbie
- Posts: 5
- Joined: 05 Dec 2008, 21:02
change Background color of text field
I want to have a darker textfield, look at the screenshothttp://www.we-play-house.de/textfield.jpg
- Jan
- Phoca Hero
- Posts: 48689
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: change Background color of text field
Hi, this depends on your template css, so your template should have a css class for textarea...
Jan
Jan
If you find Phoca extensions useful, please support the project
-
- Phoca Newbie
- Posts: 5
- Joined: 05 Dec 2008, 21:02
Re: change Background color of text field
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 ...
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 ...
- Jan
- Phoca Hero
- Posts: 48689
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: change Background color of text field
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
Jan
If you find Phoca extensions useful, please support the project
-
- Phoca Newbie
- Posts: 5
- Joined: 05 Dec 2008, 21:02
Re: change Background color of text field
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)
- Jan
- Phoca Hero
- Posts: 48689
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: change Background color of text field
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
Jan
If you find Phoca extensions useful, please support the project
-
- Phoca Newbie
- Posts: 5
- Joined: 05 Dec 2008, 21:02
Re: change Background color of text field
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

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

- Jan
- Phoca Hero
- Posts: 48689
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: change Background color of text field
just try to add:
textarea {
background-color:#ccc;
}
or
.mceEditor {
background-color:#ccc;
}
or
#pgbcontent {
background-color:#ccc;
}
...
textarea {
background-color:#ccc;
}
or
.mceEditor {
background-color:#ccc;
}
or
#pgbcontent {
background-color:#ccc;
}
...
If you find Phoca extensions useful, please support the project
-
- Phoca Newbie
- Posts: 5
- Joined: 05 Dec 2008, 21:02
Re: change Background color of text field
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?

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?