PDA

View Full Version : Need some help for my layout


cocoalex
06-29-2007, 01:35 PM
Hello!

I just installed my pixel post here:
http://72.52.156.32/~alexac/pixelpost/index.php

I want to keep this template, but I want my pictures to be displayed like here:
http://www.dreamprovised.com/pp/index.php

I also want to have 3 color options for the background color: white, gray and black.

How can I change all of this?

Thanks!

dakwegmo
06-29-2007, 01:51 PM
To allow three color options, all you need to do is create the third color option style sheet, then add another alternate stylesheet link in the head of your templates.

<link rel="stylesheet" type="text/css" href="templates/visions/styles/light.css" title="light" />
<link rel="alternate stylesheet" type="text/css" href="templates/visions/styles/dark.css" title="dark" />
<link rel="alternate stylesheet" type="text/css" href="templates/visions/styles/gray.css" title="gray" />


and add the link to the new style in the body (don't forget to create the new icon).

<a href="#" onclick="setActiveStyleSheet('light'); return false;"><img src="templates/visions/images/box_light.png" alt="light style" /></a>

<a href="#" onclick="setActiveStyleSheet('dark'); return false;"><img src="templates/visions/images/box_dark.png" alt="dark style" /></a>

<a href="#" onclick="setActiveStyleSheet('gray'); return false;"><img src="templates/visions/images/box_gray.png" alt="gray style" /></a>


If there are other features you like about the dreamprovised template, you'll need to be more specific about what they are, so we can point you in the right direction.

cocoalex
06-29-2007, 10:16 PM
Thanks a lot.

How can I display below the photo the exif info?

dakwegmo
06-29-2007, 10:42 PM
In your PP/doc/ folder there is a file called tags.html (also available here: http://docs.dwilkinsjr.com/1.6.0/tags.html). There's a whole section called EXIF related tags. Just insert these tags in your image_template.html after the image tags.