
Originally Posted by
Joseph M
Correct. Link text color on hover is available in ZCA Bootstrap Colors. Link background color on hover is not included.
However, if no link background hover color for the EZ-pages footer is defined in the stylesheet, the ZCA Bootstrap Colors "Button Color" (non-hover) option will define that EZ-pages footer color on hover. I thought it was an unusual discovery, but easily overridden.
It appears that the storefront /includes/templates/bootstrap/css/stylesheet_zca_colors.php is adding an unwanted background-color to those EZ-Pages footer links:
Code:
/* footer ezpage bar */
#ezpagesBarFooter {
background-color: <?php echo ZCA_FOOTER_EZPAGE_BACKGROUND_COLOR; ?>;
}
#ezpagesBarFooter a.nav-link {
color: <?php echo ZCA_FOOTER_EZPAGE_LINK_COLOR; ?>;
}
#ezpagesBarFooter a.nav-link:hover {
color: <?php echo ZCA_FOOTER_EZPAGE_LINK_COLOR_HOVER; ?>;
background-color: <?php echo ZCA_BUTTON_COLOR; ?>;
}
Removing that line from the 'stock' version of that module will 'restore' the desired colors. I'll be creating a GitHub issue to track that change.