kiwihobbit
Member
Posted 5 years ago #
Ok sorry confession ... i really am a newbie trying to learn as much as I can.
I am using Barthelme theme within WP2.0. I am really having problems understanding how I fix the problem of posting images that then push into the footer and sometimes the comment section. I have tried searching for a solution but really can't find one ... here is an example of what is happening for me ... http://www.kiwihobbit.com/2006/08/14/furniture-take-2/ and http://www.kiwihobbit.com/2006/08/20/seen_the_light/
Thanks in advance, really appreciate your thoughts :-)
Well, a clear:both; in your div.post-footer (style.css) will help, but I suspect this is because something else was edited/broken in the theme's css.
MojoRisin
Member
Posted 5 years ago #
Here is the only thing that worked for me..
In your css add
.clear{
height:1px;
overflow:hidden;
clear:both;
margin-top:-1px;
}
add into your post.php
<div class="clear"> </div>
You will need to play with the placement of <div class="clear"> </div> in your code to make it look right.
Hope it helps
kiwihobbit
Member
Posted 5 years ago #
Hey thanks so much ... that fixes it perfectly ... really appreciate your help :-)