Recent Topics

1 Jul 11, 2005 10:16    

I have a glitch in my code.

http://www.monkeytreemedia.co.uk/blogb2/

The date for the second post is to the right of the first post.

If there are 2 posts in a single day, this is solved.

I have to go to a meeting, but when i get back i shall have a look and if i can't fix it, post my code, but in the interim if anyone has the chance to take a peek and can see the obvious mistake i have made that would be appreciated.

cheers,

jules

2 Jul 11, 2005 15:28

I think I found part of your problem. There's a div with class "bPosts" that should be wrapped around all of your posts. But the div closes after the first post. I've guessing that the </div> got put on the wrong side of a } in your _main.php file for your skin. So look for something like this:

</div>
</div>
<?php } ?>

and change it to something like this:

</div>
<?php } ?>
</div>

3 Jul 12, 2005 10:27

good catch personman, you were spot on. i moved the </div> down the page and not only did it work, but by chance it circumnavigated an html glitch i had created to make the design work.

2 for the price of 1.

Your time, as always on forums, is appreciated.

:D

4 Jul 12, 2005 15:07

I'm glad we were able to track it down. Some of the credit should go to the [url=https://addons.mozilla.org/extensions/moreinfo.php?id=60]Firefox Web Developer Extension[/url]. If you don't have it already, check it out. It lets you load source in a new tab, edit CSS on the fly, overly your page with outlines of block elements and id and class labels, and a bunch of other stuff.


Form is loading...