PC Review


Reply
Thread Tools Rate Thread

Is this code put in the right spot?

 
 
=?Utf-8?B?U3VzaWU=?=
Guest
Posts: n/a
 
      21st Apr 2006
Hi, me again, I am getting there, and can't wait to publish. I have been
reading about fonts, I am using all Arial, size 10. I am using tables,
cells, all that stuff. I read that fonts wont cascade in tables, and to use
this code-

This can be placed in the <head> section
e.g.
<head>
...........
<style type="text/css">
body { font-family: arial,helvetica,sans-serif, times new roman;}
</style>
...........
</head>

I am not doing a css style, ( I am just using what Front page gave me)
anyway, heres what I did, is it right? After body style= "body" is blue,
and the rest red?

// -->
</script>
<body style=body, p, td, th, li{
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
}color:"#FFFFFF" text="#FFFFFF" bgcolor="#6A8341"
onload="FP_preloadImgs(/*url*/'images/buttons/button_bh2.gif',/*url*/'images/buttons/button_vg2.gif')">

</head>

Thanks for any help
Susie
 
Reply With Quote
 
 
 
 
Stefan B Rusynko
Guest
Posts: n/a
 
      21st Apr 2006
Remove the style from your body tag
style=body, p, td, th, li{ font-family: Arial, Helvetica, sans-serif; font-size: 13px; }

Edit the style in the head section

<style type="text/css">
body, p, td, th, li { font-family: arial, helvetica, sans-serif;}
</style>
</head>
<body color:"#FFFFFF" text="#FFFFFF" bgcolor="#6A8341"
onload="FP_preloadImgs(/*url*/'images/buttons/button_bh2.gif',/*url*/'images/buttons/button_vg2.gif')">

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPa...3/Default.aspx
_____________________________________________


"Susie" <(E-Mail Removed)> wrote in message news:30E50133-D609-49C9-8C2C-(E-Mail Removed)...
| Hi, me again, I am getting there, and can't wait to publish. I have been
| reading about fonts, I am using all Arial, size 10. I am using tables,
| cells, all that stuff. I read that fonts wont cascade in tables, and to use
| this code-
|
| This can be placed in the <head> section
| e.g.
| <head>
| ..........
| <style type="text/css">
| body { font-family: arial,helvetica,sans-serif, times new roman;}
| </style>
| ..........
| </head>
|
| I am not doing a css style, ( I am just using what Front page gave me)
| anyway, heres what I did, is it right? After body style= "body" is blue,
| and the rest red?
|
| // -->
| </script>
| <body style=body, p, td, th, li{
| font-family: Arial, Helvetica, sans-serif;
| font-size: 13px;
| }color:"#FFFFFF" text="#FFFFFF" bgcolor="#6A8341"
| onload="FP_preloadImgs(/*url*/'images/buttons/button_bh2.gif',/*url*/'images/buttons/button_vg2.gif')">
|
| </head>
|
| Thanks for any help
| Susie


 
Reply With Quote
 
Ronx
Guest
Posts: n/a
 
      21st Apr 2006
Try this:

<style type="text/css>
body, p, td, th, li{
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
color: #FFFFFF;
background-color: #6A8341;
}
</style>
</head>

<body
onload="FP_preloadImgs(/*url*/'images/buttons/button_bh2.gif',/*url*/'images/buttons/button_vg2.gif')">


Do not place </head> after the <body tag.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
FrontPage Support: http://www.frontpagemvps.com/

"Susie" <(E-Mail Removed)> wrote in message
news:30E50133-D609-49C9-8C2C-(E-Mail Removed)...
> Hi, me again, I am getting there, and can't wait to publish. I have
> been
> reading about fonts, I am using all Arial, size 10. I am using
> tables,
> cells, all that stuff. I read that fonts wont cascade in tables,
> and to use
> this code-
>
> This can be placed in the <head> section
> e.g.
> <head>
> ..........
> <style type="text/css">
> body { font-family: arial,helvetica,sans-serif, times new roman;}
> </style>
> ..........
> </head>
>
> I am not doing a css style, ( I am just using what Front page gave
> me)
> anyway, heres what I did, is it right? After body style= "body" is
> blue,
> and the rest red?
>
> // -->
> </script>
> <body style=body, p, td, th, li{
> font-family: Arial, Helvetica, sans-serif;
> font-size: 13px;
> }color:"#FFFFFF" text="#FFFFFF" bgcolor="#6A8341"
> onload="FP_preloadImgs(/*url*/'images/buttons/button_bh2.gif',/*url*/'images/buttons/button_vg2.gif')">
>
> </head>
>
> Thanks for any help
> Susie



 
Reply With Quote
 
