Hola.
Pues si os fijais en la web:
http://acdem.martatorreajo.es/ tiene una barra abajo blanca justo encima del Copyright y no consigo quitarla, os paso el codigo del footer, para que me digais, pero vamos he kitado de todo y na...
A ver si me podeis echar un mano:
Código:
<?php global $theme; ?>
<?php if($theme->display('footer_widgets')) { ?>
<div id="footer-widgets" class="clearfix">
<?php
/**
* Footer Widget Areas. Manage the widgets from: wp-admin -> Appearance -> Widgets
*/
?>
<div class="footer-widget-box">
<?php
if(!dynamic_sidebar('footer_1')) {
$theme->hook('footer_1');
}
?>
</div>
<div class="footer-widget-box">
<?php
if(!dynamic_sidebar('footer_2')) {
$theme->hook('footer_2');
}
?>
</div>
<div class="footer-widget-box footer-widget-box-last">
<?php
if(!dynamic_sidebar('footer_3')) {
$theme->hook('footer_3');
}
?>
</div>
</div>
<?php } ?>
<div id="footer">
<div id="copyrights">
<?php
if($theme->display('footer_custom_text')) {
$theme->option('footer_custom_text');
} else {
?>Copyright © <?php echo date('Y'); ?> <a href="<?php echo home_url(); ?>/"><?php bloginfo('name'); ?></a><?php
}
?>
</div>
<!-- #copyrights -->
<div id="credits">Desarrollado por <a href="http://martatorreajo.es/" target="_new"><strong>Marta Torre Ajo</strong></a> bajo <a href="http://wordpress.org/"><strong>WordPress</strong></a></div><!-- #credits -->
</div><!-- #footer -->
</div>
</div><!-- #container -->
<?php wp_footer(); ?>
<?php $theme->hook('html_after'); ?>
</body>
</html>
A ver si me echais un cable, muchas gracias!!