Re: ZCA Bootstrap 4 Template [Support Thread]
Quote:
Originally Posted by
lat9
Right, you want the LEFT/RIGHT status set to OFF but the Single Column Status set to ON.
You are a life saver ! thank you so much for all the help you give here. I think i am in love with this templet. It looks so... clean.
Re: ZCA Bootstrap 4 Template [Support Thread]
Quote:
Originally Posted by
jasonshanks
You are a life saver ! thank you so much for all the help you give here. I think i am in love with this templet. It looks so... clean.
No problems, I'm liking the template, too. @rbarbour left a solid base from which the Bootstrap 4 template evolved.
1 Attachment(s)
Re: ZCA Bootstrap 4 Template [Support Thread]
Quote:
Originally Posted by
lat9
No problems, I'm liking the template, too. @rbarbour left a solid base from which the Bootstrap 4 template evolved.
If may pick your brain a bit more. Is it possible to change the color of the Attachment 19551 box around the add to cart button ? I ask this because that green really clashes with our color scheme.
Re: ZCA Bootstrap 4 Template [Support Thread]
Take a look in the template's stylesheet_colors.css file.
Re: ZCA Bootstrap 4 Template [Support Thread]
Quote:
Originally Posted by
dennisns7d
Take a look in the template's stylesheet_colors.css file.
ah so no way to change it from admin then ? Aw well.
Re: ZCA Bootstrap 4 Template [Support Thread]
Quote:
Originally Posted by
jasonshanks
ah so no way to change it from admin then ? Aw well.
And I really should just try something first before commenting on it. THAT WAS EASY. just edit line 64 and 62 and you can change the color. Thanks so much again guys !
Re: ZCA Bootstrap 4 Template [Support Thread]
Quote:
Originally Posted by
jasonshanks
ah so no way to change it from admin then ? Aw well.
Quote:
Originally Posted by
jasonshanks
And I really should just try something first before commenting on it. THAT WAS EASY. just edit line 64 and 62 and you can change the color. Thanks so much again guys !
FWIW, the inclusion of the coloring of that add-to-cart section is on my list of things to add to the admin-controlled coloring.
Re: ZCA Bootstrap 4 Template [Support Thread]
Quote:
Originally Posted by
lat9
FWIW, the inclusion of the coloring of that add-to-cart section is on my list of things to add to the admin-controlled coloring.
that would be wonderful :) You do great work along with the other devs. bootstrap feels like such a major modernizing of zencart. It looks so fresh and clean.
Re: ZCA Bootstrap 4 Template [Support Thread]
Quote:
Originally Posted by
jasonshanks
that would be wonderful :) You do great work along with the other devs. bootstrap feels like such a major modernizing of zencart. It looks so fresh and clean.
Thanks for the compliment; the change will be tracked via this GitHub issue: https://github.com/lat9/ZCA-Bootstra...late/issues/54
Re: ZCA Bootstrap 4 Template [Support Thread]
Looking at the details in stylesheet_colors.css reveals that the Add Selected to Cart button on product listing pages and the Add to Cart button on product info pages were apparently intended to have the same coloring, but the cascading overruled this. Making the selectors more specific fixes this.
Code:
/* Product Listing Pages */
.btn.button_add_selected {background:#00C851;color:#FFF;}
.btn.button_add_selected:hover {background:#007E33;color:#FFF;}
/* Product Info Pages */
#addToCart-card-header, .btn.button_in_cart {background:#00C851;color:#FFF;}
.btn.button_in_cart:hover {background:#007E33;color:#FFF;}
#addToCart-card {border-color:#00C851;}