Zencart 1.5.6c PHP 7.2 Order Replacement AC Adapters and Power Cords Online www.missingcord.com
Zencart 1.5.6c PHP 7.2 Order Replacement AC Adapters and Power Cords Online www.missingcord.com
Zencart 1.5.6c PHP 7.2 Order Replacement AC Adapters and Power Cords Online www.missingcord.com
Thanks for the compliment; the change will be tracked via this GitHub issue: https://github.com/lat9/ZCA-Bootstra...late/issues/54
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;}
After fixing the header alerts being hidden by the nav-bar, the bright red text for success and info alerts didn't seem appropriate (my opinion). I added the following to the template's stylesheet_colors.css file to use the standard Bootstrap text colors:
For me, the bright red text for danger and warning alerts were fine.Code:/* Keep standard bootstrap alert colors */ .alert.alert-success {color:#155724;} .alert.alert-info {color:#0c5460;}
While poking around adding products to my cart and then viewing the cart, I noticed that sometimes the trash icon didn't exhibit the usual hover action nor did it remove the product from the cart when clicked. I've determined that the cause of this is the back-to-top button. This button is visible only when one has scrolled down far enough. Until then the button is not visible due to opacity being set to 0. So even though the button is not visible, it is still "in front" of whatever is beneath it (blocking whatever action may be expected).
My "fix" was to change z-index to -1 for #back-to-top when the show class was not active (in stylesheet.css).