Issues I see:
Setting a height or width on an inline <a> or <span> tag in your CSS or in your animation. Read this article for the issues with trying to set height or width on inline tags. This applies to both your CSS and your animation. If you want to animate width, I think you're going to need to do it on a block element.
It seems to me that the animation may be getting confused by the toggle for width and opacity. Perhaps you'd be better off specifying both callbacks for hover and specifying the animation start and stop points more directly rather than leaving the toggle method to having to figure out what the start and stop points should be.
For example, without redoing the HTML to be block elements (which I think is required to animate width reliably), here's a smooth animation on just the opacity. I've set the starting point in the CSS to the desired starting opacity and I've stopped using toggle to set the animation and am setting it explicitly. I'm not sure this is required, but it sures removes the ambiguity from what toggle is going to try to guess what you want: http://jsfiddle.net/jfriend00/r2cdn/ (opacity animation only in this jsfiddle, both animations included in jsfiddle below).
jQuery(document).ready(function() {
// Animate the single page nav
jQuery("a#post-nav-next").hover(function(){
jQuery("a#post-nav-next span").stop(true, true).animate({opacity: "1.0"});
}, function() {
jQuery("a#post-nav-next span").stop(true, true).animate({opacity: "0"});
}
);
});
For the toggle of the width, what two states were you hoping to toggle between? That was not clear to me as a human and probably not clear to jQuery.toggle() either. If, what you're trying to do is to animate the right padding, then perhaps you should just do that directly.
If I put in a direct animation for the padding and change the starting value in the CSS, it starts to animate smoothly. I'm not 100% sure I know what animation you were looking for, but this should be the direction you can go: http://jsfiddle.net/jfriend00/PE4qQ/.
jQuery(document).ready(function() {
// Animate the single page nav
jQuery("a#post-nav-next").hover(function(){
jQuery("a#post-nav-next span").stop(true, true).animate({"opacity": "1.0", "padding-right": "100px"});
}, function() {
jQuery("a#post-nav-next span").stop(true, true).animate({"opacity": "0", "padding-right": "0px"});
}
);
});