
Originally Posted by
wasana
similar/same question -
I have commented out stylesheet
.leftboxheading, .rightboxheading {
/*height: 20px;*/
and changed includes/language/english.php defines to remove sidebox header text. The other sideboxes I wanted the header to flatten out did, but not search sidebox. Is it possible that there is a hidden character in the search sidebox, or is there a separate css for it?
thnx
If you go to the your web site and look at the code you'll find:
Code:
<h3 class="rightBoxHeading" id="searchHeading"><label>Search</label></h3>
It's the damn <label> tage that causes all the trouble. I foudn it in my style sheet mixed up with some other tags. Do a search in your stylesheet.css file and you'll find it. So I puled it out and did this to it:
Code:
LABEL {
font-size: 1em;
}
Now it looks better. Thanks for the help.
Bookmarks