Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
<table id="caption-date-table">
<tr>
<td><h2 id="picture-caption"><?php echo plogger_get_picture_caption(); ?></h2></td>
<td class="align-right"><h2 class="date"><?php echo plogger_get_picture_date()?></h2></td>
</tr>
</table><!-- /caption-date-table -->
#caption-date-table, #prev-next-table { /* containers for the caption, date and prev/next links above the large image in picture view */
width: 600px;
margin: 10px auto 5px;
}
Posted By: kimparsellandrewjs18:The gap is caused by the html code remaining in the theme that is used for displaying the caption and date above the prev/next links.
Apparently you aren't using either of those, but you did not remove the table that was used to display the data, and the table is what's causing the gap.
Open picture.php and remove the following lines (should be lines 18-23):<table id="caption-date-table">
<tr>
<td><h2 id="picture-caption"><?php echo plogger_get_picture_caption(); ?></h2></td>
<td class="align-right"><h2 class="date"><?php echo plogger_get_picture_date()?></h2></td>
</tr>
</table><!-- /caption-date-table -->
You'll also need to edit the gallery.css file for that theme and copy/paste the following code, replacing the existing code (lines 176-179):#caption-date-table, #prev-next-table { /* containers for the caption, date and prev/next links above the large image in picture view */
width: 600px;
margin: 10px auto 5px;
}
This will even out the gap between the horizontal line and the prev/next links.
After making the changes, save both files and reupload them to your server.
Please let us know if this resolves the issue for you.
1 to 7 of 7