Well, if there is nothing on the original document that, if it were to show through, would make the overlay document illegible, and if the overlay document truly is an .htm written in some form of HTML code, there are steps you can take, and see if they do any good. First of all, the Watermark 'script' doesn't really need to be a script, it can be plain css style:
Code:
body {
background:url('notebook.jpg') white center no-repeat fixed;
}
This can go in a stylesheet block on the page, preferably in the head of the document:
<style type="text/css">
body {
background:url('notebook.jpg') white center no-repeat fixed;
}
</style>
or in an external stylesheet linked to the page. When word saves to .htm and .html it often makes it own external stylesheet to which this could be added. You could also experiment with making the background of the word.htm transparent:
body {
background-color:transparent;
}
A global editor or one with a global edit function could write style to all the overlay pages at once.
I'm a little curious about the syle mentioned in your link:
Code:
<asp:hyperlink id="HyperLink1" style="Z-INDEX: 101; LEFT: 96px; POSITION: absolute; TOP: 160px" runat="server" target="main" NavigateUrl="http://wxppro01/Test/SOS.htm">HyperLink</asp:hyperlink>
If it refers to the style of the document being linked to, instead of (as normally would be the case) the style of the link itself, this might be a good spot to introduce some styling.
Just about any change to the overlay document would have to be made on it or in files linked to it. That is, unless there is some convention available in asp to do otherwise, like an include, etc.
Bookmarks