• 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?

    https://www.bordwayphotography.net/

Viewing 5 replies - 1 through 5 (of 5 total)
  • 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;

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

    Thread Starter databell96

    (@databell96)

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

    Thread Starter databell96

    (@databell96)

    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.

    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.

    Thread Starter databell96

    (@databell96)

    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.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Where is this #444 gray coming from?’ is closed to new replies.