Website Background help!

Status
Not open for further replies.

Vapour

CrimKing was here.
Aug 18, 2013
179
13
okay hey guys. im sure this is a code situation maybe theres a code to stretch the bg? or something?

so on my index page the background is fine screenie :
2dty5jc.png


but on my me page the background is like this :
2s82ptj.png


And here is the code im using for the bg :}

body {
background: url(images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
background-size: cover;
}
 

Hindi

System.out.println(" ");
Dec 30, 2012
989
193
okay hey guys. im sure this is a code situation maybe theres a code to stretch the bg? or something?

so on my index page the background is fine screenie :
2dty5jc.png


but on my me page the background is like this :
2s82ptj.png


And here is the code im using for the bg :}

body {
background: url(images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
background-size: cover;
}


Code:
body {
background: url(images/bg.jpg)  center;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
background-size: cover;
}

That should definately work.
 
Status
Not open for further replies.

Users who are viewing this thread

Top