• Resolved mikeadamski26

    (@madamski)


    I’m using the theme “Amigo” but it appears there’s no activity in that support, so I’m hoping to find some quick help here as I’m publishing a story in 45 minutes via an embargo.

    Anyway, suddenly, my website has had all of its text set to white. I’m not sure how this happened as I haven’t touched anything. The text looks fine on mobile, but not on numerous browsers I’ve tried.

    For now, I found where to change the site background color, and I made it a gray just so I could see the text, but I’d rather the background be white and the text a darker color (how I had it).

    https://www.franchisemodegaming.com is the website, and I’m not sure how to fix this–probably something VERY easy that I just need some help with.

    I’m a bit of a novice here, so please go slow! ?? Thank you!

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

Viewing 8 replies - 1 through 8 (of 8 total)
  • There must be some theme settings where you can change the font colors. Look in Appearance > Themes or look for the amigo links in the admin sidebar.

    Moderator t-p

    (@t-p)

    There are many tools available for this kind of CSS work, for example:
    – Firefox with Firebug add-on: Help info on Firebug https://getfirebug.com/faq/
    – Newer IE, Chrome, etc., have similar tools
    – Alternately, try a dedicated CSS resource such as https://www.css-discuss.org/

    Also, consider creating a child theme otherwise all your customization will be overwritten when you next update your theme.
    Alternately:
    – If your theme has a custom CSS option, use that to add the CSS.
    – If you are using WordPress 4.7+, use the “Additional CSS” option in the customizer.
    – If not, install the plugin Simple Custom CSS

    Thread Starter mikeadamski26

    (@madamski)

    There are options for that, pxforti, but for some reason, the body text is not updated.

    I can defintely insert some custom CSS, and that’s a good idea to prevent issues with future theme updates.

    The thing is, I am not sure what to write?! That’s the part I need help with–total noob here!

    Here is the code:

    body, .entry-summary {
    color: #ffffff;
    }

    Here is the code:

    body, .entry-summary {
    color: #666; /* or #000 for black */
    }

    Thread Starter mikeadamski26

    (@madamski)

    Ok, that solved the body text, but what about the headers for posts? Those are still white.

    THANK YOU!

    .home-header .page-header a, .page-header, .page-header a {
    color: #666;
    }

    Note: your theme is writing the css code for those colors directly on the page. That indicates it’s getting that from a theme setting. Either your theme is broke or you’re missing a setting for color.

    Thread Starter mikeadamski26

    (@madamski)

    Thank you!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Text Has Disappeared (white)’ is closed to new replies.