Kevin Spencer
Guest
Posts: n/a
 
      21st Apr 2006
You can also use the Universal Selector:

<style type="text/css>
*{ font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
color: #FFFFFF;
background-color: #6A8341;
}
</style>

The Universal Selector (*) matches any element in the document tree.

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Hard work is a medication for which
there is no placebo.

"Ronx" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Try this:
>
> <style type="text/css>
> body, p, td, th, li{
> font-family: Arial, Helvetica, sans-serif;
> font-size: 13px;
> color: #FFFFFF;
> background-color: #6A8341;
> }
> </style>
> </head>
>
> <body
> onload="FP_preloadImgs(/*url*/'images/buttons/button_bh2.gif',/*url*/'images/buttons/button_vg2.gif')">
>
>
> Do not place </head> after the <body tag.
> --
> Ron Symonds - Microsoft MVP (FrontPage)
> Reply only to group - emails will be deleted unread.
> FrontPage Support: http://www.frontpagemvps.com/
>
> "Susie" <(E-Mail Removed)> wrote in message
> news:30E50133-D609-49C9-8C2C-(E-Mail Removed)...
>> Hi, me again, I am getting there, and can't wait to publish. I have been
>> reading about fonts, I am using all Arial, size 10. I am using tables,
>> cells, all that stuff. I read that fonts wont cascade in tables, and to
>> use
>> this code-
>>
>> This can be placed in the <head> section
>> e.g.
>> <head>
>> ..........
>> <style type="text/css">
>> body { font-family: arial,helvetica,sans-serif, times new roman;}
>> </style>
>> ..........
>> </head>
>>
>> I am not doing a css style, ( I am just using what Front page gave me)
>> anyway, heres what I did, is it right? After body style= "body" is
>> blue,
>> and the rest red?
>>
>> // -->
>> </script>
>> <body style=body, p, td, th, li{
>> font-family: Arial, Helvetica, sans-serif;
>> font-size: 13px;
>> }color:"#FFFFFF" text="#FFFFFF" bgcolor="#6A8341"
>> onload="FP_preloadImgs(/*url*/'images/buttons/button_bh2.gif',/*url*/'images/buttons/button_vg2.gif')">
>>
>> </head>
>>
>> Thanks for any help
>> Susie

>
>



 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      21st Apr 2006
And if the page has a valid and complete doctype, you only need this -

body {
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
color: #FFFFFF;
background-color: #6A8341;
}

since that will be properly inherited.


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


