Not signed in (Sign In)

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

  1.  
    Hi,

    I downloaded the latest trunk zip and there seems to be a small problem with the default theme. gallery.css points to images within a /themes/default/graphics directory that does not exist.

    I have manually copied the /graphics directory into the default directory and it has resolved issues that I'd seen in the slide show functionality.

    To fix it 'properly' I've updated:

    input.submit
    {
    border: 3px double #999999;
    border-top-color: #CCCCCC;
    border-left-color: #CCCCCC;
    background-color: #FFFFFF;
    background-image: url('../../graphics/button-bg.gif');
    background-repeat: repeat-x;
    color: #333333;
    font-size: 75%;
    font-weight: bold;
    font-family: Verdana, Helvetica, Arial, sans-serif;
    }

    .comments cite {
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 75%;
    background: url('../../graphics/comment.gif') no-repeat 0 3px;
    padding: 5px;
    padding-left: 23px;
    margin-top: 8px;
    height: 28px;
    }

    .errors
    {
    width: 500px;
    background-image: url('../../graphics/x.gif');
    background-repeat: no-repeat;
    background-position: 5px 8px;
    margin-bottom: 15px;
    border: 1px solid maroon;
    padding: 8px;
    background-color: #FFCCCC;
    padding-left: 28px;
    }

    However having fixed the webserver errors there is still no 'speech bubble' icon next to the posted comments, which I assume is the reason for the:
    background: url('../../graphics/comment.gif') no-repeat 0 3px;
    line?

    Thanks

    Mark