Free Arcade Script
FAS Customization => Addons/Modifications => V3.x => : am-fs October 24, 2014, 06:20:31 PM
-
This will add the footer boxes to the classic blue theme requested here => http://freearcadescript.net/forums/index.php?topic=775.0
(http://freearcadescript.net/images/classic-fb.jpg)
*Note center box is ad3 in the admin/ads, so you can put ads or your Facebook like box here.
Add to the bottom of your templates/classic/styles.css file:
#footer_box {
color: #000;
background: #FFF;
width: 1036px;
height: 308px;
margin: 10px 10px 10px 10px;
border: 2px ridge #000;
}
#footer_box a {
color : #333;
text-decoration : none;
font-family : Arial;
font-weight : normal;
font-size : 12px;
margin: 0 2px;
}
#footer_content {
float: left;
width: 328px;
height: 284px;
background: #ECEDF3;
display: inline;
margin-left: 10px;
margin-top: 10px;
border: 2px ridge #000;
}
.footer_info {
text-align:left;
margin-left: 10px;
clear: both;
}
.footer_boxnav {
float: left;
width: 320px;
height: 20px;
background-image: url('images/headerbg.png');
background-repeat: repeat-x;
font-family: Tahoma, Arial, Helvetica, sans-serif;
color: #FFF;
margin: 4px;
font-size: 16px;
font-weight: bold;
text-align: center;
}
.footer_boxnav a{color:#FFF;font-family:Arial;font-size:16px;font-weight:400;text-decoration:none;}
templates/classic/templates.php
Find at the bottom:
<br />
<div align="center"><?php echo $footerspace; ?>
Add above:
<!-- start footer box -->
<div align="center">
<?php include ("templates/$template/footerbox.php");?>
</div>
<!-- end footer box -->
upload footerbox.php to your => templates/classic/
-
i love it