Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Problem found: it is the form in the comments.php template found by process of slow illimination.
    The form for what ever reason was stretching the table! I think the form needs some css to give it a set width as not to break my design 🙂

    Cheers Kris.

    I did this:

    <?php $blog = 1; require(‘wordpress/wp-blog-header.php’); ?>
    ^ put this before your <html> tag

    And then put this where you want your post titles to show, i have added a bit so it does not show category 4, my news posts.

    <?php rewind_posts(); ?>
    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <?php if ( !(in_category(‘4’)) ) { ?>
    “>
    <?php the_title(); ?>
    <br>
    <small>
    <?php the_time(‘F jS, Y’); ?>
    </small>

    <?php } ?>
    <?php endwhile; else: ?>

    <?php _e(‘Sorry, no posts matched your criteria.’); ?>

    <?php endif; ?>

    hope that helps, Kris.

    I have had to sign up again cos i forgot my lost password 🙂
    Cracking forum though, simple, very quick. If wordpress is anything to go by the forum when it comes out of beta should be a must have.

    Lorelle said: Someone should be shot.

    I use tables because I use Fireworks for design and it exports to Dreamweaver as tables. I know ‘strictly’ tables are not for design: check out my recent thread here: http://www.aota.net/forums/showthread.php?t=18932

    But anyway, the cell which the php generated content is in has a static pixel width. And i guess the same template is used for both the blog home and the full blogs themselves (ie. when you click on a blog title). I really dont think tables are more complex that css for layout, come on. Is that a joke?

    I doubt adding sidebar.php to index.php is how this has occured either because sidebar.php is simply included from index.php anyway, having the same effect as copy paste.

    Thanks Kris.

    PS. Yes, content spam is turned om, thanks. All the spam is from the same URL!!

Viewing 4 replies - 1 through 4 (of 4 total)