Results 1 to 2 of 2
  1. #1
    Join Date
    Jan 2008
    Posts
    33
    Plugin Contributions
    0

    Default odd sidebox text size css effects

    I can't for the life of me get the font-size's of the left boxes on my site to be the same. The search size is smaller than the rest. The reviews and new products boxes text size is larger than the others. I like the 1.17em size i'm using for Bestsellers, Categories, and Information and New Products in the center but even though I thought I changed the css file correctly it doesn't show up correctly.

    you can find my stylesheet file here: http://www.akwdesigns.com/includes/t...stylesheet.css

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

    Default Re: odd sidebox text size css effects

    Oddly enough, part of your problem is caused by specifying a size for h3.leftBoxHeading a:
    Code:
    h3.leftBoxHeading, h3.leftBoxHeading a,
    h3.rightBoxHeading, h3.rightBoxHeading a {
    	font-size: 1.175em;
    	/*color: #ffffff;*/
    	color: #ffffff;
    	}
    #manufacturersHeading, #currenciesHeading, #musicgenresHeading, #recordcompaniesHeading, #searchHeading, #search-headerHeading {
    	font-size: 0.9em;
    	color: #ffffff;
    }
    The effect is multiplying on top of h3.leftBoxHeading. Eliminate the extra "a" selectors. If the color is a problem, specify that in a separate declaration.

    The search heading is specified to be smaller than it would normally be, in the declaration below that one. Remove #searchHeading, from that line.
    Code:
    h3.leftBoxHeading, h3.rightBoxHeading {
    	font-size: 1.175em;
    	color: #ffffff;
    	}
    h3.leftBoxHeading a (
    	color: #ffffff;
    	}
    #manufacturersHeading, #currenciesHeading, #musicgenresHeading, #recordcompaniesHeading, #search-headerHeading {
    	font-size: 0.9em;
    	color: #ffffff;
    }

 

 

Similar Threads

  1. v139h CSS Help Needed - Changing the size of hyperlink text in sidebox
    By lolwaut in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 8 Jun 2012, 04:10 PM
  2. Adjusting text size with CSS
    By krisdiamond in forum General Questions
    Replies: 1
    Last Post: 9 Feb 2010, 09:52 PM
  3. CSS has no effects?
    By admhays in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 13 May 2009, 10:49 PM
  4. Text size in Sidebox Issues
    By baker_jeff in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 19 Sep 2007, 08:20 PM

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