Iorhael wrote:

>... a fix to center button text in IE 
>... and insert the padding underneath the buttons? 
>
Hi Debbie,
In "debscardsimport.css" you order: input { text-align: right;}! ;-) 
Appearently in IE this overrules the class="center".
But all browsers are centering text in a button automatically, so you 
can omit the whole center-thing. Thus:
= = = = =
input, textarea, select {
       background-color: #DBC8F5;
       text-align: right;
       font: 90% Arial, Helvetica, sans-serif;
      }
can become:
= = = = =
input, textarea, select {
       background-color: #DBC8F5;
       font: 90% Arial, Helvetica, sans-serif;
      }
You can add:
= = = = =
textarea, select {
       text-align: right; /* if you really want people to fill in their 
messages from right to left */
      }
= = = = =
Padding under the buttons will go with a simple: input { margin-bottom: 
10px;}.

francky
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to