Hi Guys,
I bought the Corporate template and i want different backgrounds per page. I already altered the background within the body tags see example:
body {
/*line-height:1.7; background:#746592*/
/*#f4f2ef*/
margin: 0 auto;
padding-top: 145px;
background-color: #fff;
background-image :url('../images/body_bg.png');
background-repeat: repeat;
background-attachment: fixed;
background-position: top center;
}
But i want for each page a diffrent background so i tried this option:
.bg2 body {
margin: 0 auto;
padding-top: 145px;
background-color: #fff;
background-image :url('../images/body_bg2.png');
background-repeat: repeat;
background-attachment: fixed;
background-position: top center;
}
But that didn't work at all. I tried to use the suffix bg2, .bg2 both didn't work.
Am i doing something wrong? And does somebody have a solutions for this issue?
Thanks in advance