First of all I need to say what a nice theme.
The only thing which looks a little bit ouf of order is the submit buttons...

Which css do I need to change to change all submit buttons?
First of all I like to change the font type, but maybe also the borders etc.

Comments

shruti.sheth’s picture

Hello,
I hope the following suggestion of mine proves helpful.
The following can be the two ways for applying css to the input buttons.

1.Input buttons can be given inline style as follows
e.g.

 <input type="button" id="button1" style="border:1px solid #000" value="submit"/>

OR
2. To change the font size and font family the css code for input button should be edited or added typography.css file
e.g. in your typography.css

#button1 {
  font-family: verdana;
  font-size: 1em;
}

To change the font color, background color and to give borders the css code for input button should be edited or added in graphics.css
e.g. in your graphics.css

#button1 {
  border: 1px solid #00ff00;
  color: #ff0000;
  background: #fff000;
  background: 
}

Please note that inline style given to the input buttons will override the css given in typography.css and graphics.css files.

Thanks.

oadaeh’s picture

Issue summary: View changes
Status: Active » Closed (won't fix)

This issue is being closed because it is against a branch for a version of Drupal that is no longer supported.
If you feel that this issue is still valid, feel free to re-open and update it (and any possible patch) to work with the 7.x-4.x branch.
Thank you.