AbanteCart Community

Shopping Cart Operations => Support => Topic started by: MessEleven on September 10, 2016, 05:39:17 PM

Title: Centering Copyright in Footer
Post 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
Title: Re: Centering Copyright in Footer
Post by: Basara on September 12, 2016, 02:17:03 AM
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
Title: Re: Centering Copyright in Footer
Post by: MessEleven on September 12, 2016, 02:04:30 PM
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">
Title: Re: Centering Copyright in Footer
Post by: Joop on October 20, 2016, 07:20:15 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

/storefront/view/default/template/common/footer.tpl

       <section class="copyrightbottom align_center">
            <h2 class="hidden">&nbsp;</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
Title: Re: Centering Copyright in Footer
Post by: MessEleven on October 25, 2016, 10:44:44 AM
Fantastic, Joop...thanks for the help!

*Edit* Just made the change, and it had no affect on centering the copyright. Thanks anyway!