CSS - Need Some Xtra Eyes

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default CSS - Need Some Xtra Eyes

    My background color isn't showing in my "content" div. I'm sure it's a
    mis-key, but I'm just not seeing it.

    code is posted here at [url]http://priiva.net/dev/perusich/index.html[/url]

    CSS is here:
    ..content {color: #003366;
    background-color: #FFFFFF;
    border: 1px solid #660000;}

    body {font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px;
    background-color: #9B9B64;
    margin: 0px;
    padding: 0px;}

    p {text-align: left;}
    a { color: 355295;
    text-decoration: none;}



    HTML is here:


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>flash-index</title>
    </head>
    <body bgcolor="#9b9b64">
    <p>&nbsp;</p>
    <div class="content">
    <p align="center"><img src="img-spring-body-red-small.jpg" width="215"
    height="150" /></p>
    <p>Welcome to Perusich Chiropractic. We are currently redesigning our
    website to serve you better. Please check back next week for new
    updates!</p>
    <p>Sections being recreated:</p>
    <ul>
    <li>Complete site redesign</li>
    <li>Dynamic news section</li>
    <li>Updated services information</li>
    <li>Updated insurance &amp; forms information</li>
    <li>Staff bios</li>
    <li>Flash animation</li>
    </ul>
    <p>If you have any further questions or comments, please feel free to
    contact us.</p>
    </div>
    <div>&nbsp;</div>
    </body>
    </html>


    Thanks

    Jon


    Jon Parkhurst Guest

  2. Similar Questions and Discussions

    1. 2nd set of eyes please
      This is not a complicated piece of code, but I can't seem to figure out why I keep getting this error. Context validation error for tag cfif....
    2. Xtra Xtra Xtra User required to download Xtra
      Hi there, this is ghostie* from Berlin, Germany. I am using the Animated Gif Xtra in Shockwave. All tests on my Desktop CPU were successfully...
    3. CRT or LCD / TFT - which one is best for eyes ?
      I still have concerns about the actual radiation levels coming off CRT's. I don't know if it's my middle age, genes or the CRT accelerating my road...
    4. Natural looking eyes?
      I'm having a problem with fixing the red eye (actually WHITE eye) on my pictures. How can I get natural looking eyes when the people have bright...
    5. red eyes fixing
      how can i do, or use. to fix the red eyes in some pictures that i have. i haft to use a filter??, or what can i do. Thanx fo the help
  3. #2

    Default Re: CSS - Need Some Xtra Eyes

    Jon,

    No style sheet linked to the page ???



    --
    Regards,
    ...Trent Pastrana
    [url]www.fourlevel.com[/url]



    "Jon Parkhurst" <crash@bcdcdigital.com> wrote in message
    news:dih0kf$7c8$1@forums.macromedia.com...
    > My background color isn't showing in my "content" div. I'm sure it's a
    > mis-key, but I'm just not seeing it.
    >
    > code is posted here at [url]http://priiva.net/dev/perusich/index.html[/url]
    >
    > CSS is here:
    > .content {color: #003366;
    > background-color: #FFFFFF;
    > border: 1px solid #660000;}
    >
    > body {font-family: Verdana, Arial, Helvetica, sans-serif;
    > font-size: 14px;
    > background-color: #9B9B64;
    > margin: 0px;
    > padding: 0px;}
    >
    > p {text-align: left;}
    > a { color: 355295;
    > text-decoration: none;}
    >
    >
    >
    > HTML is here:
    >
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    > <title>flash-index</title>
    > </head>
    > <body bgcolor="#9b9b64">
    > <p>&nbsp;</p>
    > <div class="content">
    > <p align="center"><img src="img-spring-body-red-small.jpg" width="215"
    > height="150" /></p>
    > <p>Welcome to Perusich Chiropractic. We are currently redesigning our
    > website to serve you better. Please check back next week for new
    > updates!</p>
    > <p>Sections being recreated:</p>
    > <ul>
    > <li>Complete site redesign</li>
    > <li>Dynamic news section</li>
    > <li>Updated services information</li>
    > <li>Updated insurance &amp; forms information</li>
    > <li>Staff bios</li>
    > <li>Flash animation</li>
    > </ul>
    > <p>If you have any further questions or comments, please feel free to
    > contact us.</p>
    > </div>
    > <div>&nbsp;</div>
    > </body>
    > </html>
    >
    >
    > Thanks
    >
    > Jon
    >

    T.Pastrana - 4Level Guest

  4. #3

    Default Re: CSS - Need Some Xtra Eyes

    It's because you didn't do any of the following:

    -include the CSS in your style section
    -include a link to your stylesheet.css
    -import your stylesheet.css

    (pick one method)

    I got a bug up my butt and tried a few things just out of curiosity:

    I assume this is what you inteded...
    [url]www.boxnetworks.net/backbone/index.htm[/url]

    white background (#FFFFFF) in your .content div?

    If so, include the following in your head section:
    <!--
    .content {
    background-color: #FFFFFF;
    color: #003366;
    }
    -->
    </style>

    ps...#9b9b64 isnt a web-safe color.
    [url]http://www.webdevelopersjournal.com/articles/websafe1/websafe_colors.html[/url]

    Hope that helps...

    -Steve





    DW_Steve Guest

  5. #4

    Default Re: CSS - Need Some Xtra Eyes

    Thanks Trent! Very strange. I setup the page and sheet just as I always do.
    I'm not sure how/when I lost the stylesheet, or why it looks ok in DW.

    Thanks again,

    Jon

    "T.Pastrana - 4Level" <aaaa@aaaa.com> wrote in message
    news:dih3ce$b66$1@forums.macromedia.com...
    > Jon,
    >
    > No style sheet linked to the page ???

    Jon Parkhurst Guest

  6. #5

    Default Re: CSS - Need Some Xtra Eyes

    Thanks Steve!

    Pretty wierd, it was all auto-made w/ DW. I rarely even glimpse at header
    any more. Thanks for catching my obvious foul-up!

    Jon


    "DW_Steve" <webforumsuser@macromedia.com> wrote in message
    news:dih4j8$csj$1@forums.macromedia.com...
    > It's because you didn't do any of the following:
    >
    > -include the CSS in your style section
    > -include a link to your stylesheet.css
    > -import your stylesheet.css
    >
    > (pick one method)
    >
    > I got a bug up my butt and tried a few things just out of curiosity:
    >
    > I assume this is what you inteded...
    > [url]www.boxnetworks.net/backbone/index.htm[/url]
    >
    > white background (#FFFFFF) in your .content div?
    >
    > If so, include the following in your head section:
    > <!--
    > .content {
    > background-color: #FFFFFF;
    > color: #003366;
    > }
    > -->
    > </style>
    >
    > ps...#9b9b64 isnt a web-safe color.
    > [url]http://www.webdevelopersjournal.com/articles/websafe1/websafe_colors.html[/url]
    >
    > Hope that helps...
    >
    > -Steve
    >
    >
    >
    >
    >

    Jon Parkhurst Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139