1. Welcome! Please take a few seconds to create your free account to post threads, make some friends, remove a few ads while surfing and much more. ClutchFans has been bringing fans together to talk Houston Sports since 1996. Join us!

Website creation/Problem in Mozilla

Discussion in 'Other Sports' started by Castor27, Apr 21, 2005.

  1. Castor27

    Castor27 Moderator
    Staff Member

    Joined:
    Jan 17, 2001
    Messages:
    10,199
    Likes Received:
    1,634
    I participate in a forum for my local hockey team. The guy that created the forum has been having a problem with mozilla browsers. It seems when you enter a subforum, the last column (Last Post by) gets a bleed from a border. It only happens in Mozilla based browsers and works fine in IE. Anyone have any suggestions for how to fix it?

    http://www.txwildcatters.com/mboard/index.php

    Note: It works fine on the index page. It only is a problem on the sub forum and topic pages.
     
  2. DrLudicrous

    DrLudicrous Member

    Joined:
    May 9, 2002
    Messages:
    3,936
    Likes Received:
    203
    It doesn't look like the class for that column has a background set for it. The easist fix seems to be to switch the class from row3Right to row3. He could update the row3Right class but it seems like it's used somewhere else so he may not want to do that.
     
  3. Castor27

    Castor27 Moderator
    Staff Member

    Joined:
    Jan 17, 2001
    Messages:
    10,199
    Likes Received:
    1,634
    Thanks, I'll forward that info on to him, and see if it works.
     
  4. DarkHorse

    DarkHorse Member

    Joined:
    Oct 9, 1999
    Messages:
    6,756
    Likes Received:
    1,303
    You'll want to make the change in the viewforum.tpl file, which is under "templates/[your template]"

    :)
     
  5. DarkHorse

    DarkHorse Member

    Joined:
    Oct 9, 1999
    Messages:
    6,756
    Likes Received:
    1,303
    Here's where row3Right is declared, and it does appear to have black as it's background color, just like row3. (the code for this is in templates/[your template]/simple_header.tpl)

    td.row3 { background-color: #000000; }

    td.row3Right,td.spaceRow {
    background-color: #000000; border: #FFCC66; border-style: solid; }
    }

    Changing row3Right to row3 may fix the problem, but there doesn't seem to be any good reason why that would make a difference now that I look at it closer. My initial impression was that he might want to consider creating a new class altogether to deal with that column.

    Of course, that would require modifying simple_header.tpl, viewforum_body.tpl, and the database.

    Just see if changing it to row3 works, first.
     
  6. Castor27

    Castor27 Moderator
    Staff Member

    Joined:
    Jan 17, 2001
    Messages:
    10,199
    Likes Received:
    1,634
    Thanks, I'll pass that along if changing to row 3 deosn't work.
     
  7. DrLudicrous

    DrLudicrous Member

    Joined:
    May 9, 2002
    Messages:
    3,936
    Likes Received:
    203

    It seems like row3Right is declared twice, a few lines beneath the one DarkHorse pointed out is this line

    th.thRight,td.catRight,td.row3Right { border-width: 0px 1px 0px 0px; }

    That could be overwriting the correct one, he should take out the extra declaration to avoid the confusion.
     
  8. DarkHorse

    DarkHorse Member

    Joined:
    Oct 9, 1999
    Messages:
    6,756
    Likes Received:
    1,303
    That stuff is in simple_header.tpl

    Actually, it looks like several classes have multiple declarations. Maybe that doesn't make a difference since different fields are affected.
     
    #8 DarkHorse, Apr 21, 2005
    Last edited: Apr 21, 2005

Share This Page