+ Reply to Thread
Results 1 to 6 of 6

Thread: remove search

  1. #1
    designated is offline Junior Member
    Join Date
    Mar 2010
    Posts
    4

    Default remove search

    How can i remove search from right top?

    Thanks

  2. #2
    buyscripts is offline Super Moderator
    Join Date
    May 2007
    Posts
    831

    Default

    You can remove the search by editing the header.tpl file in template folder.

    Findout the following code and remove it
    HTML Code:
        <div id="video-search">
           <form method="get" action="{$base_url}/search.php">
             <input class="text" value="{$smarty.request.search}" name="search" />
             <input type="hidden" name="type" value="video">
             <input type="submit" class="search-btn" value="Search" />
           </form>
        </div>

  3. #3
    designated is offline Junior Member
    Join Date
    Mar 2010
    Posts
    4

    Default Reduce space

    Thank you very much for your previous answer
    Could you pls tell me and how to reduce the space from signup/login line to first bar that one with friends - people below?
    I mean the space where the search cell was before.

    Thanks

  4. #4
    buyscripts is offline Super Moderator
    Join Date
    May 2007
    Posts
    831

    Default

    Do you want to repace the search with signup/ login menu ?


    If yes,findout the following from header.tpl
    HTML Code:
    <div id="video-search">
    <form action="{$base_url}/search.php" method="get">
    <input name="search" value="" class="text">
    <input type="hidden" value="video" name="type">
    <input type="submit" value="Search" class="search-btn">
    </form></div>
    and Replace with

    HTML Code:
    <div id="video-search">
    <a href="{$base_url}/signup/">Sign Up</a> | 
    <a href="{$base_url}/login/">Log In</a> |
    </div>

  5. #5
    designated is offline Junior Member
    Join Date
    Mar 2010
    Posts
    4

    Default Reduce space

    thanks for your message.
    I just remove the search and i want to reduce now the empty space between sign up/login and the first bar with friends/people buttons

    Thanks

  6. #6
    buyscripts is offline Super Moderator
    Join Date
    May 2007
    Posts
    831

+ Reply to Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts