Problems with CSS

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • SpeedStreet
    Senior Member
    • Aug 2002
    • 299

    Problems with CSS

    I have this code:

    Code:
    <a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]" class="thead"><strong>$forum[title]</strong></a><br />
    This is what the generated CSS file shows:

    Code:
    .thead
    {
     background: #5C7099 url(../../images/gradients/gradient_thead.gif) repeat-x top left;
     color: #FFFFFF;
     font: bold 11px tahoma, verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
    }
    .thead a:link
    {
     color: #FFFFFF;
    }
    .thead a:visited
    {
     color: #FFFFFF;
    }
    .thead a:hover, .thead a:active
    {
     color: #FFFF00;
    }
    Here is what is displayed:


    Here is what my Style Manager is showing:


    Why is vBulletin not showing the links properly?
  • Jake Bunce
    Senior Member
    • Dec 2000
    • 46598
    • 3.6.x

    #2
    Are those links for forum categories? If so, those use the tcat class.

    If you are still having problems please post a link to your forums so I can look at your page source code.

    Comment

    • SpeedStreet
      Senior Member
      • Aug 2002
      • 299

      #3
      I used thead merely to show that I was having issues. I'm adding new code to the genereated CSS and its all having the same issue.

      www.speedstreet.org/forums

      Comment

      • Jake Bunce
        Senior Member
        • Dec 2000
        • 46598
        • 3.6.x

        #4
        Maybe try making this change in your forumhome_forumbit_level2_post template. Add the code in green and remove the code in red:

        Code:
        <td width="15%" align="left" [color=green]class="thead"[/color]>
        						<a href="forumdisplay.php?f=2" [color=red]class="thead"[/color]><strong>SpeedStreet News</strong></a><br />
        In your customized template you have the thead class on the "a" tag. This might be a problem since the thead class is designed for table cells, so the above code moves that class to the parent table cell.

        Comment

        Related Topics

        Collapse

        Working...