Jump to content

help.... cant seem to get rid of it


runnerjp

Recommended Posts

hey guys.... [url=http://www.runnerselite.com]http://www.runnerselite.com[/url] if you look on their u can see the added black area
this has come up because i added

[code] <style type="text/css">
<!--
body {background: black url(/image/background.jpg) no-repeat top left;}
.style2 {color: #0066CC}
.style3 {color: #0000FF}
-->
</style>[/code]

is their away to make it so that non of the black area is shown.... sorry i think it should be posted in css but it thought their could be a php script to solve this or mb not lol
Link to comment
https://forums.phpfreaks.com/topic/32063-help-cant-seem-to-get-rid-of-it/
Share on other sites

Just get rid of the "black" from your background declaration. If you want it to blend with the rest of the page no matter what the user's browser default is set to, you'll need to set the color to white instead:
[code]
body {
  background: #ffffff url('/image/background.jpg') no-repeat top left;
}
[/code]

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.