Make an Existing Page a CSS

G

Guest

Is it possible to resave an existing webpage to a CSS? I have already
developed my website but now want to make the index/home page a CSS page and
have the other already created pages changed to look like it and then just
add the information for that particular page. Please advise. Thanks
 
V

Viken Karaguesian

Hi Michele,

No, it's not possible to do it the way you describe. CSS is a different
language with it's own parmeters, so you can't just open your page and
do "save as..." and save it as a css file.

If what you want is to make sure all the pages have the same background
color, font style/size, etc. then you would create a style sheet with
that info and link all the pages to that style sheet. A simple example
looks like this:

body {
background: blue;
color: white;
font-family: arial, sans-serif;
font-size: 12pt;
}

So, if you link all your pages to a style sheet with this style in it,
all your pages would have a blue background with white text that 12pt
arial.

However, you'll have to learn how to write a style sheet using CSS.
Basic CSS isn't terribly hard to learn. I'm not sure how you could
create a style sheet using Front Page's menu. You can go to Format -->
Style and create a style, but I'm not sure that creates a style sheet.
Maybe a FrontPage MVP can advise better.

Viken K.
http://home.comcast.net/~vikenk
 

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

Similar Threads

Link in CSS 1
css background image 10
CSS Table Question 6
CSS styles 2
FP Acting Quirky with an External CSS Stylesheet 3
Ronx Question #2 3
Help with CSS 12
Form page and CSS compatability 1

Top