• Hi,

    I have had an issue where I have found the colour of the title on my post page is incorrect. It has also affected the “next” and “previous” posts.

    When looking at the posts list, I also find that when I hover the mouse near the text, it turns into the wrong colour as well.

    I have searched every option in the customiser but cannot find the option to change the colours for those issues.

    thanks,
    Chris

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author apollo13themes

    (@apollo13themes)

    Hello ??

    These color are not avaibable by Customiser, you will have to change them by custom CSS.

    Try those 2 rules:

    .posts-nav a span {
        color: #6A6A6A;
    }
    .posts-nav a span.title {
        color: #333;
    }

    With kind regards.
    Air.

    Thread Starter chrisdavidson22

    (@chrisdavidson22)

    Hi,

    Thanks. I can see that it changes the “Next” and “Previous” titles when applying these rules but not for when I hover on that text, the title of the post or when the mouse is hovering next to the title in the posts list.

    thanks,
    Chris

    Theme Author apollo13themes

    (@apollo13themes)

    Hey ??

    Please add this custom CSS for hover state:

    .posts-nav a:hover span {
        color: #6A6A6A;
    }
    .posts-nav a:hover span.title {
        color: #333;
    }

    With kind regards.
    Air.

    Thread Starter chrisdavidson22

    (@chrisdavidson22)

    Hi,
    Unfortunately I still have a problem with hover, but since I have been able to sort out the problem with all the other colour issues. I have taken a screenshot and uploaded it to my server, which you can see here. In the screenshot, you can see I have inspected the right H2 and forced the hover command through the inspect function. It still turns black when the user hovers their mouse anywhere aroung the outside of the title link to the blog post…

    https://starjump.nu/wp-content/uploads/2020/01/Screenshot-2020-01-08-at-15.01.52.png

    thanks for all your help with this issue and I hope you are all well?

    Chris

    Theme Author apollo13themes

    (@apollo13themes)

    Hey ??

    OK, we were talking about 2 different things. I gave you css for next/prev post in single post, but now you are talking about post list.

    Please use this custom CSS:

    h2.post-title:hover a {
        color: #fff;
    }

    With kind regards.
    Air.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Problem with Header text colour’ is closed to new replies.