Posted by Beauregard T. Shagnasty on 01/25/08 18:50
iamdave wrote:
[Please do not top post.]
> Sorry, I've created the css sty;e sheets but now I want to add
> content. Using dw I linked to the external sheets but I'm lost at how
> to use them on a new page.
You've already shown you know how to attach the style sheets to your
page. What is in them? Post a URL.
> For instance, if I wanted HEADER LOG GOES HERE in the box that the
> header css sheet would apply to, how do I do that? I've div tags and
> I'm assuming there's basic code I'm missing on how to start/stop the
> css sheet I think.
I think .. well .. you need to step away from Dreamweaver and learn more
about how web pages are constructed. Trying to explain this in a Usenet
post would be somewhat difficult. Not dissimilar to teaching you to
drive a car when you've never been behind a steering wheel before.
Have a look 'round here: http://htmldog.com/
<body>
<div id="header">
<h1>HEADER LOG GOES HERE</h1>
</div>
...etc
...and in the CSS:
#header {
font-size: 150%;
text-align: center;
}
--
-bts
-Friends don't let friends drive Vista
[Back to original message]
|