stylesheet in frontpage

S

Sandra Hendsbee

Hi:

Can cell height be defined on a style sheet? How? Can I save a .css file in
my web using a style FP2000? (Cut and paste from notepad.)

Thanks, Sandra
 
M

Murray

Can cell height be defined on a style sheet?

td.special { height:200px; }

will style this cell -

Can I save a .css file in
my web using a style FP2000? (Cut and paste from notepad.)

Uh - sure. But you should import it into the site I think.
 
S

Sandra Hendsbee

Thanks Murray. What I'm trying to do is set a specific table height and
inset the same image file within it on each page. The contact has a new
logo I need to replace. I have a template I copy onto each new page as they
are added. Now I want to know how I can apply changes to the common
elements like logos and hyperlinks to all pages or a specific group of pages
because there are way to many pages to update everytime these guys change
their minds about what logo to use, and the site is bilingual. Can you
help?

Thanks, Sandra
 
M

Murray

Is the image the same height as the table cell?
The contact has a new
logo I need to replace

Why not just save the new image with the old image's name?

Maybe I am not getting your question, though.
 
M

Murray

You just need to change this code -

<img border="0" src="images/logocwta.gif" width="495" height="58">

to this -

<img border="0" src="images/logocwta.gif" width="536" height="77">
 
Top