Reputation: 1
I downloaded a Bootstrap theme - and am trying to change the colours of the buttons (in the top right of this link: http://twcc.se/onepageproduct/) - I can't seem to be able to replace the main blue colour (active button) to e.g. a dark red....
Really unsure why this is not working - I have tried changing the css elements connected to the buttons.
Upvotes: 0
Views: 301
Reputation: 2248
just go to their general.css line 114
.navbar .nav .active a {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background: -moz-linear-gradient(center top , #92DBFF 0%, #4FB6E9 5%, #39A0D3 100%) repeat scroll 0 0 #FFFFFF;
border-color: #3CA3D7 #3799CA #338BB8;
border-image: none;
border-radius: 16px 16px 16px 16px;
border-style: solid;
border-width: 1px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
color: #FFFFFF;
text-shadow: 0 -1px 0 #3799CA;
}
Change the color of background to what ever you need.
Note: They are using gradient buttons Use this Link1 and Link2 for further details
Upvotes: 1