> Is there a css only way to do this.

One way...

COMMON CSS FILE:

/* One per HTML page... */
body.details input {
  background: white;
  color: blue;
  }
body.location input {
  background: white;
  color: red;
  }

/* etc... */

EACH HTML FILE:

<body class="details">
<input type="submit" id="submit1" value="Details
button"/>
</body>

<body class="location">
<input type="submit" id="submit1" value="Location
button"/>
</body>

...

-Stan



__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to