Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthoralfonce
    • CommentTimeFeb 19th 2006
     
    Sorry to harp on but I'm trying to finish this.
    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.