Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
***CSS***
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-color:#000000;
font-family:Geneva, Arial, Helvetica, sans-serif;
background-image:url(../assets/nav_temp.jpg);
background-attachment:fixed;
background-repeat:no-repeat;
background-position:center;
}
#text_container {
position:relative;
width:750px;
text-align:justify;
top:140px;
left:195px;
background-image:url(../assets/div_bg2.png);
background-repeat:no-repeat;
padding:20px;
font-size:11px;
color:#CCFFFF;
z-index:2;
}
#content {
background-image:url(../assets/container_border.png);
background-repeat:repeat-y;
/*background-attachment:fixed;
background-position:center;*/
text-align:left;
position:relative;
margin-left:auto;
margin-right:auto;
width:984px;
margin-top: 0px;
}
.page_header {
position:absolute;
background-image:url(../assets/background3.jpg);
top:0px;
left:0px;
width:980px;
height:160px;
z-index:1
}
***HTML***
<body>
<div class="content" id="content" style="height:900px;">
<div class="page_header"></div>
<div class="header_image"></div>
<div class="top_login">
<cfinclude template="CFM/top_nav.cfm">
</div>
<div class="left_nav_bar">
<cfinclude template="CFM/left_nav.cfm">
</div>
<div class="text_container" id="text_container" style="height:700px;"></div>
<div class="text_container_content" id="text_container_content">
<div class="welcome_message">
<cfinclude template="CFM/welcome_content.cfm">
</div>
<div class="news">
<cfinclude template="CFM/news_feed.cfm">
</div>
<!---<div class="paypal_logo">
<cfinclude template="CFM/paypal_logo.cfm">
</div>--->
<div class="members_info">
<cfinclude template="CFM/members_info.cfm">
</div>
<div class="new_users">
<cfinclude template="CFM/new_users_content.cfm">
</div>
<div class="new_characters">
<cfinclude template="CFM/new_characters_content.cfm">
</div>
<div class="page_footer" style="top:700px;"></div>
</div>
</div>
</body>