How can I have my online store appear, when I just go to the URL (e.g. http://www.yoursite.co.uk/)?
One method is to have an invisible frame, which will automatically open the SellerDeck home page. The code is as follows:-
<html>
<frameset rows="100%,*">
<frame name="site" src="http://www.yoursite.co.uk/acatalog/">
<frame name="invisible" noresize>
<noframes>
<body>
<p align="center">
<a href="http://www.yoursite.co.uk/acatalog/">Click here to continue</a>
</p>
</body>
</noframes>
</frameset>
</html>
Please bear in mind though, as with all frames, this page is the only one that is loaded into the browser, all of the meta tags must be located on this page.
One method is to have an invisible frame, which will automatically open the SellerDeck home page. The code is as follows:-
<html>
<frameset rows="100%,*">
<frame name="site" src="http://www.yoursite.co.uk/acatalog/">
<frame name="invisible" noresize>
<noframes>
<body>
<p align="center">
<a href="http://www.yoursite.co.uk/acatalog/">Click here to continue</a>
</p>
</body>
</noframes>
</frameset>
</html>
Please bear in mind though, as with all frames, this page is the only one that is loaded into the browser, all of the meta tags must be located on this page.