How can i remove search from right top?
Thanks
Printable View
How can i remove search from right top?
Thanks
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>
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
Do you want to repace the search with signup/ login menu ?
If yes,findout the following from header.tpl
and Replace withHTML 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>
HTML Code:<div id="video-search">
<a href="{$base_url}/signup/">Sign Up</a> |
<a href="{$base_url}/login/">Log In</a> |
</div>
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
Can you post the url here ?