How Can I Center Footer
-
I created a WordPress website for a group project I have.
Here is the URL: https://www.gamertech.us.
As you can see the footer is off the right. Does anyone know how I can center it?
Here is the code for my footer.php:
<?php /** * @package WordPress * @subpackage AppCloud */ ?> <div class="footer"> <ul class="footnav"> <?php $pages = get_pages(array('sort_column' => 'menu_order', 'parent' => 0)); ?> <li>Copyright © 2010 <?php bloginfo('name'); ?></li> <?php if (is_array($pages) && count($pages) > 0) : ?> <?php $n_page = count($pages); ?> <?php $i_page = 1; ?> <?php foreach($pages as $page) : ?> <li<?php if($i_page == $n_page) : ?>class="no"<?php endif; ?>><a href="<?php echo get_option('siteurl'); ?>/<?php echo $page->post_name; ?>/"><?php echo $page->post_title; ?></a></li> <?php ++$i_page; ?> <?php endforeach; ?> <?php endif; ?> </ul> <div class="clear"></div> </div><!-- footer --> </div><!-- area --> </body> </html>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How Can I Center Footer’ is closed to new replies.