Hi guys,
this is my website: http://www.hodiazacharia.com/marina-bay-sands/
I want to move the title, sub-title, entry meta, and view plugins in post a little bit to left, so I can put this function sfc_share_button in front (need at least 2 rows).
I found this:
[please mark any posted code - aee http://codex.wordpress.org/Forum_Welcome#Posting_Code ]
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php if (function_exists('the_subtitle')){ the_subtitle(); }?>
<?php if ( 'post' == get_post_type() ) : ?>
<div class="entry-meta">
<?php admired_posted_on(); ?>
<!-- total comments and view -->
</br>
<?php comments_popup_link();?> / <?php if(function_exists('the_views')) { the_views(); } ?>
</div><!-- .entry-meta -->
<?php endif; ?>
</header><!-- .entry-header -->
in loop-single.php
I already changed the code in stylesheet.php, but the padding still not change.
Do you guys have any idea how to move it? I am a newbie with php.