CSS Problems in FIREFOX

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Jimmie
    Confirmed User
    • Dec 2003
    • 872

    #1

    CSS Problems in FIREFOX

    hey, was wondering if anyone was having CSS problems in FireFox. I link to my css file like this:
    Code:
    <link rel="stylesheet" type="text/css" href="stylesheet.css">
    and FireFox doesnt render it, or however u say it. I like to link to the css instead of having it all on the page, so SE's dont have to sift thru all of it when spidering the page.

    Anyone have this problem, or know how to fix it? thanks in advance!
    Livin' Fat Cause I Aint On Speed....
  • xclusive
    Too lazy to set a custom title
    • Apr 2004
    • 35218

    #2
    Yeah i've been having similar problems over the last week or so very strange

    I support MediumPimpin.com / Shemp's Outlawtgp.com /


    Comment

    • Jimmie
      Confirmed User
      • Dec 2003
      • 872

      #3
      i cant figure out why it isnt working.. maybe firefox doesnt have css capabilities unless its right there in the html code.?
      Livin' Fat Cause I Aint On Speed....

      Comment

      • prezzz
        Confirmed User
        • Jul 2004
        • 959

        #4
        The CSS file itself is probably faulty. Post it here or post a link to it.

        TEMPLATEHYPE.COM - PREMIUM MECHBUNNY TEMPLATES
        Responsive Mechbunny templates now available - NEAT TUBE - REDDY TUBE

        Comment

        • flashfire
          ICQ 1 6 7 8 5 3 4 9 2
          • Feb 2003
          • 13098

          #5
          I have had similar problems with firefox and have yet to find a solution...post if you get it working

          Comment

          • Jimmie
            Confirmed User
            • Dec 2003
            • 872

            #6
            Originally posted by prezzz
            The CSS file itself is probably faulty. Post it here or post a link to it.
            Code:
            <style type="text/css">
            <!--
            body,td,th {
            	font-family: Verdana, Arial, Helvetica, sans-serif;
            	font-size: 12px;
            	color: #000000;
            }
            body {
            	margin-left: 0px;
            	margin-top: 1px;
            	margin-right: 0px;
            	margin-bottom: 1px;
            }
            a:link {
            	color: #666666;
            	text-decoration: none;
            }
            a:visited {
            	text-decoration: none;
            	color: #666666;
            }
            a:hover {
            	text-decoration: underline;
            	color: #990000;
            }
            a:active {
            	text-decoration: none;
            	color: #666666;
            }
            -->
            </style>
            Livin' Fat Cause I Aint On Speed....

            Comment

            • prezzz
              Confirmed User
              • Jul 2004
              • 959

              #7
              This should work:
              Code:
              <style type="text/css">
              <!--
              body {
              	margin-left: 0px;
              	margin-top: 1px;
              	margin-right: 0px;
              	margin-bottom: 1px;
              }
              body,td,th {
              	font-family: Verdana, Arial, Helvetica, sans-serif;
              	font-size: 12px;
              	color: #000000;
              }
              a:link {
              	color: #666666;
              	text-decoration: none;
              }
              a:visited {
              	text-decoration: none;
              	color: #666666;
              }
              a:hover {
              	text-decoration: underline;
              	color: #990000;
              }
              a:active {
              	text-decoration: none;
              	color: #666666;
              }
              -->
              </style>

              TEMPLATEHYPE.COM - PREMIUM MECHBUNNY TEMPLATES
              Responsive Mechbunny templates now available - NEAT TUBE - REDDY TUBE

              Comment

              • dirtysouth
                Confirmed User
                • Jul 2003
                • 2613

                #8
                Try this:

                Code:
                <style type="text/css" media="screen">@import "http://www.whatever.com/style.css";</style>
                no sig

                Comment

                • tyler86ed
                  Confirmed User
                  • Jan 2004
                  • 543

                  #9
                  Originally posted by prezzz
                  This should work:
                  Code:
                  <style type="text/css">
                  <!--
                  body {
                  	margin-left: 0px;
                  	margin-top: 1px;
                  	margin-right: 0px;
                  	margin-bottom: 1px;
                  }
                  body,td,th {
                  	font-family: Verdana, Arial, Helvetica, sans-serif;
                  	font-size: 12px;
                  	color: #000000;
                  }
                  a:link {
                  	color: #666666;
                  	text-decoration: none;
                  }
                  a:visited {
                  	text-decoration: none;
                  	color: #666666;
                  }
                  a:hover {
                  	text-decoration: underline;
                  	color: #990000;
                  }
                  a:active {
                  	text-decoration: none;
                  	color: #666666;
                  }
                  -->
                  </style>
                  Well if thats an external css take out the html <style> tags. You can't use HTML in a .CSS file

                  That would work if it was an internal CSS.

                  Check out all our new fresh FETISH sites, Tons of hosted galleries and fresh new content.

                  Comment

                  • prezzz
                    Confirmed User
                    • Jul 2004
                    • 959

                    #10
                    Haha. Oh damn, and I know something's wrong about that file and just couldn't say what was that. Good eye, tyler. And apparently I need to get some more coffee

                    TEMPLATEHYPE.COM - PREMIUM MECHBUNNY TEMPLATES
                    Responsive Mechbunny templates now available - NEAT TUBE - REDDY TUBE

                    Comment

                    • tyler86ed
                      Confirmed User
                      • Jan 2004
                      • 543

                      #11
                      Originally posted by prezzz
                      Haha. Oh damn, and I know something's wrong about that file and just couldn't say what was that. Good eye, tyler. And apparently I need to get some more coffee

                      Check out all our new fresh FETISH sites, Tons of hosted galleries and fresh new content.

                      Comment

                      • Jimmie
                        Confirmed User
                        • Dec 2003
                        • 872

                        #12
                        Originally posted by tyler86ed
                        Well if thats an external css take out the html <style> tags. You can't use HTML in a .CSS file

                        That would work if it was an internal CSS.

                        thanks a ton, u fixed the problems... im a CSS newbie, and didnt realize it didnt need them if it was an off site CSS file.
                        Livin' Fat Cause I Aint On Speed....

                        Comment

                        • tyler86ed
                          Confirmed User
                          • Jan 2004
                          • 543

                          #13
                          Originally posted by Jimmie
                          thanks a ton, u fixed the problems... im a CSS newbie, and didnt realize it didnt need them if it was an off site CSS file.
                          No Problem. Now its time for all CSS layout

                          Check out all our new fresh FETISH sites, Tons of hosted galleries and fresh new content.

                          Comment

                          • felipeav
                            Confirmed User
                            • Jan 2005
                            • 423

                            #14
                            I don't know why, but my firefox got very slow to open the pages recently ... and it doesn't seem to be a spyware/virus

                            Promote our sites at SpiderDollars.com

                            Comment

                            • Jimmie
                              Confirmed User
                              • Dec 2003
                              • 872

                              #15
                              Originally posted by tyler86ed
                              No Problem. Now its time for all CSS layout
                              I have no idea how to do that......
                              Livin' Fat Cause I Aint On Speed....

                              Comment

                              • Jimmie
                                Confirmed User
                                • Dec 2003
                                • 872

                                #16
                                maybe we can get together on ICQ or AIM and let you look at my site... and maybe show me the way, as far as where to learn that info
                                Livin' Fat Cause I Aint On Speed....

                                Comment

                                Working...