 Knowledge Article 0406:
How can I display my uploaded SellFolio
in full-screen mode?
_________________________________________________
Explanation 1
Your SellFolio project typically runs within the
display area of your browser window, only. To display your
uploaded SellFolio in full-screen mode, you must launch your
SellFolio in a new window, using Javascript.
NOTE: These instructions might not work
for all viewers, servers, etc., and SellFolio LLC does not warrant
any changes that you make to your sellfolio.html file. The
user assumes all risk associated with these instructions.
NOTE: These instructions assume that you
know how to edit HTML code. Your sellfolio.html file is
located in:
C:
\SellFolios_V4
\<yourProjectName>
\Bin <--your sellfolio.html file is located here
Solution 1
1) Edit your launching file. To explain, your
sellfolio.html file must be launched from a "launching" file, and
you must place some Javascript code in that "launching" file.
Lets say that your "launching" file is called index.html file.
Within index.html, add the following code to your existing HTML
code:
<a href="#" onClick="window.open('sellfolio.html','screen','top=0,left=0,titlebar=yes,scrollbars=no')"
>View A SellFolio</a>
Save your "launching" file and place it in the
same folder as your sellfolio.html file.
2) Edit your sellfolio.html file. Add the
following code after the </HEAD> tag:
<script type="text/javascript">
<!--
self.moveTo(0,0);
self.resizeTo(screen.availWidth,screen.availHeight);
self.focus();
// -->
</script>
Save your sellfolio.html file and upload your
project.
3) In your web browser, launch your "launching"
file, and click the link that says, "View A SellFolio".
<< Go
back to Support page
|