• Resolved eugeneyiga

    (@eugeneyiga)


    I’m using Black Bible theme but the font color is too dark to read. So I’ve had to manually make the text on all pages/posts a lighter shade of grey (and the hyperlinks a light blue). Can someone please help me change the style so that the colors I’ve used are permanent and don’t have to be manually edited for each page/post?

Viewing 6 replies - 1 through 6 (of 6 total)
  • a link to your site will increase your chance of getting a reply – particlularly with formatting/css issues, as most people will not be familiar with your theme.

    Thread Starter eugeneyiga

    (@eugeneyiga)

    sorry, I thought those were automatically included with the username… It’s https://www.eugeneyiga.com.

    I thought those were automatically included with the username

    in most cases, the user link might be totally unrelated to the problem site.
    thanks for posting the link –

    for the text color in the post/page content, edit style.css of your theme, find this style:

    .post {
    	margin: 10px 10px 0 5px;
    	padding:0px 0px 0px 0px;
    	height: 100%;
    	text-align:left;
    	color:#777;
    	font: 13px Georgia,century gothic, Arial, sans-serif;
    	}

    change the color:#777;

    the links in the text are defined here in style.css

    .post a:link,
    .post a:visited {
    	color: #cc9f4a;
    	background-color: transparent;
    }
    
    .post a:hover {
    	color: #f4e0e0;
    	background-color: transparent;
    	text-decoration: none;
    }

    Thread Starter eugeneyiga

    (@eugeneyiga)

    change the color #777 to what code? and change the url color to what code also?

    i thought you know your color codes ??

    https://en.wikipedia.org/wiki/Web_colors

    as you have done before, set the post text color to #c0c0c0 (from #777)

    and the link to #00ccff (from #cc9f4a)
    and pick your own color for the mouse-over :hover style (from #f4e0e0)

    Thread Starter eugeneyiga

    (@eugeneyiga)

    Thanks very much!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘please help me change the color of my text’ is closed to new replies.