Re: button CSS ?
thanks ruthless,
I do know where to find the CSS-code, but I have changed the code to “none” for each element.
I still do not get the result of having just a simple button like it is for example here at buddypress.org or at Google.com
I just want to get rid of all the default button-CSS, just having a simple button without CSS.
default:
a.button, input[type=submit], input[type=button],
ul.button-nav li a, div.generic-button a {
background: url( ../images/white-grad.png ) top left repeat-x;
border: 1px solid #ddd;
padding: 3px 10px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
text-decoration: none;
color: #888;
font-size: 12px;
font-weight: normal;
vertical-align: bottom;
cursor: pointer;
}
changed all elements to NONE:
a.button, input[type=submit], input[type=button],
ul.button-nav li a, div.generic-button a {
background: none;
border: none;
padding: 3px 10px;
-moz-border-radius: none;
-webkit-border-radius: none;
border-radius: none;
text-decoration: none;
color: #888;
font-size: 12px;
font-weight: normal;
vertical-align: bottom;
cursor: pointer;
}