Hello all,
I am new to Zenphoto/ Zenpage and, so far have found this to be a very helpful platform to work with. I am however experiencing what I'm thinking is a broken theme/ template page. After looking over and over through the code, I'm not seeing where the error is. I'm hoping someone on here can help me out?
Essentially if you look at any page within my site
http://offleashphotos.com everything is fine until you get to the Image, Search Results, or Archive pages.
You'll notice the gray outline disappears beside the breadcrumb (blue background). Can anyone help me figure out why? This is driving me insane!
Comments
Start with assigning the background property of `#content` to `#main`.
So
`
#content {
width: 950px;
background-image:url(images/body.jpg);
background-repeat: repeat-y;
}
`
becomes
`
#content {
width: 950px;
}
`
and
`
#main {
padding-top: 0;
width: 950px;
margin: 0 auto;
background: white;
}
`
becomes
`
#main {
padding-top: 0;
width: 950px;
margin: 0 auto;
background: white;
background-image:url(images/body.jpg);
background-repeat: repeat-y;
}
`
then change the margin of the `#main` to someting like:
`margin: 30px auto;`
and change the margin of the `#header` to something like:
`margin-top: -17px;`
Hope this helped a bit.