PC Review


Reply
Thread Tools Rate Thread

CSS style sheet template

 
 
=?Utf-8?B?TWFnbmV0b3JhbQ==?=
Guest
Posts: n/a
 
      15th Apr 2006
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?
 
Reply With Quote
 
 
 
 
Murray
Guest
Posts: n/a
 
      15th Apr 2006
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.

--
Murray
--------------
MVP FrontPage


"Magnetoram" <(E-Mail Removed)> wrote in message
news:41929B80-67A0-41C6-B6A5-(E-Mail Removed)...
>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?



 
Reply With Quote
 
=?Utf-8?B?TWFnbmV0b3JhbQ==?=
Guest
Posts: n/a
 
      15th Apr 2006
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?

"Murray" wrote:

> 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.
>
> --
> Murray
> --------------
> MVP FrontPage
>
>
> "Magnetoram" <(E-Mail Removed)> wrote in message
> news:41929B80-67A0-41C6-B6A5-(E-Mail Removed)...
> >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?

>
>
>

 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      15th Apr 2006
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>

--
Murray
--------------
MVP FrontPage


"Magnetoram" <(E-Mail Removed)> wrote in message
news:E3F8E63F-21C6-412F-884E-(E-Mail Removed)...
> 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?
>
> "Murray" wrote:
>
>> 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.
>>
>> --
>> Murray
>> --------------
>> MVP FrontPage
>>
>>
>> "Magnetoram" <(E-Mail Removed)> wrote in message
>> news:41929B80-67A0-41C6-B6A5-(E-Mail Removed)...
>> >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?

>>
>>
>>



 
Reply With Quote
 
=?Utf-8?B?TWFnbmV0b3JhbQ==?=
Guest
Posts: n/a
 
      15th Apr 2006
Thanks murray, looks like it worked.
I have a long night ahead of caffeine...................................

"Murray" wrote:

> 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>
>
> --
> Murray
> --------------
> MVP FrontPage
>
>
> "Magnetoram" <(E-Mail Removed)> wrote in message
> news:E3F8E63F-21C6-412F-884E-(E-Mail Removed)...
> > 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?
> >
> > "Murray" wrote:
> >
> >> 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.
> >>
> >> --
> >> Murray
> >> --------------
> >> MVP FrontPage
> >>
> >>
> >> "Magnetoram" <(E-Mail Removed)> wrote in message
> >> news:41929B80-67A0-41C6-B6A5-(E-Mail Removed)...
> >> >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?
> >>
> >>
> >>

>
>
>

 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      15th Apr 2006
Good luck!

--
Murray
--------------
MVP FrontPage


"Magnetoram" <(E-Mail Removed)> wrote in message
news:09988B45-0121-433B-BEC3-(E-Mail Removed)...
> Thanks murray, looks like it worked.
> I have a long night ahead of caffeine...................................
>
> "Murray" wrote:
>
>> 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>
>>
>> --
>> Murray
>> --------------
>> MVP FrontPage
>>
>>
>> "Magnetoram" <(E-Mail Removed)> wrote in message
>> news:E3F8E63F-21C6-412F-884E-(E-Mail Removed)...
>> > 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?
>> >
>> > "Murray" wrote:
>> >
>> >> 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.
>> >>
>> >> --
>> >> Murray
>> >> --------------
>> >> MVP FrontPage
>> >>
>> >>
>> >> "Magnetoram" <(E-Mail Removed)> wrote in message
>> >> news:41929B80-67A0-41C6-B6A5-(E-Mail Removed)...
>> >> >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?
>> >>
>> >>
>> >>

>>
>>
>>



 
Reply With Quote
 
=?Utf-8?B?TWFnbmV0b3JhbQ==?=
Guest
Posts: n/a
 
      15th Apr 2006
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">


"Magnetoram" wrote:

