• Resolved ztelliott7

    (@ztelliott7)


    Was wondering if there was a way to center my <?php wp_footer() ?>
    in my footer.php? Im using Codium Extend theme with some personal tweaks. https://www.taterandtots.com
    Probably an easy solution but all I have found, keeps this file in the same area.
    Thanks in advance for the help….

    Footer PhP
    <p>`<div id=”footer”>
    <div align=”center”>`Copyright © 2010-2011 · All Rights Reserved · Tater and Tots</p>
    <?php wp_footer() ?>
    </body>
    </html>

Viewing 5 replies - 1 through 5 (of 5 total)
  • <?php wp_footer() ?> is an action hook. It doesn’t produce any markup by itself.

    Thread Starter ztelliott7

    (@ztelliott7)

    Ok…I don’t really know what that means…if you look at the bottom of my site you’ll see the copyrite is centered and the other is not…the other is what I’m trying to center where can I find that at?

    You probably need to edit your theme’s functions.php to change the markup on the design copyright line. Or try adding:

    #footer .alignright {text-align:center;}

    to the bottom of your stylesheet.

    Thread Starter ztelliott7

    (@ztelliott7)

    Thank you the theme function.php worked like a charm, after I crashed it and had to download a php editor. It’s up and running now, thank you for your knowledge.

    No problem. Glad to hear that you managed to resolve it.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘how do I center my php wp_footer?’ is closed to new replies.