CSS Moved My "Next Page" Link
-
I received some help editing the CSS on my site to get the images that show up (my notebook pages) be 1000 pixels. Regardless of the image I post, the image will always be stretched to 1000 pixels.
That’s not really that big of a problem, figuring there will be a better way for me to upload notebook pages to my computer soon. However, my “Older” link for seeing “older” posts now rests at the top of my page and it does not seem very conducive in getting people to click further once they’ve reached the bottom. Anybody run into problems like this?
Also, my theme is Manifest.
The blog I need help with is: (visible only to logged in users)
-
Your CSS helper has #site-wrapper at 1000px wide, but #core-content is only 500px wide. That allows #navigation (previous/next) to float to the top and it is actually beside the core content, not above it.
-
Try setting the width and margin for the navigation element too, like this:
#site-wrapper .navigation { width: 500px; margin: 0 auto; }Make sure to test it on the home page as well as the notebook pages.
-
Thank you very much for helping me out to the both of you. Have a good rest of your week!
-
- The topic ‘CSS Moved My "Next Page" Link’ is closed to new replies.