Results 1 to 5 of 5
  1. #1
    Join Date
    Apr 2011
    Posts
    24
    Plugin Contributions
    0

    Default How do I change all the grey text to black?

    I don't want all the low contrast light grey on white background text on my site. My #1 rule of web design "Thou shalt not use low contrast text and background color combinations.". Since the advent of Windows Vista there has been an absolute plague of light grey text all over the web.

    I had a look at the stylesheet css file and spent some time plugging hex codes into a color picker. Not only is the thing filled with codes for light grey text, there's a large number of very slightly different shades of light grey text. Why?! Why not just chose *one* (if you insist on using that execrable shade) and go with that?

    So I went on a search and replace hunt, switching them for FFFFFF to get nice, pure actually readable black - uploaded the stylesheet file and it didn't make one bit of difference. So I reverted to the backup copy and am here to ask how I fix this hideous design decision, apparently made by people with eyes capable of seeing beyond the normal spectrum visible by humans.

    All the other colors specified for text are fine. Standing out quite nicely against a plain, white background. Clean, clear, uncluttered, visible.

  2. #2
    Join Date
    Apr 2006
    Location
    West Salem, IL
    Posts
    2,888
    Plugin Contributions
    0

    Default Re: How do I change all the grey text to black?

    Can you be more specific about where you want to change the text color?
    Mike
    AEIIA - Zen Cart Certified & PCI Compliant Hosting
    The Zen Cart Forum...Better than a monitor covered with post-it notes!

  3. #3
    Join Date
    Apr 2011
    Posts
    24
    Plugin Contributions
    0

    Default Re: How do I change all the grey text to black?

    Quote Originally Posted by barco57 View Post
    Can you be more specific about where you want to change the text color?
    http://partsbyemc.com/catalog/ All the grey text on the main page. Click on a category, the category title is grey. Click an item, the item title is grey.

    Everywhere else there's grey text. I see some grey text and I want it painted bla-ack, to paraphrase The Rolling Stones.

  4. #4
    Join Date
    Aug 2014
    Location
    Lisbon
    Posts
    594
    Plugin Contributions
    0

    Default Re: How do I change all the grey text to black?

    in your css file this color

    color: #9a9a9a;

    Is the gray color you are looking.... If you want to change it to black

    color: #000;

    Now this reallys depends on where and what you want to change it.

    For the headers, change :

    h1 {
    font-size: 1.5em;
    color: #9a9a9a;
    }

    to

    h1 {
    font-size: 1.5em;
    color: #000;
    }

    If it's black that you want....
    “Though the problems of the world are increasingly complex, the solutions remain embarrassingly simple.” ― Bill Mollison

  5. #5
    Join Date
    Apr 2006
    Location
    West Salem, IL
    Posts
    2,888
    Plugin Contributions
    0

    Default Re: How do I change all the grey text to black?

    stylesheet: line 284 Change
    Code:
    color: #9a9a9a;
    to
    Code:
    color: #000000;
    Stylesheet: line 39 Change h1 color to #000000

    Those two should catch most of them


    edit: yeah, what he said
    Mike
    AEIIA - Zen Cart Certified & PCI Compliant Hosting
    The Zen Cart Forum...Better than a monitor covered with post-it notes!

 

 

Similar Threads

  1. v150 Change the Default Green-to-Black Gradient on All the Backgrouds?
    By PerfectHindsight in forum Templates, Stylesheets, Page Layout
    Replies: 10
    Last Post: 18 Jul 2012, 10:34 AM
  2. black pure theme, how do I change the colours??
    By Nigraphics in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 5 Aug 2011, 02:15 PM
  3. How Would I Change All Background Colour To Black?
    By hcd888 in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 12 Mar 2011, 08:36 AM
  4. Change background to black and get rid of a grey box on main page
    By debtag in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 5 Mar 2008, 07:18 AM
  5. Installed new template - how do I change the text colour of all products desciptions?
    By sadesigns in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 26 Feb 2007, 06:36 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg