Page 2 of 2 FirstFirst 12
Results 11 to 15 of 15
  1. #11
    Join Date
    Dec 2007
    Location
    Michigan
    Posts
    160
    Plugin Contributions
    0

    Default Re: Category tabs, alignment and dropdowns

    I am using ZC 1.3.7 if that helps.

  2. #12
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Category tabs, alignment and dropdowns

    You have specified a height for #headerWrapper which is less than its content requires. Eliminate this property, as it is only useful in special circumstances:
    Code:
    #headerWrapper {
            background-image: url(../images/Header_1280x107.jpg);
    	background-position: center top;
            background-repeat: no-repeat;
           
            margin-bottom: 3em;
    	padding-top: 0em;
            height: 107px;
            }

  3. #13
    Join Date
    Dec 2007
    Location
    Michigan
    Posts
    160
    Plugin Contributions
    0

    Default Re: Category tabs, alignment and dropdowns

    Thank you. That solved the vertical issues, but the categories are still not centered horizontally. Have I made a similar error somewhere else that is causing this?

  4. #14
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Category tabs, alignment and dropdowns

    That was a tricky one. There is left padding on the <ul> (in Firefox), but there is no rule at all that mentions padding and applies to that list. I finally remembered that FF and IE treat lists differently, with one using padding-left and the other using margin-left by default on lists. So it was built into the browser and not any written rule.
    Find in your stylesheet around line 317, and add the part in red:
    Code:
    #navCatTabs ul {
    	
            margin: 0em;
    	list-style-type: none;
    	/*text-align: center;*/
            padding: 0;
    	}
    Last edited by gjh42; 18 Jan 2011 at 11:05 PM.

  5. #15
    Join Date
    Dec 2007
    Location
    Michigan
    Posts
    160
    Plugin Contributions
    0

    Default Re: Category tabs, alignment and dropdowns

    Awesome!! That worked. Thank you very much gjh42. I have spent many ways and days trying to figure that one out.

 

 
Page 2 of 2 FirstFirst 12

Similar Threads

  1. v150 Banner between category tabs and content wrapper
    By uncharted in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 31 Jan 2012, 12:52 AM
  2. add specials and new product as part of category tabs
    By newagekat in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 24 Mar 2009, 04:17 AM
  3. Category Tabs IE6, IE7 and FF alignment AND the dreaded white space
    By spinnywoman in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 18 Apr 2008, 10:49 PM
  4. Category 'tabs' that *look* like tabs?
    By Moebiusenterprises in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 4 Oct 2006, 06:52 AM
  5. Merge Ezpages and Category Tabs
    By jaxsonsmom in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 25 Sep 2006, 04:43 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg