
Originally Posted by
Girard Ibanez
Not sure what you mean by "mirror a site" ...
To make a copy of it. The three products I mentioned are spiders or offline browsers designed to follow URLs and download the resources they find. Though that seems to be overkill in this case, it's the best software for the job.
I am putting up a web page that will be an informative page where others can view the contents, save the contents, or print the contents. The problem I am having is that I want the view look tobe maintained when it is saved or printed.
Well, clearly it's not possible to alter how MSIE works, so you either have to accept it or present an alternative. The latter could be a link that causes the server to prepare the content especially - perhaps by creating a ZIP archive from it - so that the browser saves the contents exactly. That's not particularly trivial to do on-the-fly, so if the content is static, you might want to prepare the download in advance.
I am using the "*" universal selector because I could not figure out why some browsers would define /default a padding or margin number. So to make my pages uniformed, I used the * selector.
That's generally a good idea as the default style sheet of each browser does tend to differ (significantly in some cases).
Now I am finding out that perhaps my problem is the "p" tag that is causing me to have that extra line or padding.
In the saved, off-line version? Yes, because the rule using the universal selector has effectively been removed by MSIE.
On the subject of paragraphs, your current usage is very bad. Don't use empty paragraphs or forced line breaks (br elements) to produce vertical spacing; use margins instead. Similarly, don't use headings to create text that's a certain size; use a font-size declaration instead:
Code:
p.notice {
font-size: 150%;
}
HTML Code:
<p class="notice">Under construction</p>
Finally, the phrase you're looking for is: "Thank you for your patience." 
Mike
Bookmarks