Jump to content
MakeWebGames

Recommended Posts

Posted

Sure here you go

 

body {
background-attachment:fixed;
background-repeat: repeat;
background-color: ;
background-image:url(dark3.jpg);
margin-top: 0px;
margin-bottom: 0px;
font-family:calibri, helvetica, arial, geneva, sans-serif;font-size:12px;color: Limegreen;
  scrollbar-base-color: #005B70; 
  scrollbar-arrow-color: #F3960B;
  scrollbar-DarkShadow-Color: #000000;

}
Posted

you are using background-color: ; you have to specify the color also you could replace all the

background-attachment:fixed;

background-repeat: repeat;

background-color: ;

background-image:url(dark3.jpg);

with this

background: url(dark3.jpg); repeat fixed #000;

(un-tested)

Posted
you are using background-color: ; you have to specify the color also you could replace all the

background-attachment:fixed;

background-repeat: repeat;

background-color: ;

background-image:url(dark3.jpg);

with this

background: url(dark3.jpg); repeat fixed #000;

(un-tested)

Dayo was right just one small error

background: #000 url(dark3.jpg) repeat fixed;

is it in an image folder?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...