submit buttons text color? submit buttons text color?
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

submit buttons text color?

Started by NEOo, November 05, 2004, 11:30:38 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

NEOo

Hi

i want to change the submit button color, because in the theme that i use the text color is white and i cant read it!
i hope someone can tell me how to change the text color of those buttons.

i.e. the buttons bij setting in the buttom of the page: save this config.


please please please!!!

greetz
NEOo

Joachim Müller

edit themes/yourtheme/style.css, find the class "button" and change the properties accordingly. To learn what style class controls what part of your page, use the theme "styleguide" that comes with the coppermine package and can be viewed as well on the demo.

Joachim

P.S. No need to post childish "please please please" stuff, you'll get all help we can give if you ask nicely (giving as many details as possible - a link might help in the future) and respect forum rules, no need to add extra "icing" to the request ;D

NEOo

#2
oke sorry for that  :P

but in the config file for example i get those to lines with button in it:

<input type="submit" class="button" name="update_config" value="{$lang_config_php['save_cfg']}">
<input type="submit" class="button" name="restore_config" value="{$lang_config_php['restore_cfg']}">


how can i change the text color then?

and in the style.css i cant find color codes in the button codes

maybe im just stupid ;) but i hope you understand the problem en you know the anwser

Nibbler

Add one then !

eg for classic theme:

.button {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 100%;
color: red;
        border: 1px solid #005D8C;
        background-image : url(images/button_bg.gif);
        background-position : bottom;
}