css not working with firefox
Posted: 17 January 2008 05:46 AM   [ Ignore ]
Newbie
Rank
Total Posts:  9
Joined  2007-10-11

Hello and thanks in advance,

I have a style sheet that (somehow) is not working with Firefox. Seems to be working with the other major browsers.

I wonder if I can paste the code here so that a good soul can give a quick look.


Thanks/regards

Profile
 
 
Posted: 17 January 2008 01:57 PM   [ Ignore ]   [ # 1 ]
Jr. Member
RankRank
Total Posts:  36
Joined  2008-01-11

yes, why don’t you post the code. In fact, why did you not just post it to begin with?

Profile
 
 
Posted: 17 January 2008 03:45 PM   [ Ignore ]   [ # 2 ]
Newbie
Rank
Total Posts:  9
Joined  2007-10-11

I wasn’t too sure…

:red:


Here is the code:

.toplink { 
font
-familytahomaArialHelveticasans-serif
font-size12pxcolor#FFFFFF; 
text-decoration:none;
font-weight:      bold;
}

.rightlink { 
font
-familytahomaArialHelveticasans-serif
font-size12pxcolor#FFCC66; 
}

.bottomlink { 
font
-familytahomaArialHelveticasans-serif
font-size12pxcolor#FFCC66; 
}

.toplinkdf { 
font
-familytahomaArialHelveticasans-serif
font-size12pxcolor#7a7a7a;  
}

A
.toplink:visited {
font
-familytahomaArialHelveticasans-serif
font-size12pxcolor#FFFFFF; 
text-decoration:none;
font-weight:      bold;
}

A
.toplink:hover {
COLOR
#FFCC66;
text-decoration:none
font-weight:      bold;
}

.yellow {
    background
-color#FFFF00;}

a                {color:            #336699;
                 
text-decoration:underline;}

A
:hover          { text-decoration:nonecolor:#666600}


h1               {font-family:      verdana;
                  
font-size:        16pt;
                  
font-weight:      bold;
              
margin-bottom:   0pt
                  
color:            9c0000;}

h2               {font
-family:      verdana;
                  
font-size:        13pt;
                  
font-weight:      bold;
                  
color:            #000066;}

h3               {font-family:      verdana;
                  
font-size:        11pt;
                  
font-weight:      bold;
                  
color:            #666600;}

h4               {font-family:      verdana;
                  
font-size:        9pt;
                  
font-weight:      bold;
              
margin-bottom:   0pt
                  
color:            #000000;}

h5               {font-family:      verdana;
                  
font-size:        8pt;
                  
font-weight:      normal;
              
margin-bottom:   0pt
                  
color:            #000000;}

h6               {font-family:      verdana;
                  
font-size:        11pt;
                  
font-weight:      bold;
              
margin-bottom:   0pt
                  
color:            9c0000;}

.text {
    font
-familyverdanatahomaHelveticasans-serif
    
font-size11pxcolor#666666; 
    
text-indent0pt;
    
text-alignleft;
    
cursortext;
    
padding-left:10px;
    
padding-right:10px;
    
padding-top:1px;
}

.bullets {
    
list-style-typesquare;
    list-
style-positionoutside;
}

.border {

            border
1px solid #000000;

td               {font-family:      verdana;
                  
font-size:        10pt;
                  
color:            #666666;
}

table
.dotted {
       border
-styledashed;
       
border-color#000000;
       
border-width1px;
}

li               {font
-family:      verdana;
                  
font-size:        10pt;
                  
color:            #666666;
}

p
         {font
-family:      verdana;
                  
font-size:        10pt;
                  
color:            #666666;
}

ul 
        {list
-style-image:  url('../images/bullet.gif')

Thanks a lot for your time!!!

Profile
 
 
Posted: 19 January 2008 03:21 PM   [ Ignore ]   [ # 3 ]
Member
Avatar
RankRankRank
Total Posts:  52
Joined  2007-11-08

There you go..pay attention to opening and closing brackets in your css.. I guess this should work now

.border {

        border: 1px solid #000000;

} // this closing tag was missing

td           {font-family:    verdana;
            font-size:      10pt;
            color:        #666666;
}

Profile
 
 
Posted: 22 January 2008 06:04 PM   [ Ignore ]   [ # 4 ]
Newbie
Rank
Total Posts:  9
Joined  2007-10-11

Oh, I see where the problem is, such a small thing…

Thanks a lot !!!!!!!!!!!

Profile