Forum Replies Created

Viewing 4 replies - 136 through 139 (of 139 total)
  • wspencer

    (@wspencer)

    Sounds like whatever you added to your style.css file combined with the HTML of the post messed up the float for your sidebar.

    Can you post a link to your site and the css you added?

    wspencer

    (@wspencer)

    Try something like this…..

    <?php query_posts(cat=12&posts_per_page=10&paged=' .$paged); ?>
    
    <?php while (have_posts()) : the_post(); ?>
    
    <div <?php post_class() ?> id="post-<?php the_ID(); ?>">
            <h2><?php the_title(); ?></h2>    
    
    	<div class="post-info">
    	<b><?php the_time('l, d F Y H:i'); ?></b>
    
            <div class="post-block">
                <?php the_content(); ?>
        	</div>
    </div>
    	</div>
    
    <?php endwhile;?>
    
    <?php wp_pagenavi(); ">

    the query_posts function accepts several arguments…one of which is posts_per_page. I threw in the cat=12 as an example of specifying a category. Try going with the posts_per_page rather than showposts and see if that works. I do something similar on my own site.

    wspencer

    (@wspencer)

    Custom menus in the dashboard are controlled in your functions.php file. If you don’t feel comfortable coding, I suggest getting a plugin to do this

    Forum: Fixing WordPress
    In reply to: adding header logo
    wspencer

    (@wspencer)

    If you don’t want the image to be linked to anything, you can always create a div in your css for the header and assign the logo as the background image. You’ll also have to remove the bloginfo(‘name’) section in your header.php file, but it all depends on how your theme works.

Viewing 4 replies - 136 through 139 (of 139 total)