Is this code put in the right spot?

G

Guest

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
 
S

Stefan B Rusynko

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/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| 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
 
R

Ronx

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.
 
K

Kevin Spencer

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.
 
M

Murray

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.
 
P

P@tty Ayers

Murray said:
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. :)
 
G

Guest

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
 
G

Guest

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 said:
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
 
M

Murray

Can you show me the whole page, please?

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


Susie said:
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
 
G

Guest

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=new Image;
d.FP_imgs.src=a; }
}

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 said:
Can you show me the whole page, please?

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


Susie said:
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
 
K

Kevin Spencer

You just left out the style tag:

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

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

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

Susie said:
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=new Image;
d.FP_imgs.src=a; }
}

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 said:
Can you show me the whole page, please?
 
G

Guest

Thanks Kevin!!! It works:)

Kevin Spencer said:
You just left out the style tag:

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

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

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

Susie said:
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=new Image;
d.FP_imgs.src=a; }
}

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 said:
Can you show me the whole page, please?

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


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
 

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