|
#1
|
|||
|
|||
|
Hello,
I'm using the Horizon template and would like to include EXIF data, can someone help? I have read and found the EXIF tags, but do not know where to include them in the CSS or templates? |
|
#2
|
|||
|
|||
|
Usually you want to place the tags somewhere in the the file image_template.html or in comment_template.html. You can place them wherever you want them to appear. But it would make sense to create a separate CSS container (div) in the templates CSS file for the output-formatting.
Regards Uwe
__________________
www.accessible.de |
|
#3
|
||||
|
||||
|
You need to include the exif tags in the image_template.html file of the Horizon template.
Open it in a text editor, then scroll down to around lines 36-37 - code at that point should be: Code:
<div id="image_notes"> <IMAGE_NOTES> Code:
<div id="image-exif"> <EXIF_CAMERA_MODEL><br /> <EXIF_EXPOSURE_TIME><br /> <EXIF_APERTURE><br /> <EXIF_FLASH><br /> </div> In your stylesheet (horizon.css), add the following: Code:
#image_notes #image-exif {
padding-top: 10px;
text-align: left;
vertical-align: top;
}
If you have any questions or problems, post back here and I or someone else will try to help you out.
__________________
My photoblog: KP Images |
|
#4
|
|||
|
|||
|
Thanks for this
Works great!! |
|
#5
|
|||
|
|||
|
Super
Très bien je cherchais justement la même info...
Super i was looking for the exact same info Thanks |
|
#6
|
||||
|
||||
|
Thank you. I was doing it all in the wrong place (comments page)
|
| Post Reply |
| Thread Tools | |
|
|