coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: auto_freak on January 09, 2008, 02:32:37 PM

Title: Editing style.css
Post by: auto_freak on January 09, 2008, 02:32:37 PM
Hi everyone,

I wanted to know what section of "style.css" in my coppermine gallery should I have to edit so that my comments box has black color for the text. It is currently white or grey and my members including me cant see what we are typing on the comment box. My skin is "F1BLACK3BLUE". Please help me on this. There are two style.css files one is "style.blue.css" and the other one is "style.css". I want to edit the font color for the comment box. Its currently white, I need it to be black. I dont know if we are allowed to share our website links but this is my gallery location. "http://www.wheelsbd.com/gallery".

Your reply to this topic will be very well appreciated.

Regards,
Tauhid
Title: Re: Editing style.css
Post by: Nibbler on January 09, 2008, 02:42:07 PM
Modify the .textinput class and add a color to it.


.textinput {
...
color: #000;
}
Title: Re: Editing style.css
Post by: auto_freak on January 09, 2008, 02:48:09 PM
should i do that to both css files?
Title: Re: Editing style.css
Post by: auto_freak on January 09, 2008, 02:51:46 PM
Hi I did this but nothing changed.

.textinput {
background-color: #DEDEDE;
color: #000000;
border: 1px solid #A3AAB4;
color: #000000;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 100%;
padding-left: 3px;
padding-right: 3px;
}
Title: Re: Editing style.css
Post by: Joachim Müller on January 09, 2008, 03:07:38 PM
Posting a link to your gallery might be a good start if you expect advice... ::)
Title: Re: Editing style.css
Post by: auto_freak on January 09, 2008, 03:27:48 PM
Hi I already posted the link in the first post. Its http://www.wheelsbd.com/gallery
Title: Re: Editing style.css
Post by: auto_freak on January 09, 2008, 03:29:21 PM
And here is the guest account details:

Username: guest
Password: guest
Title: Re: Editing style.css
Post by: auto_freak on January 09, 2008, 03:47:38 PM
hey thanks to all i solved it!!!!!! :)
Title: Re: Editing style.css
Post by: Joachim Müller on January 09, 2008, 04:35:21 PM
For the benfit of others with similar issues you should have posted what you actually did.
Title: Re: Editing style.css
Post by: auto_freak on January 09, 2008, 05:15:12 PM
Sure....
Basically as Nibbler said, I put these codes in both style.blue.css and style.css in the template directory "f1black3blue" and within few minutes, the effect took place.

.textinput {
background-color: #DEDEDE;
        color: #000000;
border: 1px solid #A3AAB4;
color: #000000;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 100%;
padding-left: 3px;
padding-right: 3px;
}