Forums

Where is this #444 gray coming from? (6 posts)

  1. databell96
    Member
    Posted 3 years ago #

    I'm currently creating a new theme/template for a photography client and I almost have everything done but the weird thing is that there's the grey background appearing with a color of #444 and I have no clue what style it's coming from because I searched for it and it doesn't even show up. Anyone know why I'm getting this background-color?

    http://www.bordwayphotography.net/

  2. whooami
    Member
    Posted 3 years ago #

    thats a background image

    body {
    	font-size: 14px;
    	font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
    	color: #FFF;
    	text-align: left;
    	margin: 0;
    	padding: 0;
    	background-color: #160B5B;
    	background-image: url(../../../images/nav/bkg.gif);
    	background-repeat: repeat-y;

    http://www.bordwayphotography.net/images/nav/bkg.gif

  3. databell96
    Member
    Posted 3 years ago #

    That's funny. It's supposed to be two colors. Not one. I'll go in and correct it. Thanks whooami.

  4. databell96
    Member
    Posted 3 years ago #

    Turns out, it's not the background. I just edited out the background reference in my CSS using the Web Developer Toolbar for Firefox and nothing changed. So it's not the body tag.

  5. ClaytonJames
    Member
    Posted 3 years ago #

    In addition to the background image, there is this;

    <div id="sk2-footer" style="border-top: 1px solid rgb(136, 136, 136); padding: 3px 2px; color: rgb(255, 255, 255); background-color: rgb(68, 68, 68);">

    I think (68, 68, 68) is the rgb equivalent of #444. I also think that the rgb (136,136,136) is putting a 1px border at the top of the page (color #888).

    It must be defined somewhere other than in the stylesheet.

  6. databell96
    Member
    Posted 3 years ago #

    Yea, that was it. I wasn't even thinking of looking in the footer.php file. Got rid of that line of code that brought it up and it fixed it. Thanks.

Topic Closed

This topic has been closed to new replies.

About this Topic