Buttons style Posted by Arnaud HERVE 08 Mar 2005 21:15 GMT-0000 posts: 179 Is there a way I can customize input buttons without customizing input text? I don't want to add a class for buttons in each template. Such a horrible torture we don't have a layout forum here....
Posted by Gary Cunningham-Lee 09 Mar 2005 05:20 GMT-0000 posts: 4664 What do you mean by "input buttons"? -- Gary
Posted by colorado 09 Mar 2005 05:40 GMT-0000 posts: 157 If what you mean is, for example, submit form buttons, you can style those in the .css for each theme. For example I have this in one of my stylesheets (.css): /**** FORMS ****/ FORM { margin : 0px; padding : 0px; } input, textarea, select { color : #000000; background: #E4E7EA; font: normal 10px Verdana, Arial, Helvetica, sans-serif; border : 1px solid #cccccc; } input { text-indent : 2px; margin : 0px; padding : 0px; } inputtype=checkbox, inputtype=radio { border : 0px; } inputtype=submit { border : 1px solid #46596f; background-color: #bcd; font-weight : normal; } inputtype=submit:hover { background-color : #FFFFFF; cursor : pointer; } textarea { border : 1px solid #cccccc; width: 100%; } label { cursor : pointer; }