Jump to content

Deafult background color


Recommended Posts

well , you should go to the css of your them (root/themes/your-theme/css/global.css

 

so what we will modify is the file called global.css

 

open you file with an editor and look for the line where there is the line body like this

body{
	font:normal 12px/1.35 Arial, Verdana, sans-serif;
	color:#676767;
	background:#fff
}

you have to change the background: #fff to

background-image: url(../img/your-pic.jpg);;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;

 

where the url is where your image is saved and the your-pic.JPG is the name of your image

  • Like 1
Link to comment
Share on other sites

×
×
  • Create New...