I am in the process of integrating zen into an existing website. This is harder than I thought it would be!
Here is what is going on: http://www.chuckjensen.com/gallery/index.php?album=my-car
There are some random images in there, but notice the white space at the top and bottom of the page. Where is this coming from?
There was also a white box in the center of the page that i removed by commenting out the header section.
Thanks in advance for your help!
zenphoto functions put out most code matching XHTML 1.0 Strict. The doctype is absolutely necessary for browser to display correctly.
http://www.w3.org
http://htmlhelp.com/tools/validator/doctype.html
I wasn't going to post here but you seem to be in deep help!
First of all you need to open up your zenphoto theme and remove the double slashes from your javascript and css imports.
Second, open up gallery/themes/simple-plus/zen_fe.css and change:
`
html, body {
background: white;
color: #A2A2A2;
}
to:
html, body {
background: black;
color: #A2A2A2;
}
`
I had thought about changing the .css to make the background black, that makes it look better but it doesnt mean that the space is gone. Now I just have black space.
"First of all you need to open up your zenphoto theme and remove the double slashes from your javascript and css imports."
What file are you referring to?
adding margin: 0;padding:0 to the html, body that I sent earlier should help you out on the blankspace. If not, sorry.
The file I was referring to is your index.php, album.php and image.php in your theme folder.
We can usually help out on Zenphoto stuff, but this is related more to your page [i]containing[/i] Zenphoto.