Not signed in (Sign In)

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

    • CommentAuthorbatfan
    • CommentTimeJul 30th 2009
     
    I've embedded Plogger into my site using the default/bare-bones white template. I have a basic 1 column site with a side bar on the right. For some reason, when a blank search is performed and the following text is returned :

    There are no pictures that matched your search.

    It breaks my site's template and my sidebar gets knocked down below the gallery. If I enter a search term that brings up results, the template is fine.

    Any idea's?
    •  
      CommentAuthorkimparsell
    • CommentTimeJul 30th 2009
     
    batfan: Can you please provide a link to your gallery? It's easier to diagnose a problem if we can see it in action rather than guessing at the cause.
    • CommentAuthorbatfan
    • CommentTimeJul 30th 2009
     
    Kim, I sent the URL to your email.
    • CommentAuthorbatfan
    • CommentTimeAug 3rd 2009
     
    Okay, me and Sid figured this one out. For anyone else having this issue . . .

    The 'wrapper' div is missing it's closing tag. Go into your theme folder and open search.php. Then, just change this:


    else{
    print '<div id="no-pictures-msg">There are no pictures that matched your search.</div>';
    }


    to this:


    else{
    print '<div id="no-pictures-msg">There are no pictures that matched your search.</div></div>';
    }