Hi,
As a newbie to Zenphoto I wanted to introduce myself briefly, and then ask a first question.
Living in Adelaide, South Australia, I have been a freelance web developer since the late 1990s, but currently work as researcher with an Aboriginal language program here in Adelaide.
Thanks to all of you who developed Zenphoto - I have been looking for such a program for quite some time.
My first question is probably rather simple, but I can't find a solution:
I am trying to adapt some of the css features of the zpskeleton theme but can not find where to change the <p> settings -- to a smaller font for the album description (
http://grweb.org/photogallery/201210-kangaroo-island-south-australia/cape-jervis-to-kangaroo-island/?locale=en_US).
Thanks for your advise.
Gerhard
Comments
This should work:
In `album.php` change line 11 from
`
<?php printAlbumDesc(true); ?>
`to
`
(the <p> tag is already generated by the printAlbumDesc(true) function)
Then in css/style.css add this line:
`div.yourclassname p{font-size: 14px !important;}`
Fill in your own classname and font size.
I'm sure it can be done in a more proper manner but I'll leave that to you ;-)