Hi,
I would like to change the format of the title for pictures and albums page, such that the main site title is not added to the end of the title.
e.g. Album Name/Picture Title
as opposed to:
Album Name/Picture Title - Your Gallery
Copy that to your theme's theme.php file:
function theme_page_title($section)
{
global $CONFIG;
$return = strip_tags(bb_decode($section));
return $return;
}