Align Image In Footer
-
Hey everyone,
I’m having trouble getting a footer image to align center. No matter what I do it stays aligned left. I know there’s any easy solution that I’m missing, so any help is greatly appreciated. The site is cinemascrutiny.com.
My footer.php reads
</div><!-- #main .site-main --> <div id="bottom" class="container_6"> <ul> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("Footer") ) : ?> <?php endif; ?> </ul> <div class="clear"> </div> </div> <a href="<?php echo get_option('home'); ?>/"><img align="center"><img src="http://cinemascrutiny.com/wp-content/uploads/2013/08/26690_330100758210_1023485_n-e1377525475592.jpg" alt="" Cinema Scrutiny"" /></a> </div> <footer id="colophon" class="site-footer" role="contentinfo"> <div class="container_6"> <div class="site-info"> <div class="fcred"> Copyright © <?php echo date('Y');?> <a href="<?php bloginfo('url'); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a> - <?php bloginfo('description'); ?>.<br /> </div> </div><!-- .site-info --> </footer><!-- #colophon .site-footer --> </div><!-- #page .hfeed .site --> </div> <?php wp_footer(); ?> </body> </html>
-
That’s not going to help if we can’t see the css that goes with it. Can you post a link to your site?
First remove this code – it’s invalid CSS:
<img align="center">Then this should work:
#colophon .container_6 img { display: block; margin: 0 auto; }You also have a bunch of mark-up errors some of which are likely to be problematic:
The site is http://cinemascrutiny.com/
WPyogi: Where would I put the code you included? I inserted into the css and there was no change.
Where did you add it? It should go in your custom CSS.
That is where I put it. Would I possibly have something overriding that?
I’m not seeing that css when using dev tools. Are you using a child theme?
Not intentionally, no?
You aren’t seeing the css that WPyogi told me to insert?
No, I’m not seeing it and unless you have specific reason, you should be using a child theme so you don’t lose you customizations when updating.
The topic ‘Align Image In Footer’ is closed to new replies.