search header and categories header
These two headers (Search and Categories) have different heights. I've searching the stylesheet to fine a way of getting them to be the same height with no luck. Can anyone point me in the right direction. You can find the web page at: http://www.seventhwindow.com/
Re: search header and categories header
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
PS: quick edit - I bet the search sidebox header is defined in a php file - I'm going to look for it and let you know...
Re: search header and categories header
your problem is different sized fonts - not sure where in CSS it is but maybe if you increase the header height for the other sideboxes (which you can find I think) then it will look even.
Re: search header and categories header
Quote:
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.
Re: search header and categories header
good find and advice - glad it worked for you
unfortunately for me, my stylesheet is such an abomination I don't have
<h3 class="rightBoxHeading" id="searchHeading"
but I'm still looking for something similar and/or other fixes
thanks
ZenCart CSS is evolving quickly - and there isn't as much uniformity between sites as there used to be - a good thing - but makes it tougher to find answers
Re: search header and categories header
not sure you are still looking for answers but check this thread
http://www.zen-cart.com/forum/showthread.php?t=36526:yes: