Results 1 to 10 of 1685

Hybrid View

  1. #1
    Join Date
    Apr 2008
    Posts
    150
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    I'm having a problem setting the color of the EZ-page footer bar links background on hover. No problem with the text, since it is selected in ZCA Bootstrap Colors. However the footer link background color on hover selection isn't listed there.
    Footer EZ-Page Bar Background Color, EZ-Page Bar Link Color, EZ-Page Bar Link Color on Hover
    I've tried defining it in my stylesheet with:
    Code:
    #ezpagesBarFooter a.nav-link:hover {
        color: #ffffff;
        background-color: #color of choice;
    }
    but it always displays the default color #33b5e5 for the hover background. The changes show up in my browser developer tool, but seem to be overridden when attempting to get the change to appear on my site. Any suggestions?

    side note: Oddly, the "Button Color" option ZCA Bootstrap Colors does change the link background hover color in the EZ-pages footer (while changing button colors throughout the site as well).

  2. #2
    Join Date
    Apr 2008
    Posts
    150
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    This was the fix for hover link background color in the EZ-pages footer:
    Code:
    #ezpagesBarFooter .nav-pills .nav-item a:hover {
        color: #ffffff;
        background-color: #color of choice;
    }

  3. #3
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,965
    Plugin Contributions
    96

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by Joseph M View Post
    This was the fix for hover link background color in the EZ-pages footer:
    Code:
    #ezpagesBarFooter .nav-pills .nav-item a:hover {
        color: #ffffff;
        background-color: #color of choice;
    }
    Was that hover-link's coloring not provided via the admin's ZCA Bootstrap Colors tool?

  4. #4
    Join Date
    Apr 2008
    Posts
    150
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by lat9 View Post
    Was that hover-link's coloring not provided via the admin's ZCA Bootstrap Colors tool?
    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.

  5. #5
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,965
    Plugin Contributions
    96

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by Joseph M View Post
    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.

  6. #6
    Join Date
    Nov 2007
    Location
    Texas
    Posts
    286
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    The Zen Cart Documentation says to change the powered by zen cart information in the stylesheet. This template has numerous stylesheets and I cannot find this in ANY of them. I was able to add my website name somewhere along the way, but I can't locate the file again. I also want to remove the 'your IP address". I also don't find anything for that in the stylesheets. Where can I chance these two things?
    Click image for larger version. 

Name:	footer.PNG 
Views:	81 
Size:	107.8 KB 
ID:	19538

  7. #7
    Join Date
    Apr 2008
    Posts
    150
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by gizmo_girl View Post
    The Zen Cart Documentation says to change the powered by zen cart information in the stylesheet. This template has numerous stylesheets and I cannot find this in ANY of them. I was able to add my website name somewhere along the way, but I can't locate the file again. I also want to remove the 'your IP address". I also don't find anything for that in the stylesheets. Where can I chance these two things?
    I believe the "Powered by Zen Cart" footer text is in includes/languages/english.php

    And the IP address display is controlled at:
    Admin>Configuration>Layout Settings>Footer - Show IP Address status

  8. #8
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,965
    Plugin Contributions
    96

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by lat9 View Post
    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.
    Change tracked via this GitHub issue: https://github.com/lat9/ZCA-Bootstra...late/issues/51

  9. #9
    Join Date
    Jan 2010
    Posts
    49
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    I recently upgraded from 1.5.5f with Classic Responsive clone to 1.5.7c with ZCA Bootstrap clone. During the transition, I had the cart in maintenance mode. In the 1.5.7c cart, I was expecting to see a header alert announcing the maintenance mode but it wasn't there. I looked at the page source and found it there. Then it occurred to me that it was probably hidden behind the navigation bar.

    This was confirmed when I moved the header alert code down the file to between the navigation display and the branding display, and the header alert showed up on screen. Other header alerts are now visible, such as when products are successfully added to the cart.

 

 

Similar Threads

  1. v155 Clone a Template [Support Thread]
    By lat9 in forum Addon Admin Tools
    Replies: 107
    Last Post: 11 Nov 2024, 08:28 PM
  2. v150 aBagon Template Support Thread
    By VJef in forum Addon Templates
    Replies: 54
    Last Post: 5 Sep 2020, 08:44 PM
  3. v155 ZCA Bootstrap Template 1.0 (BETA)
    By rbarbour in forum Addon Templates
    Replies: 74
    Last Post: 25 Apr 2018, 07:05 PM
  4. TB Sempre Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 48
    Last Post: 19 Mar 2015, 06:33 PM
  5. Wallet Template - Support Thread
    By zami in forum Addon Templates
    Replies: 45
    Last Post: 25 Mar 2010, 10:15 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg