• can u please guide me that how i can change the text color used in posts and pages as all the postings are colored white. i will be great full to you if u could guide me to control the text colors of https://www.pakchristian.com/ and i have used Gamepress theme but unable to control the text color.

Viewing 12 replies - 1 through 12 (of 12 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Do you have a section of the dashboard named, “Custom CSS” or “Edit CSS?

    Thread Starter zpervez

    (@zpervez)

    yes i have..

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    I cannot see your white text, but try this:

    body {
     color: deeppink;
    }

    Thread Starter zpervez

    (@zpervez)

    no means i want to change the text font color that is currently white…

    The code provide by Andy will change the text color from white (it’s actually grey on your site) to pink.

    Thread Starter zpervez

    (@zpervez)

    nothing happened still the content is of white color on site.???

    Thread Starter zpervez

    (@zpervez)

    do u suggest me to give here some specific part of css???

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Install this Custom CSS Manager plugin and use its section of the dashboard to hold your CSS modifications.

    Thread Starter zpervez

    (@zpervez)

    its simply gr8 but with this code only body text is changed but titles are still white?? i need to change all white text//thanks

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    If you want all white text to change colour, use this:

    body,
    .widget a,
    .reviews_widget .entry-title a,
    .rating-bar,
    .rating .label,
    h1, h2, h3, h4, h5, h6,
    .tabs-wrapper ul.tabs-nav li a,
    .accordion-header a,
    .button, input[type="submit"],
    header #logo h1 a,
    .slider-captions h2 a, .entry-header h2 a,
    .entry-meta a,
    .tags a,
    .video-item .entry-header a,
    .wp-pagenavi a, .wp-pagenavi span {
     color: deeppink !important;
    }

    Sorry, you’re going to have to use !important.

    Thread Starter zpervez

    (@zpervez)

    thank you very much for your quick and proper help but why it is needed to add important??again thanks.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Some styles are using !important already, so the only way to override them is to subsequently use !important. Bad practice, but I can’t see another way.

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘How to change text color used in all posts & pages on Gamepress theme’ is closed to new replies.