sinankurt
Neues Mitglied
Hallo HTML-Community!
Wie kann ich Button-Codes an den im Bild markierten Bereich setzen? Ich weiß zwar wie ih sie oberhalb der Überschrift setze, jedoch sind die dann zu nah an der Überschrift dran. Wie kann ich sie so setzen, dass sie nicht so nah an der Überschrift sind? Ungefähr so wie im Bild.

Veilleicht ist die single.php nützlich:
Wie kann ich Button-Codes an den im Bild markierten Bereich setzen? Ich weiß zwar wie ih sie oberhalb der Überschrift setze, jedoch sind die dann zu nah an der Überschrift dran. Wie kann ich sie so setzen, dass sie nicht so nah an der Überschrift sind? Ungefähr so wie im Bild.

Veilleicht ist die single.php nützlich:
PHP:
<?php
// calling the header.php
get_header();
// action hook for placing content above #container
thematic_abovecontainer();
?>
<div id="container">
<?php thematic_abovecontent(); ?>
<div id="content">
<?php
the_post();
// create the navigation above the content
thematic_navigation_above();
// calling the widget area 'single-top'
get_sidebar('single-top');
// action hook creating the single post
thematic_singlepost();
// calling the widget area 'single-insert'
get_sidebar('single-insert');
// create the navigation below the content
thematic_navigation_below();
?>
<!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style ">
<a class="addthis_button_facebook_like" fb:like:width="120" fb:like:layout="button_count"></a>
<a class="addthis_button_tweet" tw:via="QuartelBlog"></a>
<a class="addthis_button_google_plusone"></a>
<a class="addthis_counter addthis_pill_style"></a>
</div>
<script type="text/javascript">var addthis_config = {"data_track_clickback":true};</script>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=ra-4de0ba5e3a0edbc7"></script>
<!-- AddThis Button END -->
<?PHP
// calling the comments template
thematic_comments_template();
// calling the widget area 'single-bottom'
get_sidebar('single-bottom');
?>
</div><!-- #content -->
<?php thematic_belowcontent(); ?>
</div><!-- #container -->
<?php
// action hook for placing content below #container
thematic_belowcontainer();
// calling the standard sidebar
thematic_sidebar();
// calling footer.php
get_footer();