Results 1 to 10 of 1677

Hybrid View

  1. #1
    Join Date
    Jan 2018
    Location
    PA
    Posts
    14
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Hi,
    How does one go about centering the ez pages text for the top and bottom bar? I'm on zencart 158a.
    I've tried adding
    Code:
    #navEZPagesTop ul{text-align:center;}
    to the site_specific_styles.php but it doesn't work.


    Also, just out of curiousity, is there a more simple way to center the logo header image through site_specific_styles.php rather then going to /includes/templates/clone/common/tpl_header.php and changing

    from:
    Code:
    $sales_text_class = (HEADER_SALES_TEXT !== '') ? 'col-sm-4' : 'col-sm-12';
    ?>
                <div class="<?php echo $sales_text_class; ?>">
                    <a href="<?php echo zen_href_link(FILENAME_DEFAULT); ?>" aria-label="<?php echo TEXT_HEADER_ARIA_LABEL_LOGO; ?>">

    to:
    Code:
    $sales_text_class = (HEADER_SALES_TEXT !== '') ? 'text-center w-100' : 'col-sm-12';
    ?>
                <div class="<?php echo $sales_text_class; ?>">
                    <a class="d-block" href="<?php echo zen_href_link(FILENAME_DEFAULT); ?>" aria-label="<?php echo TEXT_HEADER_ARIA_LABEL_LOGO; ?>">

  2. #2
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,925
    Plugin Contributions
    96

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by Mystery?? View Post
    Hi,
    How does one go about centering the ez pages text for the top and bottom bar? I'm on zencart 158a.
    I've tried adding
    Code:
    #navEZPagesTop ul{text-align:center;}
    to the site_specific_styles.php but it doesn't work.


    Also, just out of curiousity, is there a more simple way to center the logo header image through site_specific_styles.php rather then going to /includes/templates/clone/common/tpl_header.php and changing

    from:
    Code:
    $sales_text_class = (HEADER_SALES_TEXT !== '') ? 'col-sm-4' : 'col-sm-12';
    ?>
                <div class="<?php echo $sales_text_class; ?>">
                    <a href="<?php echo zen_href_link(FILENAME_DEFAULT); ?>" aria-label="<?php echo TEXT_HEADER_ARIA_LABEL_LOGO; ?>">

    to:
    Code:
    $sales_text_class = (HEADER_SALES_TEXT !== '') ? 'text-center w-100' : 'col-sm-12';
    ?>
                <div class="<?php echo $sales_text_class; ?>">
                    <a class="d-block" href="<?php echo zen_href_link(FILENAME_DEFAULT); ?>" aria-label="<?php echo TEXT_HEADER_ARIA_LABEL_LOGO; ?>">
    I don't see an id="navEZPagesTop" element, but I do see id="ezpagesBarHeader" and id="ezpagesBarFooter". To center the links in those navigation elements, try the following CSS:
    Code:
    #ezpagesBarHeader > ul, #ezpagesBarFooter > ul {
        justify-content: center;
    }
    For aligning the logo image, the issue (I think) is that the id="taglineWrapper" should be a col-sm-8 when there's a tagline. It's currently col-sm-12, which causes it to be not aligned with the image since 4 + 12 > 12. I agree with the use of class="d-block" on the anchor tag that holds the image, that makes it easier for sites that want the image centered.

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

    Default Re: ZCA Bootstrap Template

    Above changes addressed in this (https://github.com/lat9/ZCA-Bootstra...ate/issues/289) GitHub issue.<br type="_moz">

  4. #4
    Join Date
    Jan 2018
    Location
    PA
    Posts
    14
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Code:
    #ezpagesBarHeader > ul, #ezpagesBarFooter > ul {
        justify-content: center;
    }
    That works great! Thank you

 

 

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