"Kevin Spencer" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> You can also use the Universal Selector:
>
> <style type="text/css>
> *{ font-family: Arial, Helvetica, sans-serif;
> font-size: 13px;
> color: #FFFFFF;
> background-color: #6A8341;
> }
> </style>
>
> The Universal Selector (*) matches any element in the document tree.
>
> --
> HTH,
>
> Kevin Spencer
> Microsoft MVP
> Professional Numbskull
>
> Hard work is a medication for which
> there is no placebo.
>
> "Ronx" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Try this:
>>
>> <style type="text/css>
>> body, p, td, th, li{
>> font-family: Arial, Helvetica, sans-serif;
>> font-size: 13px;
>> color: #FFFFFF;
>> background-color: #6A8341;
>> }
>> </style>
>> </head>
>>
>> <body
>> onload="FP_preloadImgs(/*url*/'images/buttons/button_bh2.gif',/*url*/'images/buttons/button_vg2.gif')">
>>
>>
>> Do not place </head> after the <body tag.
>> --
>> Ron Symonds - Microsoft MVP (FrontPage)
>> Reply only to group - emails will be deleted unread.
>> FrontPage Support: http://www.frontpagemvps.com/
>>
>> "Susie" <(E-Mail Removed)> wrote in message
>> news:30E50133-D609-49C9-8C2C-(E-Mail Removed)...
>>> Hi, me again, I am getting there, and can't wait to publish. I have
>>> been
>>> reading about fonts, I am using all Arial, size 10. I am using tables,
>>> cells, all that stuff. I read that fonts wont cascade in tables, and to
>>> use
>>> this code-
>>>
>>> This can be placed in the <head> section
>>> e.g.
>>> <head>
>>> ..........
>>> <style type="text/css">
>>> body { font-family: arial,helvetica,sans-serif, times new roman;}
>>> </style>
>>> ..........
>>> </head>
>>>
>>> I am not doing a css style, ( I am just using what Front page gave me)
>>> anyway, heres what I did, is it right? After body style= "body" is
>>> blue,
>>> and the rest red?
>>>
>>> // -->
>>> </script>
>>> <body style=body, p, td, th, li{
>>> font-family: Arial, Helvetica, sans-serif;
>>> font-size: 13px;
>>> }color:"#FFFFFF" text="#FFFFFF" bgcolor="#6A8341"
>>> onload="FP_preloadImgs(/*url*/'images/buttons/button_bh2.gif',/*url*/'images/buttons/button_vg2.gif')">
>>>
>>> </head>
>>>
>>> Thanks for any help
>>> Susie

>>
>>

>
>



 
Reply With Quote
 
P@tty Ayers
Guest
Posts: n/a
 
      21st Apr 2006

"Murray" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> And if the page has a valid and complete doctype, you only need this -
>
> body {
> font-family: Arial, Helvetica, sans-serif;
> font-size: 13px;
> color: #FFFFFF;
> background-color: #6A8341;
> }
>
> since that will be properly inherited.


I'd do the above, Susie, and congratulations on being willing to get your
hands into the code and learn CSS. :-)


--
Patty Ayers | www.WebDevBiz.com
Free Articles on the Business of Web Development
Web Design Contract, Estimate Request Form, Estimate Worksheet
--


 
Reply With Quote
 
=?Utf-8?B?U3VzaWU=?=
Guest
Posts: n/a
 
      21st Apr 2006
Wow, I was up really late working on this, and slept really late! Ok, this
is wierd, before I went to reply to this I brought up frontpage, and the
page I had put the code in, it had put this, all by itself, I swear!!! Its
above the code I had put in yesterday

// -->
</script>

body {
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
color: #FFFFFF;
background-color: #6A8341;
}

</head>

***Is it right? also, the only thing that worries me is the 13px; I really
need it to be Arial 10 pt, should I keep this where it was placed when I made
my page?

<body style="font-family: Arial; font-size:10pt; color:#FFFFFF"
text="#FFFFFF" bgcolor="#6A8341"
onload="FP_preloadImgs(/*url*/'images/buttons/button_bh2.gif',/*url*/'images/buttons/button_vg2.gif')">

***Or just this?

<body style="color:#FFFFFF" text="#FFFFFF" bgcolor="#6A8341"
onload="FP_preloadImgs(/*url*/'images/buttons/button_bh2.gif',/*url*/'images/buttons/button_vg2.gif')">

***And, do I keep this font stuff before my description in cells and tables?

<font face="Arial" size="2" color="#FFFFFF">Swimming Mermaid</font></b></p>
<p><font face="Arial" size="2" color="#FFFFFF">Redwood</font></p>
<p><font face="Arial" size="2" color="#FFFFFF">approx. 4 ft long</font></p>
<p><font face="Arial" size="2" color="#FFFFFF">Flat on the back

Thank you soooo much for your help:-)
Susie




"P@tty Ayers" wrote:

>
> "Murray" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > And if the page has a valid and complete doctype, you only need this -
> >
> > body {
> > font-family: Arial, Helvetica, sans-serif;
> > font-size: 13px;
> > color: #FFFFFF;
> > background-color: #6A8341;
> > }
> >
> > since that will be properly inherited.

