ceragraves
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: /page/2/ showing posts from page 1It’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!!!
Forum: Fixing WordPress
In reply to: Safari adding 30px top margin to background imageWow – 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! 🙂
Forum: Fixing WordPress
In reply to: Safari adding 30px top margin to background imageI 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….
Forum: Fixing WordPress
In reply to: Safari adding 30px top margin to background imageHi 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…..
Forum: Fixing WordPress
In reply to: Safari adding 30px top margin to background imageAccording to the validator found through w3schools, I have no validation errors….
Forum: Fixing WordPress
In reply to: Safari adding 30px top margin to background imageAnd 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?!
Forum: Fixing WordPress
In reply to: Safari adding 30px top margin to background imageAnyone? Please?
Forum: Fixing WordPress
In reply to: Safari adding 30px top margin to background imageAnd I’ve tried is as
* { margin: 0px; padding: 0px; }as well with no difference.
Forum: Plugins
In reply to: Shadow Box JS and YoutubeOk, 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 YoutubePS – 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 stutteringNever mind – I went with the Nivo Slider Light and now it works just fine.
Forum: Fixing WordPress
In reply to: page/2/ displaying same posts as page 1AH 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 ) ); ?>Forum: Fixing WordPress
In reply to: page/2/ displaying same posts as page 1yes 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.
Forum: Fixing WordPress
In reply to: ‘Older Entries’ Not WorkingHi – 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 »'); ?> </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('« Older Entries') ?></span><span class="next"><?php previous_posts_link('Newer Entries »') ?></span></div> <?php else : ?>