MyBB Community Forums

Full Version: Search Text Remove
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
http://sicgaming.com/

How do i remove the txt within the button on the right hand side in the sidebar?

Please also report any problems that you find.

Thanks,
Cohen
You have typo in your HTML. You forgot an equal sign:
<input type="submit" value"" class="searchbutton" name="sb">
should be
<input type="submit" value="" class="searchbutton" name="sb">

Another way is to set text-indent in the CSS to -9999px or something. This will hide the text for css capable browsers and show the text for css non-capable browsers and search engines.
Awesome - Thanks! Smile
Doesn't the <input> HTML tag need to have an /> at the end? Confused
(2011-03-28, 09:26 PM)Shukaku Wrote: [ -> ]Doesn't the <input> HTML tag need to have an /> at the end? Confused

Its good to add, but not compulsory.