Plogger Support Forum - Doh!!!!!! Thu, 28 Mar 2024 19:17:08 +0000 http://www.plogger.org/forum/ Lussumo Vanilla 1.1.10 Doh!!!!!! http://www.plogger.org/forum/comments.php?DiscussionID=467&Focus=2229#Comment_2229 http://www.plogger.org/forum/comments.php?DiscussionID=467&Focus=2229#Comment_2229 Sun, 19 Feb 2006 12:15:45 +0000 alfonce Bascailly I have 2 issues.

1. Im trying to display captions instead of filenames for the images. I have used both methods suggested elswhere but still I see filenames and not captions delimited.

In Gallery.php, around line 429, replace this line:

$output .= $filename . '<br />';

with:

if ($row['caption'] == "") {
$output .= $filename . '<br />';
} else {
$output .= stripslashes ($row['caption']) . '<br />';
}

$output .= '<div class="thumbtitle">'.$row["caption"].'</div>';

.thumbtitle {
display:block;
clear:both;
margin-top:2px;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:11px;
text-align:center;
}

2. No matter what I do I cannot get the delect drop box to style like the input button or box and yet the code is identical - I have looked at other peoples examples and they do nt have the same problem as me - why can this be!!!

select {
background: #000053;
font-size: 10px;
color: #FFFFFF;
border: 1px solid #FFFFFF;
}

input {
background: #000053;
border: 1px solid #FFFFFF;
color: #FFFFFF;
font-size: 10px;
}

See the code is identical and so.......

http://www.ebro-catfishing.com/gallery/index.php?level=album&id=4

Please can anyody highlight why this is happening so I can put the baby to bed.

Thanks a lot,

Alex.]]>