AbanteCart Community
Shopping Cart Operations => Support => Topic started by: MessEleven on September 10, 2016, 05:39:17 PM
-
I asked this question in another thread, but think it may have gotten lost. I'm trying to center the copyright in the footer. In which file is <div class="pull-right align_center"> located? Will I be able to do this by changing the float positioning to center? If you look at our footer on the home page, I'd like it to fall between the Authorize and DigiCert graphics. Thanks for your help.
greatatlantictrophy.com
-
Hello.
To do this your need some html and css skills. To find where is footer block located check this tips http://docs.abantecart.com/pages/tips/template_debug.html
-
Thanks for the reply, Basara. I know where the footer block is and can handle both html and css. What I need to know is where this specific div class is located. I've browsed every stylesheet, but can't find it. I'm probably looking right past it, but could use any help available. Thanks!
<div class="pull-right align_center">
-
I asked this question in another thread, but think it may have gotten lost. I'm trying to center the copyright in the footer. In which file is <div class="pull-right align_center"> located? Will I be able to do this by changing the float positioning to center? If you look at our footer on the home page, I'd like it to fall between the Authorize and DigiCert graphics. Thanks for your help.
greatatlantictrophy.com
/storefront/view/default/template/common/footer.tpl
<section class="copyrightbottom align_center">
<h2 class="hidden"> </h2>
<div class="container-fluid">
<?php echo $text_copy; ?>
<div class="pull-left mt5">
<?php echo ${$children_blocks[6]}; ?>
</div>
This puts your store(c) in the middle of the screen
Goodluck, Joop
-
Fantastic, Joop...thanks for the help!
*Edit* Just made the change, and it had no affect on centering the copyright. Thanks anyway!