meed0622
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: MISSING COMMENT FORM ON BLOG POST — NEED HELP!!!THANKS!!! It adds the form but now I’m trying to figure out the correct placement….here is what I have right now…
You can view it here:Code from my single.php:
get_header(); ?>
<style>
.tips_text2{ width:auto !important;}
</style><div id=”content”>
<div class=”left_section2 fltleft”>
<?php
/* Run the loop to output the post.
* If you want to overload this in a child theme then include a file
* called loop-single.php and that will be used instead.
*/
get_template_part( ‘loop’, ‘single’ );
?><?php comments_template(); ?>
</div>
<?php get_sidebar(); ?>
<div class=”clrflt”></div>
</div><!– #content –>
<div id=”footer” style=”margin-left:0px !important;”><!–footer start–>
<div class=”footer_top”><!–footer_top start–>
<?php dynamic_sidebar(‘Footer Link Widget Area’) ;?>
<div class=”clrflt”></div>
</div><!–footer_top end–><div class=”footer_bottom”><!–footer_bottom start–>
<div class=”f_left fltleft”>
<?php dynamic_sidebar( ‘Copyright Widget Area’ ); ?></div>
<?php dynamic_sidebar( ‘Bottom Footer Widget Area ‘ ); ?>
</div><!–footer_bottom end–>
</div><!–footer end–></div><!–wrapper end–>
</body>
</html><style>
.tips_box {
margin-bottom: 36px;
padding-bottom: 20px;
}
</style>THANKS SO MUCH! I TRULY APPRECIATE YA!