PHP Classes

File: stylesheet.php

Recommend this page to a friend!
  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: 15 years ago
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;
}