Does anyone know how I can get my body-bg.png to begin just below the top navigation menu buttons but above the breadcrumb?
I need it to begin about 180px from the top of the page. Currently it overlaps the top background image and I want it to begin below it.
This is my current common.css config: (it's the bodyp.png below)
@import url(../../base/css/common.css);
* {
padding:0;
margin:0;
}
html {
background:#580274 url(../images/body129sp.png) center 0 no-repeat;
background-attachment:scroll;
}
body {
color:#bcbcbc ;
background:url(../images/bg-bodyp.png) center top repeat-y;
background-attachment:fixed;
font-family:Arial;
padding:0 0 0 0!important;
}
Thanks :)