previous / next post
-
sort of new at this but I’m getting there – I’m trying to change the color of the text above posts where it says what the previous post is or the next post (not even sure what that area is called – maybe that’s why I’m having a problem) I played around with some colors on the editor but I’m getting nowhere. Any ideas?
Mod
Yep. Those are your post navigation links. They have the CSS id of
#previous
and#next-post
.Your question has already been answered in this post. You will need to enter your altered code in the custom CSS part of Graphene Options.
Good luck and welcome aboard,
Ken
okay I’m so with you Ken, thanks! I got the next-post to change color, but for some reason the previous won’t change and I’m sure I set them the same. I’m sure it’s operator error but I can’t figure out what I did wrong.
Mod
Please include a URL to your site and we’ll take a look.
http://www.nutrition-uar.com/testwebpage/
I’m also having trouble with my twitter feed – so if you’re poking around and want to take a look 🙂 I haven’t given up on my ability to fix that one yet though!
Thanks so much!
Mod
You broke up the code into separate declarations (which is fine, because like I said, you may want to style these differently later), but you left in the comma, which is causing your CSS not to render.
You have:
#previous,{
color: #000000;
font: 14px tahoma;
text-decoration: none;
}but you should have:
#previous {
color: #000000;
font: 14px tahoma;
text-decoration: none;
}See the difference? Take out the comma after “previous” and just before the curly bracket and it should work.
I don’t see a Twitter feed. Did you enter this in the “Top Bar Options” of Graphene Options?
I do see the difference! Thanks that totally just made my day!
As for the twitter feed I was trying to put it into the sidebar of my homepage using either the twitter widget or the text widget and the code I got straight from the Twitter site. It shows a spot for each of them on my websites but my tweets don’t show up. . . yet. I haven’t worked on this a ton – and like I said I’m learning as I go, but if you get a chance, any advice would be greatly appreciated!
Mod
Looks like they’re both showing up now!
You’re so right, you must be magic! Thanks so much for all of your help!
Viewing 9 posts - 1 through 9 (of 9 total)
- You must be logged in to reply to this topic.