jontaan Posted June 17, 2016 Share Posted June 17, 2016 Hi! I would like to change the "add to cart" (Lägg i varukorgen) in swedish to #333 on the startpage. I would also like to get rid of the blue line you see on the second picture. Thanks! Link to comment Share on other sites More sharing options...
rocky Posted June 18, 2016 Share Posted June 18, 2016 You can change the border colour and background gradient of the "Add to cart" button in themes/default-bootstrap/css/global.css: .button.ajax_add_to_cart_button { font: 700 17px/21px Arial, Helvetica, sans-serif; color: #fff; text-shadow: 1px 1px rgba(0, 0, 0, 0.2); padding: 0; border: 1px solid; border-color: #0079b6 #006fa8 #012740 #006fa8; } .button.ajax_add_to_cart_button span { border: 1px solid; border-color: #06b2e6; padding: 10px 14px; display: block; background: #009ad0; background-image: -webkit-gradient(linear, left 0%, left 100%, from(#009ad0), to(#007ab7)); background-image: -webkit-linear-gradient(top, #009ad0, 0%, #007ab7, 100%); background-image: -moz-linear-gradient(top, #009ad0 0%, #007ab7 100%); background-image: linear-gradient(to bottom, #009ad0 0%, #007ab7 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF009AD0', endColorstr='#FF007AB7', GradientType=0); } .button.ajax_add_to_cart_button:hover { border-color: #01314e #004b74 #0079b6 #004b74; } .button.ajax_add_to_cart_button:hover span { filter: none; background: #0084bf; } You can change the "Add to cart" button on the product page by editing themes/default-bootstrap/css/product.css: .box-info-product .exclusive { padding: 0; border-top: 1px solid #0079b6; border-right: 1px solid #006fa8; border-left: 1px solid #006fa8; border-bottom: 1px solid #012740; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; position: relative; display: block; background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwOWFkMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwN2FiNyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA=='); background-size: 100%; background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #009ad0), color-stop(100%, #007ab7)); background-image: -moz-linear-gradient(#009ad0, #007ab7); background-image: -webkit-linear-gradient(#009ad0, #007ab7); background-image: linear-gradient(#009ad0, #007ab7); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#009ad0', endColorstr='#007ab7',GradientType=0 ); } .box-info-product .exclusive:before { font-family: "FontAwesome"; position: absolute; top: 0; left: 0; bottom: 0; color: #fff; font-size: 25px; line-height: 47px; text-shadow: 0 1px #015883; content: "\f07a"; z-index: 2; width: 51px; text-align: center; border: 1px solid #06b2e6; -moz-border-radius: 5px 0 0 5px; -webkit-border-radius: 5px; border-radius: 5px 0 0 5px; } @media (max-width: 991px) { .box-info-product .exclusive:before { display: none; } } .box-info-product .exclusive.added:before { content: "\f00c"; } .box-info-product .exclusive.added.disabled:before, .box-info-product .exclusive.disabled:before { height: 51px; content: "\f110"; animation: 2s linear 0s normal none infinite spin; -webkit-animation: 2s linear 0s normal none infinite spin; -moz-animation: 2s linear 0s normal none infinite spin; border: none; } .box-info-product .exclusive:after { background: url(../img/border-1.gif) repeat-y 0 0; position: absolute; top: 0; bottom: 0; left: 51px; content: ""; width: 1px; z-index: 2; } @media (max-width: 991px) { .box-info-product .exclusive:after { display: none; } } It's lines 445-448 and line 492 that control that line. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now