>
> I'd do the above, Susie, and congratulations on being willing to get your
> hands into the code and learn CSS. :-)
>
>
> --
> Patty Ayers | www.WebDevBiz.com
> Free Articles on the Business of Web Development
> Web Design Contract, Estimate Request Form, Estimate Worksheet
> --
>
>
>

 
Reply With Quote
 
=?Utf-8?B?U3VzaWU=?=
Guest
Posts: n/a
 
      21st Apr 2006
wait, I just now previewed my page, it has -
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
color: #FFFFFF;
background-color: #6A8341;

all accross the top of my page, do I not have a valid doctype?

"Susie" wrote:

> Wow, I was up really late working on this, and slept really late! Ok, this
> is wierd, before I went to reply to this I brought up frontpage, and the
> page I had put the code in, it had put this, all by itself, I swear!!! Its
> above the code I had put in yesterday
>
> // -->
> </script>
>
> body {
> font-family: Arial, Helvetica, sans-serif;
> font-size: 13px;
> color: #FFFFFF;
> background-color: #6A8341;
> }
>
> </head>
>
> ***Is it right? also, the only thing that worries me is the 13px; I really
> need it to be Arial 10 pt, should I keep this where it was placed when I made
> my page?
>
> <body style="font-family: Arial; font-size:10pt; color:#FFFFFF"
> text="#FFFFFF" bgcolor="#6A8341"
> onload="FP_preloadImgs(/*url*/'images/buttons/button_bh2.gif',/*url*/'images/buttons/button_vg2.gif')">
>
> ***Or just this?
>
> <body style="color:#FFFFFF" text="#FFFFFF" bgcolor="#6A8341"
> onload="FP_preloadImgs(/*url*/'images/buttons/button_bh2.gif',/*url*/'images/buttons/button_vg2.gif')">
>
> ***And, do I keep this font stuff before my description in cells and tables?
>
> <font face="Arial" size="2" color="#FFFFFF">Swimming Mermaid</font></b></p>
> <p><font face="Arial" size="2" color="#FFFFFF">Redwood</font></p>
> <p><font face="Arial" size="2" color="#FFFFFF">approx. 4 ft long</font></p>
> <p><font face="Arial" size="2" color="#FFFFFF">Flat on the back
>
> Thank you soooo much for your help:-)
> Susie
>
>
>
>
> "P@tty Ayers" wrote:
>
> >
> > "Murray" <(E-Mail Removed)> wrote in message
> > news:(E-Mail Removed)...
> > > And if the page has a valid and complete doctype, you only need this -
> > >
> > > body {
> > > font-family: Arial, Helvetica, sans-serif;
> > > font-size: 13px;
> > > color: #FFFFFF;
> > > background-color: #6A8341;
> > > }
> > >
> > > since that will be properly inherited.

> >
> > I'd do the above, Susie, and congratulations on being willing to get your
> > hands into the code and learn CSS. :-)
> >
> >
> > --
> > Patty Ayers | www.WebDevBiz.com
> > Free Articles on the Business of Web Development
> > Web Design Contract, Estimate Request Form, Estimate Worksheet
> > --
> >
> >
> >

 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      21st Apr 2006
Can you show me the whole page, please?

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


