Forum Replies Created

Viewing 14 replies - 1 through 14 (of 14 total)
  • Thread Starter ceragraves

    (@ceragraves)

    It’s not a static page… I figured out what I was doing wrong… there were two query posts on the page – one for the main blog section and then another in the right column showing previous post titles. I was putting the paged info onto the second one, not the first. Thanks for your help!!!

    Thread Starter ceragraves

    (@ceragraves)

    Wow – I can’t believe that’s all it was…. ugh, I’ve waisted so much time on this…at least it’s all figured out! 🙂

    Thread Starter ceragraves

    (@ceragraves)

    I think I might have figured it out! So stupid!! I only see the gap when I’m logged in! If I log out, it disappears, which means no one else can see it. It must have something to do with that toolbar thing that shows up in the front end of the newer versions of wordpress – it just must not be showing up since I don’t see the toolbar, but the area where it is supposed to be is still showing….

    Thread Starter ceragraves

    (@ceragraves)

    Hi Dave – thanks for looking, but I’ve tried removing that already 🙁 That div relates to an image in the header, not the background image. I tried removing it to test it out to see if that was the problem, but all it did was move the image in the header up, but did nothing to the background image…..

    Thread Starter ceragraves

    (@ceragraves)

    According to the validator found through w3schools, I have no validation errors….

    Thread Starter ceragraves

    (@ceragraves)

    And now for the real weird part for me – it works sometimes, but not every time….

    I checked the homepage, saw that the forced extra top margin of -30px was actually moving the image too far up and that it wasn’t needed. Checked in interior pages and they all looked fine too – went and removed the -30px force, went back and checked and the gap was back. Re-pasted the style sheet (that I had just copied before when it was working) and updated, and the gap is still there……wtf?!

    Thread Starter ceragraves

    (@ceragraves)

    Anyone? Please?

    Thread Starter ceragraves

    (@ceragraves)

    And I’ve tried is as

    * {
    	margin: 0px;
    	padding: 0px;
    }

    as well with no difference.

    Forum: Plugins
    In reply to: Shadow Box JS and Youtube
    Thread Starter ceragraves

    (@ceragraves)

    Ok, so I’ve gotten it so that the page will black out, but no video plays…. what am I doing wrong?

    Forum: Plugins
    In reply to: Shadow Box JS and Youtube
    Thread Starter ceragraves

    (@ceragraves)

    PS – here is the link in the page :

    <a href="http://www.youtube.com/v/p8rXR1exY4A" rel="shadowbox"><img src="http://kachinadechert.com/wp-content/uploads/2011/03/restingstate-300x168.jpg" alt="" title="restingstate" width="300" height="168" border="0" /></a>

    Forum: Plugins
    In reply to: Nivo Slider stuttering
    Thread Starter ceragraves

    (@ceragraves)

    Never mind – I went with the Nivo Slider Light and now it works just fine.

    Thread Starter ceragraves

    (@ceragraves)

    AH HA! Figured it out!! Thank you for the link to the query post – that really helped!!

    The problem was that I had 7 categories in total and all of the categories were going to the blog except one, which is what I wanted – the blog to show all categories except for one. In order to achieve that, I was removing that category from the blog, which is what was causing the problem:
    <?php query_posts('cat=-4'); ?>

    To fix this, I created another category and set it to be the parent for the 6 categories that I wanted to show on the blog. I then called in that one category to the blog using the query post link that you posted and it now works! All 6 categories I want in the blog show in the blog without showing the one category that I don’t want shown there and the older posts button works!

    <?php global $wp_query;
    query_posts(
    	array_merge(
    		array('cat' => 72),
    		$wp_query->query
    	)
    ); ?>

    Thread Starter ceragraves

    (@ceragraves)

    yes I am. I just tested it by removing the query post that removes category 4 from the blog and then the blog works fine, so it’s something to do with that custom code that hides the category.

    Hi – I am having a similar problem and could really use some help.

    My blog: sarahnicklin.com/blog works fine except that when you click on the older posts button, it continues to show the same posts. The url changes to the second page, but the posts remain the same. I’ve been going through many of the posts here and have found people with the same problems and have tried using the solutions that people suggested, but it hasn’t worked.

    Please help. Here is the code from the index page (Note that this is from the “notepad chaos” theme)

    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>
        <div class="post" id="post-<?php the_ID(); ?>">
          <h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
          <div class="post-inner">
            <div class="date-tab"><span class="month"><?php the_time('F') ?></span><span class="day"><?php the_time('j') ?></span></div>
            <div class="thumbnail"><?php $key="thumbnail"; echo get_post_meta($post->ID, $key, true); ?></div>
    		<?php the_content('Read the rest of this entry &raquo;'); ?>
          </div>
          <div class="meta"><?php the_tags('Tags: ', ', ', '<br />'); ?>posted under <?php the_category(', ') ?> |  <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></div>
        </div>
        <?php endwhile; ?>
        <div class="post-nav"><span class="previous"><?php next_posts_link('&laquo; Older Entries') ?></span><span class="next"><?php previous_posts_link('Newer Entries &raquo;') ?></span></div>
        <?php else : ?>
Viewing 14 replies - 1 through 14 (of 14 total)