Ich würde den Abstand der Schrift auf meiner Website gerne verringern. Habe das ganze schon mit firebug gecheckt, es scheint aber etwas verschachtelt zu sein,
Hier meine (footer.php)und (index.php):
PHP
<?php global $SMTheme;?>
<div id='content-bottom' class='container clearfix'>
</div>
<div id='footer'>
<div class='container clearfix'>
<?php if ($SMTheme->get("layout","footerwidgets")) { ?>
<div class='footer-widgets-container'><div class='footer-widgets'>
<div class='widgetf widget_first'>
<?php if ( !function_exists("dynamic_sidebar") || !dynamic_sidebar("footer_1") ) : ?>
<?php
$SMTheme->go_func("footer_1");
?>
<?php endif; ?>
</div>
<div class='widgetf'>
<?php if ( !function_exists("dynamic_sidebar") || !dynamic_sidebar("footer_2") ) : ?>
<?php
$SMTheme->go_func("footer_2");
?>
<?php endif; ?>
</div>
<div class='widgetf widgetf_last'>
<?php if ( !function_exists("dynamic_sidebar") || !dynamic_sidebar("footer_3") ) : ?>
<?php
$SMTheme->go_func("footer_3");
?>
<?php endif; ?>
</div>
</div></div>
<?php } ?>
<div class='footer_txt'>
<?php
if ($SMTheme->get( "layout","footertext" )) {
echo $SMTheme->get( "layout","footertext" );
} else {
?>Copiright © <?php echo date("Y"); ?> <a href="<?php echo home_url(); ?>"><?php bloginfo("name"); ?></a><?php
echo (get_bloginfo('description'))?' - '.get_bloginfo('description'):'';
}
?>
<?php /*
All links in the tag <div class='smthemes'> are attribution of the theme developers and should remain intact.
It's protected by Creative Commons License (http://creativecommons.org/licenses/by/3.0/).
Warning! Your site will not be able to work if these links are edited or deleted.
You can buy this theme without footer links online at http://smthemes.com/buy/droidpress
*/ ?>
<div class='smthemes'>Designed by <a href='http://smthemes.com' target='_blank'>SMThemes.com</a>, thanks to: <a href='http://wpdis.co' target='_blank'>WPdis.co</a>, <a href='http://lizardthemes.com' target='_blank'>LizardThemes.com</a> and <a href='http://fthe.me' target='_blank'>FThe.me</a></div>
</div>
</div>
<?php wp_footer(); ?>
</div>
<?php
echo $SMTheme->get( "integration","footercode" );
?>
</body>
</html>
Alles anzeigen
PHP
<?php
global $SMTheme;
get_header();
?>
<div id='content'>
<div class='container clearfix'>
<?php get_sidebar('right'); ?>
<?php get_sidebar('left'); ?>
<div class="main_content">
<?php get_template_part('theloop'); ?>
<?php get_template_part('navigation'); ?>
</div><!-- #content -->
</div>
</div>
<?php get_footer(); ?>
Alles anzeigen