CSS style sheet template

G

Guest

I have mad a DWT template and used layout tables and cells. I have editable
regions . I added logos banner and bqacgroung color for the cells. I want to
add a CSS sheet that is using just Verdana text for headers and paragrapgh. I
do not want the tables and cells I already have to be affected. I want the
text black only. Does anyone know of one that I could easily change maybe th
font ifneed be?
 
M

Murray

h1, h2, h3, h4, h5, p { font-family:verdana, arial, helvetica,
sans-serif;color:#000; }

This will affect any heading content or paragraph content that is inside
table cells, though.
 
G

Guest

Thank You for your post.
That is ok. Do I copy that onto the normal css template that comes with FP
and save it as my css?
 
M

Murray

Could do it that way, or you could embed it in the head of the page, e.g.,


<style type="text/css">
<!--
h1, h2, h3, h4, h5, p {
font-family:verdana, arial, helvetica, sans-serif;color:#000;
}
-->
</style>
</head>
 
G

Guest

Thanks murray, looks like it worked.
I have a long night ahead of caffeine...................................
 
G

Guest

Does this look right?
It is the first few lines of the template.dwt page.

<html>


</head>
<style type="text/css">
<!--
h1, h2, h3, h4, h5, p {
font-family:verdana, arial, helvetica, sans-serif;color:#000;
}
-->
</style>


<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
 
M

Murray

No, definitely not.

<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
....
<style type="text/css">
<!--
h1, h2, h3, h4, h5, p {
font-family:verdana, arial, helvetica, sans-serif;color:#000;
}
-->
</style>
....
</head>
<body>
your page's markup
</body>
</html>

This would be more like it - the ellipses represent other content. The body
would contain your template markup....
 
G

Guest

Thank You, I will try again.

Murray said:
No, definitely not.

<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
....
<style type="text/css">
<!--
h1, h2, h3, h4, h5, p {
font-family:verdana, arial, helvetica, sans-serif;color:#000;
}
-->
</style>
....
</head>
<body>
your page's markup
</body>
</html>

This would be more like it - the ellipses represent other content. The body
would contain your template markup....
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top