Member
Member
AChicken   10-04-2009, 16:46
#1

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!

Administrator
Administrator
fretzl   12-04-2009, 09:08
#2

It's all in your CSS.
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#mainto someting like: margin: 30px auto;`

and change the margin of the #header to something like:
margin-top: -17px;

Hope this helped a bit.

Member
Member
AChicken   13-04-2009, 14:58
#3

Ahh you're a life saver! I've been staring at this stuff for a while. Thanks!

  
Powered By MyBB, © 2002-2026 MyBB Group.
Made with by Curves UI.