Quick CSS question please

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • alexg
    IL4L.com
    • Aug 2003
    • 11287

    #1

    Quick CSS question please

    I want to insert a css line to define the default font which will be used in the body of the html page. here's what i do:

    body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #000000

    }

    well it's not working

    am i doing something wrong?
    Last edited by alexg; 06-05-2004, 12:23 PM.

    Find fuck buddies in your area!

  • alexg
    IL4L.com
    • Aug 2003
    • 11287

    #2
    gfy messed up the code a bit

    could you just let me know how to get it right?

    Find fuck buddies in your area!

    Comment

    • dirtysouth
      Confirmed User
      • Jul 2003
      • 2613

      #3
      try a semi-colon after the color tag.

      color: #000000;

      }
      no sig

      Comment

      • Doctor Dre
        Too lazy to set a custom title
        • Jan 2001
        • 51692

        #4
        You are lucky if 10 people on GFY know what CSS is ... lol ...
        Originally posted by rayadp05
        I rebooted, deleted temp files, history, cookies and everything...still cannot view the news clip. All I see is that fucking gay ass music video from "Rick Roll". Anyone else have a different link to the news clip?

        Comment

        • RightHandMan
          Confirmed User
          • Jul 2003
          • 1694

          #5
          Originally posted by Doctor Dre
          You are lucky if 10 people on GFY know what CSS is ... lol ...


          If you like you can paypal me 10$ and ill fix it for ya....

          The semicolon should work

          Comment

          • alexg
            IL4L.com
            • Aug 2003
            • 11287

            #6
            Originally posted by dirtysouth
            try a semi-colon after the color tag.

            color: #000000;

            }
            I added it but it still doesn't work

            Find fuck buddies in your area!

            Comment

            • MiSsBeHeaDReSs
              Confirmed User
              • May 2004
              • 534

              #7
              ICQ me~I can help you
              Why geeks like computers: unzip, strip, touch, finger, grep, mount, fsck, ram, more, yes,fsck,fsck,fsck,umount, sleep.

              Comment

              • Holly
                Too lazy to set a custom title
                • Jun 2003
                • 10017

                #8
                Are you doing embedded or external? Embedded will override external. Do you have any other css stuck in there?

                Try this and see what happens:

                <html>
                <haed>

                <style type="text/css">
                BODY
                [
                font-family: Arial, Helvetica, sans-serif;
                font-size: 16px;
                color: #000000;
                }
                </style>

                </head>

                <body>

                body stuff here



                change that [ after body to the opposite of this }
                spell head right
                Last edited by Holly; 06-05-2004, 01:09 PM.
                War National Damn Champions Eagle

                Comment

                • alexg
                  IL4L.com
                  • Aug 2003
                  • 11287

                  #9
                  i'm using an external css file

                  no other css in my head tag other than the link to the css file...

                  Find fuck buddies in your area!

                  Comment

                  Working...