Creating website working with tables

Thank you for your time and patience appreciate it. For some reason the first codes go gave me no longer work the colour has gone from the upper nav bar it’s no longer blue not your fault most ly mine. I will keep away from it for couple days then get back to it.

Helen

If you mess up the code playing with it, you can always come back here and get the working version again.

Why is it your code work ok when I view the demo from here but when I paste it into my dreamweaver it’s not the same. Could you please tell me where I should paste the code to the Head, Body or HTML part I’ve got a feeling that’s where I am going wrong. :((((

One thing i’ve been learning is box shadow I’ve managed to get what I want with this code.


<!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”>
<head>
<style type-“text/css”>
#shadow
{
width:980px;
height:760px;
-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.4);
-moz-box-shadow: 0px 0px 10px rgba(0,0,0,0.4);
box-shadow: 0px 0px 10px rgba(0,0,0,0.4);
}
</style>
</head>
<body>
<div id=“shadow”><p>Shadowed Box<p></div>
</body>
</html>


Not brilliant but I thought I share should someone else need the box shadow thingy.

Thanks

helen

[FONT=Verdana]Basically, everything that is page content goes in the <body> section. The only things that go in the <head> are meta data, links to stylesheets or other resources - the kind of stuff that your page needs to run but which isn’t for display.

Your basic page structure should be

<html>
<head></head>
<body></body>
</html>

Does that help?[/FONT]