"Susie" <(E-Mail Removed)> wrote in message
news:07D63FD9-30AA-495D-9E8D-(E-Mail Removed)...
> Wow, I was up really late working on this, and slept really late! Ok,
> this
> is wierd, before I went to reply to this I brought up frontpage, and the
> page I had put the code in, it had put this, all by itself, I swear!!!
> Its
> above the code I had put in yesterday
>
> // -->
> </script>
>
> body {
> font-family: Arial, Helvetica, sans-serif;
> font-size: 13px;
> color: #FFFFFF;
> background-color: #6A8341;
> }
>
> </head>
>
> ***Is it right? also, the only thing that worries me is the 13px; I
> really
> need it to be Arial 10 pt, should I keep this where it was placed when I
> made
> my page?
>
> <body style="font-family: Arial; font-size:10pt; color:#FFFFFF"
> text="#FFFFFF" bgcolor="#6A8341"
> onload="FP_preloadImgs(/*url*/'images/buttons/button_bh2.gif',/*url*/'images/buttons/button_vg2.gif')">
>
> ***Or just this?
>
> <body style="color:#FFFFFF" text="#FFFFFF" bgcolor="#6A8341"
> onload="FP_preloadImgs(/*url*/'images/buttons/button_bh2.gif',/*url*/'images/buttons/button_vg2.gif')">
>
> ***And, do I keep this font stuff before my description in cells and
> tables?
>
> <font face="Arial" size="2" color="#FFFFFF">Swimming
> Mermaid</font></b></p>
> <p><font face="Arial" size="2" color="#FFFFFF">Redwood</font></p>
> <p><font face="Arial" size="2" color="#FFFFFF">approx. 4 ft
> long</font></p>
> <p><font face="Arial" size="2" color="#FFFFFF">Flat on the back
>
> Thank you soooo much for your help:-)
> Susie
>
>
>
>
> "P@tty Ayers" wrote:
>
>>
>> "Murray" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>> > And if the page has a valid and complete doctype, you only need this -
>> >
>> > body {
>> > font-family: Arial, Helvetica, sans-serif;
>> > font-size: 13px;
>> > color: #FFFFFF;
>> > background-color: #6A8341;
>> > }
>> >
>> > since that will be properly inherited.

>>
>> I'd do the above, Susie, and congratulations on being willing to get your
>> hands into the code and learn CSS. :-)
>>
>>
>> --
>> Patty Ayers | www.WebDevBiz.com
>> Free Articles on the Business of Web Development
>> Web Design Contract, Estimate Request Form, Estimate Worksheet
>> --
>>
>>
>>



 
Reply With Quote
 
=?Utf-8?B?U3VzaWU=?=
Guest
Posts: n/a
 
      21st Apr 2006
ok, thanks for looking Murray!
<html>

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Cigar Store Indian Sculpture</title>
<script language="JavaScript">
<!--
function FP_swapImg() {//v1.0
var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2;
n<args.length;
n+=2) { elm=FP_getObjectByID(args[n]); if(elm) {
doc.$imgSwaps[doc.$imgSwaps.length]=elm;
elm.$src=elm.src; elm.src=args[n+1]; } }
}

function FP_preloadImgs() {//v1.0
var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();
for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image;
d.FP_imgs[i].src=a[i]; }
}

function FP_getObjectByID(id,o) {//v1.0
var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById)
el=o.getElementById(id);
else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;
if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)
for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }
f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;
for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return
el; } }
return null;
}
// -->
</script>

body {
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
color: #FFFFFF;
background-color: #6A8341;
}

</head>

<body style="font-family: Arial; font-size:10pt; color:#FFFFFF"
text="#FFFFFF" bgcolor="#6A8341"
onload="FP_preloadImgs(/*url*/'file:///C:/Documents%20and%20Settings/Susy/My%20Documents/rlblair.com/images/buttons/button_bh2.gif',/*url*/'file:///C:/Documents%20and%20Settings/Susy/My%20Documents/rlblair.com/images/buttons/button_vg2.gif')">

<div align="center">

