Custom Post Template styling issue
-
I’ve created a post template and the output is almost perfect, but there is a styling issue I can’t figure out. The post should look like: https://hometheatertips.co/organize-equipment-rack/ but this is how it comes out (title is flipped to the bottom): https://hometheatertips.co/speaker-repair/
The code in the custom template reads:if (have_posts()) { while (have_posts()) { the_post(); global $suf_prev_next_above_below; if ($suf_prev_next_above_below == 'above' || $suf_prev_next_above_below == 'above-below') { get_template_part('custom/prev-next'); } $original_post = $post; do_action('suffusion_before_post', $post->ID, 'blog', 1); ?> <article <?php post_class();?> id="post-<?php the_ID(); ?>"> <div class="entry-container fix"> <div class="entry fix"> <div class="videoplayer"><?php echo get_post_meta($post->ID, 'video_code', true); ?></div> <div class="affiliate"><?php echo get_post_meta($post->ID, 'affiliate120x300', true); ?></div> <a class="thumbnail" href="#thumb"><img src="https://hometheatertips.co/wp-content/uploads/2013/02/info2.png" width="29px" height="29px" border="0" /><span><?php echo get_post_meta($post->ID, 'description', true); ?></span> <?php suffusion_after_begin_post(); ?> <?php suffusion_content(); ?> </div><!--/entry --> </div><!-- .entry-container --> </article><!--/post -->
Do I need to add anything anywhere? What am I doing wrong?
Thanks for any help.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Custom Post Template styling issue’ is closed to new replies.