Navigation text

  • chillout80s

    #4330

    Hi, I just switched to the graphene theme and so far it’s going well. I do have a couple questions please.

    1. if you scroll to the bottom of my page, where you can navigate to page 2 and older posts, that text is barely readable. Can you tell me how I can make that text black?

    Also I have a small script that puts a Yardbarker.com banner at the top above my header, where can I place that so it’s above my header image?

    Thanks!

    my site is http://www.steeleraddicts.com

    chillout80s

    #27908

    I might just be really tired but if you could let me know also how to get the widgets to show up when viewing a full post that would be great too. Currently when you view a full article it only shows the archive and meta sidebar options. It works fine on the main page though. thanks!!!

    chillout80s

    #27909

    I think I found the issue with the widgets only showing up on the front page. I noticed I had the option checked to enable that feature.

    If you can help me out with the other questions though I’d appreciate it.

    Mod

    Kenneth John Odle

    #27910

    You’ve altered your site since posting this, so…here is some general advice.

    where you can navigate to page 2 and older posts, that text is barely readable

    Use Firebug to figure out those elements and how they are styled, and how to style them differently.

    <where can I place that so it’s above my header image?/blockquote>

    Graphene action hook widget area. But maybe you figured this out already?

    chillout80s

    #27911

    I was using Firebug and was able to edit that text to see the changes but I don’t know where it is in the editor templates to make the permanent change. Can you show me exactly which section it’s in? (for editing the navigation text at the bottom)

    Admin

    Syahir Hakim

    #27912

    You don’t need to change the text, just add a bit of CSS (either in the theme’s Custom CSS option, or in your child theme’s style.css file) to give it a different colour:

    #previous,
    #previous a,
    #previous a:visited,
    #next-post,
    #next-post a,
    #next-post a:visited {
    color: #000;
    }

    annvb1

    #27913

    I’m having the same issue; I’d like to change the font color and also add a background to the previous post / next post nav items above posts. I tried this in the theme’s Custom CSS option, and it didn’t work. Can you tell me what I did wrong? Here’s a link to a post with nav items above: http://dhanaecokids.com/blog/every-day-is-earth-day-7/. Thank you!

    #previous,
    #previous a,
    #previous a:visited,
    #next-post,
    #next-post a,
    #next-post a:visited {
    color: #333333;
    background-color: #e5f2d4;
    }

    Anonymous

    #27914

    Those previous and next-post links have been changed from id to class. So, you should use .previous and .next-post instead.

    .previous,
    .previous a,
    .previous a:visited,
    .next-post,
    .next-post a,
    .next-post a:visited {
    color: #333333;
    background-color: #e5f2d4;
    }

    @annvb1, please put your code between backticks. I’ve moderated your post

Viewing 8 posts - 1 through 8 (of 8 total)

  • You must be logged in to reply to this topic.