Forums

changing the color of my body and text? (3 posts)

  1. tangerine3
    Member
    Posted 8 months ago #

    i tried but can't find where in my css to change the color codes to make the background and/or text a different color.

    here is my site: http://www.chromehorserentals.com/wordpresstestsite

    here is my css: http://pastebin.com/m7t4YXVL

    any help appreciated, thank you.

  2. Slobodan Manic
    Member
    Posted 8 months ago #

    Hi tangerine3,

    Text color comes from this CSS property:

    body
    {
      padding: 0;
      margin:0;
      color: #3D5266;
      height:100%;
      min-height:100%;
      background-color: #B2C2D1;
      background-image: url('images/Bottom_texture.jpg');
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-position: top center;
      min-width: 908px;
    }

    It's somewhere around line 250 in your style.css (color property)

    Regarding background color change, I'm not sure which background you mean, but if it's white post background, also in style.css, line 1250:

    .art-post-cc {
    position: absolute;
    top: 7px;
    left: 7px;
    right: 7px;
    bottom: 7px;
    background-color: #FDFDFD;
    }

    (background-color property)

  3. tangerine3
    Member
    Posted 8 months ago #

    thank you this worked hope it helps someone else

Reply

You must log in to post.

About this Topic