> Thanks murray, looks like it worked.
> I have a long night ahead of caffeine...................................
>
> "Murray" wrote:
>
> > 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>
> >
> > --
> > Murray
> > --------------
> > MVP FrontPage
> >
> >
> > "Magnetoram" <(E-Mail Removed)> wrote in message
> > news:E3F8E63F-21C6-412F-884E-(E-Mail Removed)...
> > > 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?
> > >
> > > "Murray" wrote:
> > >
> > >> 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.
> > >>
> > >> --
> > >> Murray
> > >> --------------
> > >> MVP FrontPage
> > >>
> > >>
> > >> "Magnetoram" <(E-Mail Removed)> wrote in message
> > >> news:41929B80-67A0-41C6-B6A5-(E-Mail Removed)...
> > >> >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?
> > >>
> > >>
> > >>

> >
> >
> >

 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      15th Apr 2006
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....

--
Murray
--------------
MVP FrontPage


"Magnetoram" <(E-Mail Removed)> wrote in message
news:BECC0636-1B7D-42EF-A048-(E-Mail Removed)...
> 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">
>
>
> "Magnetoram" wrote:
>
>> Thanks murray, looks like it worked.
>> I have a long night ahead of caffeine...................................
>>
>> "Murray" wrote:
>>
>> > 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>
>> >
>> > --
>> > Murray
>> > --------------
>> > MVP FrontPage
>> >
>> >
>> > "Magnetoram" <(E-Mail Removed)> wrote in message
>> > news:E3F8E63F-21C6-412F-884E-(E-Mail Removed)...
>> > > 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?
>> > >
>> > > "Murray" wrote:
>> > >
>> > >> 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.
>> > >>
>> > >> --
>> > >> Murray
>> > >> --------------
>> > >> MVP FrontPage
>> > >>
>> > >>
>> > >> "Magnetoram" <(E-Mail Removed)> wrote in message
>> > >> news:41929B80-67A0-41C6-B6A5-(E-Mail Removed)...
>> > >> >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?
>> > >>
>> > >>
>> > >>
>> >
>> >
>> >



 
Reply With Quote
 
=?Utf-8?B?TWFnbmV0b3JhbQ==?=
Guest
Posts: n/a
 
      16th Apr 2006
Thank You, I will try again.

"Murray" wrote:

> 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....
>
> --
> Murray
> --------------
> MVP FrontPage
>
>
> "Magnetoram" <(E-Mail Removed)> wrote in message
> news:BECC0636-1B7D-42EF-A048-(E-Mail Removed)...
> > 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">
> >
> >
> > "Magnetoram" wrote:
> >
> >> Thanks murray, looks like it worked.
> >> I have a long night ahead of caffeine...................................
> >>
> >> "Murray" wrote:
> >>
> >> > 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>
> >> >
> >> > --
> >> > Murray
> >> > --------------
> >> > MVP FrontPage
> >> >
> >> >
> >> > "Magnetoram" <(E-Mail Removed)> wrote in message
> >> > news:E3F8E63F-21C6-412F-884E-(E-Mail Removed)...
> >> > > 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?
> >> > >
> >> > > "Murray" wrote:
> >> > >
> >> > >> 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.
> >> > >>
> >> > >> --
> >> > >> Murray
> >> > >> --------------
> >> > >> MVP FrontPage
> >> > >>
> >> > >>
> >> > >> "Magnetoram" <(E-Mail Removed)> wrote in message
> >> > >> news:41929B80-67A0-41C6-B6A5-(E-Mail Removed)...
> >> > >> >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?
> >> > >>
> >> > >>
> >> > >>
> >> >
> >> >
> >> >

>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Style Sheet template changes Jeannie Microsoft Word Document Management 1 16th May 2009 12:26 AM
difference between style, style sheet, page properties, for background picture nic34@greenxyz.com Microsoft Frontpage 2 22nd Apr 2007 12:26 AM
Is it possible to import a template or style sheet on an existing =?Utf-8?B?bGVpbmFk?= Microsoft Word Document Management 1 23rd May 2006 09:20 AM
style sheet/ template compatible with Word 2000 and 2003 =?Utf-8?B?TWFyaWE=?= Microsoft Word Document Management 5 13th Apr 2006 11:18 PM
Dynamic Web Template and Linked CSS Style Sheet =?Utf-8?B?RXh0cmFQaWxvdA==?= Microsoft Frontpage 2 14th Sep 2005 05:53 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:08 AM.