How to make a Welcome page (Splash Page) for your Guild Site
Setting up your site
Make a new page
Page Order
Add a new Content Box
The Welcome Screen
The code
<style type="text/css"> #splashBox { margin: 0 auto; text-align: center; color: #fff; } body { background: #333333 url(URL TO YOUR BACKGROUND IMAGE); color: #ffffff; } #PageContainer,.gpWidget,.sectionWrapper,.ContentZone,#bannerTable, .BannerArea,.WfTopMenu,.TabBar,.straightBarWrapper,.InnerTabTable { display: none; } .sectionWrapper { -webkit-box-shadow: 0 0 #000; -moz-box-shadow: 0 0 #000; box-shadow: 0 0 #000; } </style> <div id="splashBox"> <div align=center> <div style="height:200px;"></div> <h1>Welcome $block[username]</h1> <img src="URL TO YOUR LOGO"> <div style="height:100px;"></div> <a href="URL TO YOUR HOME PAGE"> <img src="http://i201.photobucket.com/albums/aa236/Mottie1/testsite/forums/entersite.gif"> </a> </div> <meta http-equiv="refresh" content="10; url=URL TO YOUR HOME PAGE"> </div> <script type="text/javascript"> $(function() { var w = $('#splashBox').closest('.gpwidget'); // remove the next two lines if you want your box borders to show w.find('.ContentBoxTitle').hide().end() .find('.ContentBox, .ContentBoxTitle, .ContentBoxBody').andSelf().attr('class',''); // remove the above two lines if you want your box borders to show $('#splashBox').parents().show(); }); </script>
Customizing the code
Hiding the Welcome tab
$(document).ready(function(){ $('.straightBarWrapper').find('td:contains("Welcome")').hide(); })
Making your welcome screen public