Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
Posted By: sidtheduckremove the gallery name h1 tag from 'header.php'I guess if you are using the beta3 version of Plogger, the h1 tag is built into the generate_header function. To remove it (since you seem to have a blank gallery name), you would open 'header.php' in the theme folder that you are using. Look for the following code (should be lines 6-8):
print '<div id="wrapper">
<table id="header-table" width="100%"><tr><td>'.generate_header().
'</td><td id="jump-search-container">'.generate_jump_menu() . generate_search_box().'</td></tr></table>';
print '<div id="wrapper">
<table id="header-table" width="100%"><tr><td id="jump-search-container">'.generate_jump_menu() . generate_search_box().'</td></tr></table>';<?code>
<blockquote><cite>Posted By: sidtheduck</cite>I would edit your 'picture.php' file in your theme to wrap the picture caption in an h1 tag</blockquote>To do this, open 'picture.php' in the theme folder you are using and look for the following code (should be lines 7-18):
<code> print ' <div id="inner_wrapper"> <div id="big-picture-container">
<table style="width: 100%;">
<tr>
<td>
<h2 class="date">'.plogger_get_picture_date().'</h2>
</td>
<td class="align-right">
<h2 id="picture_caption">';
$capt = plogger_get_picture_caption();
print $capt;
print '</h2></td></tr></table>';
print ' <div id="inner_wrapper"> <div id="big-picture-container">
<table style="width: 100%;">
<tr>
<td>
<h2 class="date">'.plogger_get_picture_date().'</h2>
</td>
<td class="align-right">
<h1 id="picture_caption">';
$capt = plogger_get_picture_caption();
print $capt;
print '</h1></td></tr></table>';
Posted By: elias75also how do I remove the details info from each photo? (dimensions, camera model etc)Finally, to get this done you need to still be in 'picture.php' in the theme folder you are using. Look for the following code (should be lines 45-54):
print '
<table style="width: 100%;">
<tr>
<td id="exif-toggle-container"><div id="exif_toggle">'.$detail_link.'</div></td>
</tr>
</table>
</div>';
print generate_exif_table($row["id"]);
/* print '
<table style="width: 100%;">
<tr>
<td id="exif-toggle-container"><div id="exif_toggle">'.$detail_link.'</div></td>
</tr>
</table>
</div>';
print generate_exif_table($row["id"]);*/
1 to 12 of 12