text size issue please help

Discussion in 'CSS' started by forumrating, Jul 25, 2006.

  1. #1
    im gone crazy with text issue
    need to fix css but not able to spot the problem
    check out below link
    www.paidwebdirectory.com

    please help me with it
    thankyou
     
    forumrating, Jul 25, 2006 IP
  2. ing

    ing Well-Known Member

    Messages:
    500
    Likes Received:
    38
    Best Answers:
    0
    Trophy Points:
    195
    #2
    Which part are you wanting to change?

    If it's the category names, look for h2 in the style sheet.
    :)
     
    ing, Jul 25, 2006 IP
  3. forumrating

    forumrating Notable Member

    Messages:
    6,565
    Likes Received:
    347
    Best Answers:
    0
    Trophy Points:
    275
    #3
    just the category names and sub categories
     
    forumrating, Jul 25, 2006 IP
  4. 50plus

    50plus Guest

    Messages:
    234
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #4
    As Ing said look for <h2> in your style sheet and for .subcats for the sub categories and change the text size

    Also close the <h2> tage before adding the span tag
    <h2><a href="Computers_and_Internet/">Computers & Internet</a> <span class="count">(47)</span></h2>
     
    50plus, Jul 25, 2006 IP
  5. Superorb

    Superorb Peon

    Messages:
    149
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Here's what declares the size.

    h2 {
    background: url('../images/arrow.png') no-repeat left;
    ---> font: 1.4em <--- "Georgia", Helvetica, Verdana;
    font-weight: 600;
    color: #5396C5;
    font-variant: small-caps;
    margin: 0px;
    padding: 0 0 0 20px;}

    And:

    p.subcats {
    margin: 0px 0px 7px 22px;
    color: #71818D;
    ---> font: .8em <--- "Arial", Helvetica, Verdana;
    padding: 0px;}
     
    Superorb, Jul 28, 2006 IP