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-carThere 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!
Comments
The tool bar is gone if you are logged out.
Does Zenphoto require that the page have a specified doctype?
http://www.w3.org
http://htmlhelp.com/tools/validator/doctype.html
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;
}
`
"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?
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 containing Zenphoto.
<?php #printPageListWithNav("« prev", "next »"); // uncomment this line to support pagination ?>
Other than those, nothing is commented out with double slashes.
| Album: my car
`
By the way your doctype doesn't match the code....you need to set XHTML 1.0 STRict. the closing of standalone tags with /> is not allowed in HTML 4.