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 addingto the site_specific_styles.php but it doesn't work.Code:#navEZPagesTop ul{text-align:center;}
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; ?>">


Reply With Quote

