Hello, how can i change font button copupon color to pink (in cart)?
I need too more lenght to put code
attach
teitbite wrote:Hi
Please tell me the link to the page from this screenshot.
teitbite wrote:Hi
You need to guide me to this page. I do not know Your language so I'm having trouble adding things to cart. There is no add to cart button and when I try to register I see a long message which I do not understand. Can You make me some dummy user so I'll be able to make a purchase and see coupon box ?
#coupon_code {
width: 200px;
}
span.details-button input.details-button {
background: none repeat scroll 0 0 pink;
border: 1px solid #EEEEEE;
color: #135CAE;
font-family: Tahoma;
text-transform: none;
}
teitbite wrote:Hi
To resize coupon code use this css:
- Code: Select all
#coupon_code {
width: 200px;
}
here is a code to manipulae the look of a save button:
- Code: Select all
span.details-button input.details-button {
background: none repeat scroll 0 0 pink;
border: 1px solid #EEEEEE;
color: #135CAE;
font-family: Tahoma;
text-transform: none;
}
span.details-button input.details-button:hover {
background: none repeat scroll 0 0 #aaa;
color: #ffffff;
}
teitbite wrote:Hi
For hover effect You need to use this code:
- Code: Select all
span.details-button input.details-button:hover {
background: none repeat scroll 0 0 #aaa;
color: #ffffff;
}
color: #ffffff;
color: #ffffff !important;
teitbite wrote:Hi
It can be an override from VM style. Please replace the color line in Your code:
- Code: Select all
color: #ffffff;
with
- Code: Select all
color: #ffffff !important;
try the same in :hover class too.
span.details-button input.details-button {
color: #ffffff !important;
}
#ProOPC .proopc-input-append #proopc-coupon-code[type="text"] {
width: 100px !important;
}