Change colour of submit button in style.css
-
The website is not online and is in maintenance mode, The company originally contracted to style simple things like buttons did not tell me how they did it and did the opposite to what was asked…
I have snapshots of how the site/buttons are..
Basically all my buttons come in a dark purple with lilac however on them, so whenever a shopping cart button or submit pops up or a contact form button comes up with plugins and widgets on the site it comes up as these purple/lilac colours that are big – it looks like its been styled/configured to automatically come up like this..
Using goggle developer to help me inspect the element to try and find out where this is located i found the following on one page where these button were located as a test:
element.style {
}
.searchform input[type=’submit’], .button, button, input[type=submit], input[type=reset], input[type=button], .color2, .tile-button:hover, .car_more, .car_full {
background-color: #9075b5;
box-shadow: #5e4383 0px 3px 0px 0px;
}so basically i tried to locate it in style sheet (style.css) to see if i can change these style colour settings for all future buttons in this colour instead:
element.style {
}
.searchform input[type=’submit’], .button, button, input[type=submit], input[type=reset], input[type=button], .color2, .tile-button:hover, .car_more, .car_full {
background-color: #FFd11a;
box-shadow: #FFd11a 0px 3px 0px 0px;
}(An orange/yellow colour)
i cant seem to locate it and have even tried changing colours in style.css of any button link that comes up but still no luck.
This is driving me CRAZZZZZZYYYYY can anyone help? or have had similar frustration in finding this ?
Thanks in advance ;)
The blog I need help with is: (visible only to logged in users)
- The topic ‘Change colour of submit button in style.css’ is closed to new replies.