<table border="0" width="790" cellspacing="0" cellpadding="0">
<tr>
<th align="left" colspan="3" width="790">
<font color="#FDFDFB">
<img border="0" src="images/web_images/logos/rlblair-g-logo.gif"
width="30" height="35"> </font>
<span style="font-weight: 400">
<font size="5" face="Garamond">R.L. Blair</font>
<p><table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td height="350">
<p align="center">
<img border="0" src="images/web_images/indians/rlblair-indian-cs-log.jpg"
width="300" height="225"></p>
<div align="center">
<table border="0" width="675" cellspacing="0" cellpadding="0">
<tr>
<td>
<p align="center">
<font face="Arial" size="2">
<span style="font-weight: 400">
R.L. is moving the log
into place for the Cigar Store Indian he's going to carve.</font></td>
</tr>
</table>
</div>
<p align="center"></td>
</tr>
</table>
</span>
</th>
</tr>
<tr>
<td align="left" width="300" valign="top" height="690">
<img border="0"
src="images/web_images/indians/rlblair-indian-cs-store.jpg" width="250"
height="615" align="right"><p></td>
<td align="left" width="100"></td>
<td align="left" width="340" valign="top"><p>
<b>
<font size="2" face="Arial">Cigar Store Indian Sculpture</font></b></p>
<p><font face="Arial" size="2">Redwood</font></p>
<p><font face="Arial" size="2">Life Size</font><p><table border="0"
width="100%" cellspacing="0" cellpadding="0">
<tr>
<td>
<img border="0"
src="images/web_images/indians/rlblair-indian-cs-faceside.jpg" width="304"
height="368"><table border="0" width="320" cellspacing="0" cellpadding="5">
<tr>
<td><font face="Arial" size="2">The detail of the Indians headdress and
Bear claw necklace,
all carved in and painted Indian red, turquoise, brown, beige
and black.</font></td>
</tr>
</table>
</td>
</tr>
</table>
<p></td>
</tr>
<tr>
<td align="right" width="300" valign="top">
<img border="0"
src="images/web_images/indians/rlblair-indian-cs-cigars.jpg" width="267"
height="400"><div align="right">
<table border="0" width="267" cellspacing="0" cellpadding="5">
<tr>
<td width="257"><font size="2" face="Arial">Notice the detail on the
Indians hand holding the Cigars.
The Bear claw necklace, red sash and the fringe on his carved leather
shirt.</font><p> </td>
</tr>
</table>
</div>
<p></p>
<img border="0" src="images/web_images/indians/rlblair-indian-cs-moc.jpg"
width="274" height="169">
<table border="0" width="270" cellspacing="0" cellpadding="5">
<tr>
<td width="270" valign="top"><font size="2" face="Arial">The Indians
moccasins are carved with a checkered
pattern and painted with red, white, and black.</font></td>
</tr>
</table>
<p></td>
<td align="left" width="10"></td>
<td align="left" width="340" valign="top">
<img border="0"
src="images/web_images/indians/rlblair-indian-cs-leaves.jpg" width="274"
height="299"><table border="0" width="275" cellspacing="0" cellpadding="5">
<tr>
<td><font size="2" face="Arial">The
Indians hand holding two Tobacco leaves.</font><p></td>
</tr>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td>
<img border="0"
src="images/web_images/indians/rlblair-indian-cs-facefront.jpg" width="304"
height="404"><table border="0" width="310" cellspacing="0" cellpadding="5">
<tr>
<td><font size="2" face="Arial">Except for the areas on the Indian that
have been painted for effect,
the rest of the wood carving is left natural redwood showing off the beauty
of the wood.</font><p> </td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>

</div>

<div align="center">

<table border="0" width="790" cellspacing="0" cellpadding="0">
<tr>
<td>
<p align="center"><b><font face="Arial" size="2">Click <a
href="indian_sculpture_page_2.htm">here</a>
to view the Santa Fe Indian</font></b> </p>
<p align="center"><font size="3"><a href="index.htm">
<img border="0" id="img13" src="images/buttons/button_bh1.gif" height="20"
width="115" alt="Back to Home"
onmousedown="FP_swapImg(1,0,/*id*/'img13',/*url*/'images/buttons/button_bh2.gif')"
onmouseup="FP_swapImg(0,0,/*id*/'img13',/*url*/'images/buttons/button_bh1.gif')"
fp-style="fp-btn: Simple Text 1; fp-font: Times New Roman; fp-font-size: 12;
fp-font-color-normal: #030303; fp-font-color-hover: #FFFFFF;
fp-font-color-press: #FFFFFF; fp-img-hover: 0; fp-transparent: 1;
fp-proportional: 0; fp-orig: 0" fp-title="Back to Home"></a>
<a href="gallery.htm">
<img border="0" id="img14" src="images/buttons/button_vg1.gif" height="20"
width="110" alt="View Gallery"
onmousedown="FP_swapImg(1,0,/*id*/'img14',/*url*/'images/buttons/button_vg2.gif')"
onmouseup="FP_swapImg(0,0,/*id*/'img14',/*url*/'images/buttons/button_vg1.gif')"
fp-style="fp-btn: Simple Text 1; fp-font: Times New Roman; fp-font-size: 12;
fp-font-color-normal: #030303; fp-font-color-hover: #FFFFFF;
fp-font-color-press: #FFFFFF; fp-img-hover: 0; fp-transparent: 1;
fp-proportional: 0; fp-orig: 0" fp-title="View Gallery"></a></font></p>
<p align="center"><font size="2" color="#000000" face="Arial">© 2006
R.L. Blair</font></p>
<p align="center"> </td>
</tr>
</table>

