Page 41 of 125 FirstFirst ... 3139404142435191 ... LastLast
Results 401 to 410 of 1248
  1. #401
    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;
    }

  2. #402
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,478
    Plugin Contributions
    88

    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?

  3. #403
    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.

  4. #404
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,478
    Plugin Contributions
    88

    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.

  5. #405
    Join Date
    Nov 2007
    Location
    Texas
    Posts
    272
    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:	29 
Size:	107.8 KB 
ID:	19538

  6. #406
    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

  7. #407
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,145
    Plugin Contributions
    11

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Yep, the reference in the docs suggests leaving the Powered By in the footer and I agree. https://docs.zen-cart.com/user/templ...ter-of-my-cart

    https://docs.zen-cart.com/user/template/footer/
    Last edited by dbltoe; 28 Apr 2021 at 01:49 AM.

  8. #408
    Join Date
    Nov 2007
    Location
    Texas
    Posts
    272
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by Joseph M View Post
    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
    Perfect, thanks! That IP address was killing me!

  9. #409
    Join Date
    Nov 2007
    Location
    Texas
    Posts
    272
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by dbltoe View Post
    Yep, the reference in the docs suggests leaving the Powered By in the footer and I agree. https://docs.zen-cart.com/user/templ...ter-of-my-cart

    https://docs.zen-cart.com/user/template/footer/
    Thanks, y'all! This looks MUCH better!
    Click image for larger version. 

Name:	footernew.PNG 
Views:	17 
Size:	102.1 KB 
ID:	19539

  10. #410
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,478
    Plugin Contributions
    88

    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

 

 
Page 41 of 125 FirstFirst ... 3139404142435191 ... LastLast

Similar Threads

  1. v155 Clone a Template [Support Thread]
    By lat9 in forum Addon Admin Tools
    Replies: 94
    Last Post: 16 Mar 2024, 04:13 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

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR