how do we add pictures to the background and pictures as the colour of the header bar?

Comments

naveenpl’s picture

You can edit style.css in your theme folder and add picture to your body and header.
eg:

Here I have a fixed background image test.png for the body.
body {
  background: #FFF url(test.png) no-repeat top right fixed;
  font-family: trebuchet ms, tahoma, verdana, arial, helvetica;
  border-top: 10px solid gray;
  color: #E5E;
}
Here I have a fixed background image test.png for the header.
#header {
  height: 91px;
  background: url(images/MM.png) repeat-y;
	color: #FFFFFF;
  padding: 0;
  border-left: 1px solid #d1dbec;
  border-right: 1px solid #d1dbec;
  margin: 0px;
}

Hope this will help.
Cheers.