Search bar codes

Hiding the search bar

Install this code in your profile :

<style>
body div table tbody tr td div form {
display: none !important;
}
body div table tbody tr td div select {width: 0px !important; height: 0px !important}
</style>

Hiding the REALLY annoying “shortcut” select box.

I posted this code, but it doesn’t work anymore :

<style>
body div table tbody tr td div select {width: 0px !important; height: 0px !important}
</style>

Use this one instead :


<style>
body div table tbody tr td div select {filter:alpha(opacity=0);-moz-opacity:.0;opacity:.0;}
</style>