</div>

</body>

</html>



"Murray" wrote:

> Can you show me the whole page, please?
>
> --
> Murray
> --------------
> MVP FrontPage
>
>
> "Susie" <(E-Mail Removed)> wrote in message
> news:07D63FD9-30AA-495D-9E8D-(E-Mail Removed)...
> > Wow, I was up really late working on this, and slept really late! Ok,
> > this
> > is wierd, before I went to reply to this I brought up frontpage, and the
> > page I had put the code in, it had put this, all by itself, I swear!!!
> > Its
> > above the code I had put in yesterday
> >
> > // -->
> > </script>
> >
> > body {
> > font-family: Arial, Helvetica, sans-serif;
> > font-size: 13px;
> > color: #FFFFFF;
> > background-color: #6A8341;
> > }
> >
> > </head>
> >
> > ***Is it right? also, the only thing that worries me is the 13px; I
> > really
> > need it to be Arial 10 pt, should I keep this where it was placed when I
> > made
> > my page?
> >
> > <body style="font-family: Arial; font-size:10pt; color:#FFFFFF"
> > text="#FFFFFF" bgcolor="#6A8341"
> > onload="FP_preloadImgs(/*url*/'images/buttons/button_bh2.gif',/*url*/'images/buttons/button_vg2.gif')">
> >
> > ***Or just this?
> >
> > <body style="color:#FFFFFF" text="#FFFFFF" bgcolor="#6A8341"
> > onload="FP_preloadImgs(/*url*/'images/buttons/button_bh2.gif',/*url*/'images/buttons/button_vg2.gif')">
> >
> > ***And, do I keep this font stuff before my description in cells and
> > tables?
> >
> > <font face="Arial" size="2" color="#FFFFFF">Swimming
> > Mermaid</font></b></p>
> > <p><font face="Arial" size="2" color="#FFFFFF">Redwood</font></p>
> > <p><font face="Arial" size="2" color="#FFFFFF">approx. 4 ft
> > long</font></p>
> > <p><font face="Arial" size="2" color="#FFFFFF">Flat on the back
> >
> > Thank you soooo much for your help:-)
> > Susie
> >
> >
> >
> >
> > "P@tty Ayers" wrote:
> >
> >>
> >> "Murray" <(E-Mail Removed)> wrote in message
> >> news:(E-Mail Removed)...
> >> > And if the page has a valid and complete doctype, you only need this -
> >> >
> >> > body {
> >> > font-family: Arial, Helvetica, sans-serif;
> >> > font-size: 13px;
> >> > color: #FFFFFF;
> >> > background-color: #6A8341;
> >> > }
> >> >
> >> > since that will be properly inherited.
> >>
> >> I'd do the above, Susie, and congratulations on being willing to get your
> >> hands into the code and learn CSS. :-)
> >>
> >>
> >> --
> >> Patty Ayers | www.WebDevBiz.com
> >> Free Articles on the Business of Web Development
> >> Web Design Contract, Estimate Request Form, Estimate Worksheet
> >> --
> >>
> >>
> >>

>
>
>

 
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
Moving 80 gigs from one spot on a USB drive to another spot on the same drivee mm Storage Devices 24 5th Dec 2010 01:18 AM
Moving 80 gigs from one spot on a USB drive to another spot on the same drivee mm Storage Devices 6 14th Oct 2010 08:52 AM
Troubleshoot code - Spot deliberate mistake =?Utf-8?B?TGlzYQ==?= Microsoft Access VBA Modules 1 11th Apr 2005 05:27 PM
I want a name in one spot and it's code in another =?Utf-8?B?VHdvV2hlZWxEZW1vbg==?= Microsoft Excel Misc 1 17th Mar 2005 04:31 PM
Help Spot Bob Windows XP Performance 2 27th Oct 2003 01:29 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:19 AM.