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!
It's all in your CSS.
Start with assigning the background property of #content to #main.
So
`
width: 950px;
background-image:url(images/body.jpg);
background-repeat: repeat-y;
}
`
becomes
`
width: 950px;
}
`
and
`
padding-top: 0;
width: 950px;
margin: 0 auto;
background: white;
}
`
becomes
`
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#mainto someting like: margin: 30px auto;`
and change the margin of the #header to something like:
margin-top: -17px;
Hope this helped a bit.