I have been trying to change the css to create a new button or change the orange button style all together. Ideally I would like this style of button for the orange button:
button.css3button {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #ffffff;
padding: 10px 20px;
background: -moz-linear-gradient(
top,
#ff8a1d 0%,
#ff8001);
background: -webkit-gradient(
linear, left top, left bottom,
from(#ff8a1d),
to(#ff8001));
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
border: 1px solid #dd6b01;
-moz-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 2px rgba(255,255,255,0.7);
-webkit-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 2px rgba(255,255,255,0.7);
box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 2px rgba(255,255,255,0.7);
text-shadow:
0px -1px 0px rgba(000,000,000,0.2),
0px 1px 0px rgba(255,255,255,0.3);
}
Where would I enter this css, or how can I edit buttons for the Choices theme. I tried entering the specific hex color in the buttons shortcode menu when asked for background color but that has no change on the button at all and it defaults to either gray or the standard theme color button when I make changes like that. Please let me know as I would like to have some custom buttons.
Thanks,
Doug














