Not signed in (Sign In)

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

    • CommentAuthorbzboarder
    • CommentTimeOct 12th 2005
     
    I'm a newbie when it comes to all this stuff, so I was just wondering. I was looking at some of the integration examples and noticed that one did not have the jump to... and search box. I was wondering how to remove it... if possible just how to remove the whole header itself so it doesn't display anything above the pictures. Thanks for any help.
    • CommentAuthorjack
    • CommentTimeOct 13th 2005 edited
     
    Somewhere at line 90 of gallery.php there is this code:

    <div id="wrapper">
    <table id="header-table" width="100%"><tr><td>'.generate_header().'</td><td style="text-align: right; vertical-align: bottom;">'.generate_jump_menu().generate_search_box().'</td></tr></table>';

    I think it will be sufficient to remove only

    '.generate_jump_menu().generate_search_box().'

    Or you could put this line in between a new

    <span style="display:none;">'.generate_jump_menu().generate_search_box().'</span>
    • CommentAuthorbzboarder
    • CommentTimeOct 21st 2005
     
    worked like a charm... thank you. i just removed '.generate_jump_menu().generate_search_box().'
    • CommentAuthordaveMS
    • CommentTimeJun 30th 2006
     
    This worked just fine, but the gallery that is integrated into my WordPress test site needs to move up a bit where the jump box and search box were. Can anyone point me to the right bit of the css file?

    thanks
    dave
    • CommentAuthordaveMS
    • CommentTimeJun 30th 2006
     
    Nevermind, I used the <span style="display:none;"></span> trick and it worked just fine.