Gallery Title - Image logo (png,gif) is possible?

In the administration options there isn't an option to do that.
Its possible to change the text title only.
I haven't found a way to edit gallery title (php,css), in all files there is "<title><?php printGalleryTitle(); ?></title>", but I don't understand where is the "GalleryTitle").
Someone can you tell me where is the (php?) file to change this, please?
(Sorry, but I'm not a web developer, I'm CG artist!)
Thanks

Comments

  • acrylian Administrator, Developer
    Standard themes do not have `<?php printGalleryTitle(); ?>` but `<?php echo getBareGalleryTitle(); ?>` so you are either using an old theme or a third party one

    Standard themes also have a part like (index.php of default theme):
    `

    <?php if (getOption('Allow_search')) { printSearchForm(''); } ?>

    <?php printHomeLink('', ' | '); echo getGalleryTitle(); ?>


    `
    You have to change the theme files directly to uses an image as a logo. Please consider to read the theming tutorial.
Sign In or Register to comment.