Login   Register  
PHP Classes
elePHPant
Icontem

File: stylesheet.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Er. Rochak Chauhan  >  PHP Scroller  >  stylesheet.php  >  Download  
File: stylesheet.php
Role: Application script
Content type: text/plain
Description: Stylesheet
Class: PHP Scroller
Display text messages scrolling vertically
Author: By
Last change:
Date: 2008-12-27 22:33
Size: 484 bytes
 

Contents

Class file image Download
<?php 
require_once("config.php");
header("Content-Type: text/css"); 
?>
.banner{
    background-color:<?php echo BACKGROUND_COLOR?>;
    color:<?php echo FONT_COLOR?>;
    font-family:<?php echo FONT_FAMILY?>;
    font-size:<?php echo FONT_SIZE?>;
    border: thin solid <?php echo BORDER_COLOR?>;
    position:relative;    
    top:0px;
    height:75px;
}
#bannerbody{
    width:600px;
    height:75px;
    position:absolute;
    top:0px;
    left:0px;
    overflow:hidden;
    visibility:hidden;
}