• Resolved russtalavista

    (@russtalavista)


    hi. one of my categories are on my menus. it’s just weird that some of the titles of my posts are in color (brown) while the others are not (black).

    how do i correct this? thanks

    here is the link to my site:

    goo.gl/jUzDCn

    • This topic was modified 7 years, 9 months ago by russtalavista.
Viewing 7 replies - 1 through 7 (of 7 total)
  • Theme Author Shaped Pixels

    (@shaped-pixels)

    That is actually showing a “visited” colour to show that you already went to that post. Only you see it. However, it should be using the same colour styling and setting as the blog home page would show. For example, the theme is coded like this:

    .blog .entry-title a, 
    .blog .entry-title a:visited {
        color: #333;
    }

    What you will need to do is get the HEX colour value that you have for your “Blog Post Heading Colour” setting in the customizer Colours tab. In your case, it’s #333, so you will then add this code to your Additional CSS tab in the customizer as custom CSS:

    .archive .entry-title a, 
    .archive .entry-title a:visited {
        color: #333;
    }
    • This reply was modified 7 years, 9 months ago by Shaped Pixels.
    Thread Starter russtalavista

    (@russtalavista)

    many thanks for that.
    I have another question though, is it OK if i don’t start a new topic for this?

    some images is not being centered after being published. but on my draft it is centered.

    like in this post: https://goo.gl/mTAaNp

    thanks in advanced.

    Theme Author Shaped Pixels

    (@shaped-pixels)

    If you are referring to that one page and the image, it’s your Pinterest plugin causing the problem. It’s usuing a class that is overriding the theme’s styling with their own:

    .pibfi_pinterest {
        position: relative;
        display: inline-block;
    }

    It’s using display:inline-block;
    But if this was display: block; then it would center.

    Thread Starter russtalavista

    (@russtalavista)

    Hi,

    thanks for your response. I altered the Pinterest plug-in and changed it to:

    .pibfi_pinterest {
    position: relative;
    display: block;

    but still it’s not centering… I deactivated the plug-in for the mean time.

    Theme Author Shaped Pixels

    (@shaped-pixels)

    The code you just pasted…did you have a closing curly bracket at the end or just missed that for here? If you do not have the bracket in the styles, it will not work correctly.

    Thread Starter russtalavista

    (@russtalavista)

    thanks!

    at first I actually just edited the CSS of the plug-in itself and removed ‘inline’.
    (so yes, the curly bracket is there)

    but what I did now is add what u posted on
    additional CSS section.
    that fixed it. thanks!

    Is there a way though, for the ‘pin it’ button to appear also on the center with the foto? thanks

    Theme Author Shaped Pixels

    (@shaped-pixels)

    The pin it button question will have to be asked of the developer of the plugin you are using. They will know their product much better than me….especially because I am not a fan of Pinterest plugins ??

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘text color of blog post titles within a category’ is closed to new replies.