jolato wrote:
> Hi,
> I would like to use a source file from an existing website as a
> template for designing my homesite.
> When I load this file in composer (Mozilla 1.4), it is presented in a
> very different way than the original website. For instance, menu's are
> at the bottom in stead of at the top. Colours and layouts are not
> presented.
That's normal. Content and layout/colours are in different files. You
only saved the content.
> The result should look like www.vosberg.be
> I did 'page source' in the browser and copied the result to a file
> 'index.shtml'
> Then opened this file in composer.
Note those lines in the source :
<link rel="stylesheet" type="text/css" media="print"
href="/style/printer.css"/>
<style type="text/css">
/*<![CDATA[*/
@import url("/style/layout.css");
@import url("/style/content.css");
@import url("/style/menu.css");
/*]]>*/
</style>
You need to save those four css files.
http://www.vosberg.be/style/printer.css and so on.
> Thanks for any help or hint. I am new to composer but not to web
> editing.
And err, that page is XHTML 1.1. Composer creates HTML 4.01 Transitional
pages.