Hello, I have this theme that I downloaded for my wordpress blog and it was fine at first, but now that I have a few posts, the footer is kind of pushed to the side. Here is the css for the footer: /* ---------------- FOOTER ---------------- */ #footer { height: 77px; clear: both; font-size: 85%; padding: 0 0 0 30px; margin: 0; background: url(img/footer.jpg) no-repeat bottom center; } #footer p { color: #f2f2f2; margin-left: 10px; padding-top: 10px; text-align: left; } #footer a, #footer a:link { color: #f2f2f2; text-decoration: none; font-weight: bold; } #footer a:hover { text-decoration: underline; } Can somebody please take a look at the footer in my blog and see why it looks the way it does? Thanks in advance..
If you didn't edit CSS then it might be because of a missing </div> tag or something, check your blog with W3C validator and see the errors there, it might help. http://validator.w3.org/ Code (markup):
If you are on about the site in your sig then it looks like you forgot to close a div, so try adding: </div> before the start of the footer in the footer.php file for your template. EDIT: I took a quick look and it looks like you forogt to close your sidebar, so just add </div> either at the very start of your footer.php - or at the very end of your sidebar.php both will do the trick. These files can be found in your template folder, and you can access them on Wordpress Admin also if you go onto the Presentation tab, then click Theme Editor.
I think the OP was asking how to rip off the original sponsors by attempting to remove the sponsor links held in the footer. Check the original demo and you will see Reported it, too.
Uhh...What?? The only thing I did to the footer was add Google Analytics to it, and from what I can tell, I think I added it after the </div> part. I wasn't trying to rip off the original sponsors, I didn't create this template, I'm not going to try and get credit for it. And who did you report it too?
Ok..so here is how the footer.php file looked right when I downloaded the theme: <div id="footer"> <p>© <?php echo date('Y');?> <strong><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></strong><br /> <a href="http://www.templatepanic.com/article/running-blog-wordpress-theme" title="Running Blog Wordpress Templates" >Wordpress Theme</a> by <a href="https://www.usasportstraining.com/" title="Triathlon Training" >Triathlon Training</a></p> </div> <!-- end footer --> </div> <?php ?> <?php wp_footer(); ?> </body> </html> And then I wanted to add Google Analytics on it, so I put it somewhere in the code, and now it looks they way it does (link in the sig). I tried to go back to the beginning with the original code, but it still looks like that. The only thing I can think of is the new blog posts that I wrote pushed the footer to the side. Now I have no idea how to fix this..
Inside footer.php, remove all code, replacing it with this: <div id="footer"> <p>© <?php echo date('Y');?> <strong><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></strong><br /> <a href="http://www.templatepanic.com/article/running-blog-wordpress-theme" title="Running Blog Wordpress Templates" >Wordpress Theme</a> by <a href="https://www.usasportstraining.com/" title="Triathlon Training" >Triathlon Training</a></p> </div> <!-- end footer --> </div> <?php ?> <?php wp_footer(); ?> [PLACE ANALYTICS CODE IN FULL HERE] </body> </html> Code (markup): That should work.