Just a simple hack. If you use a background image and you don't want it to scroll along with the rest of the page.
In inc_header.asp find the section:
if strPageBGImageURL = "" then
strTmpPageBGImageURL = ""
elseif Instr(strPageBGImageURL,"/") > 0 or Instr(strPageBGImageURL,"\") > 0 then
strTmpPageBGImageURL = " background=""" & strPageBGImageURL & """"
else
strTmpPageBGImageURL = " background=""" & strImageUrl & strPageBGImageURL & """"
end if
Exchange:
strTmpPageBGImageURL = " background=""" & strPageBGImageURL & """"
with:
strTmpPageBGImageURL = " background=""" & strPageBGImageURL & """" & " bgproperties=""fixed"""
and:
strTmpPageBGImageURL = " background=""" & strImageUrl & strPageBGImageURL & """"
with:
strTmpPageBGImageURL = " background=""" & strImageUrl & strPageBGImageURL & """" & " bgproperties=""fixed"""
Done!
Mats D