
11-11-2014, 03:50 PM
|
 |
Senior Member
|
|
Join Date: Oct 2014
Location: Ulyanovsk
Posts: 129
|
|
Quote:
Originally Posted by Anton Bäck
Hey!
I have a small problem.
I use the code to change color on every button like: continue shopping, clear bag with a code but now when i'm going to my order form i have a button that still looks wrong.
Every button except this one is blue...
I saw something about "AccentedButton" in the code, but how do i change it?
Also it is possible to get it square like all of my other buttons?
Sry for my bad english^^
|
Hi, Anton! Add this code to your CSS theme (in Ecwid control panel>System Settings>Design):
Code:
button.ecwid-AccentedButton, button.ecwid-AccentedButton:hover {
background: transparent url(http://example.com/image.jpg);
height: 30px;
box-shadow: 0 0 0 0px;
border-radius: 0em;
}
And replace http://example.com/image.jpg with the link to the image that you want. That will be the background for this button. For example, you can download a simple blue image for blue background like other buttons that you have. Look what i got after doing these steps:
|