In standard.php, this is the complete code up to and including the link to the external CSS file:
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<head>
<?php
global $imagedir,$maindir,$cachedir;
if(file_exists('images'))
{ $imagedir='images';
$maindir='';
$cachedir='cache';
}
else
{ $imagedir='../images';
$maindir='../';
$cachdir='../cache';
}
?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Books For Less of Georgia</title>
<?php
echo '<link rel="SHORTCUT ICON" href="' . $imagedir . '/favicon.ico"/>';
echo '<script src="'.$maindir.'jquery2.js" type="text/javascript"></script>';
?>
<?php
echo '<link rel="stylesheet" type="text/css" href="'.$maindir.'standard.css" />';
?>
Code: Select all
a.white {color:white;}
a.blue {color:blue;}
a:link { color: #0000CC; text-decoration: none; }
a:visited { color: #FF0000; text-decoration: none; }
a:active { color: #0000CC; text-decoration: none; }
a:hover { color: #FF0000; text-decoration: underline; }
.twoColLiqLtHdr #sidebar1 {
float: left;
width: 200px; /* top and bottom padding create visual space within this div */
<?php
echo 'background-image: url(' . $imagedir . '/red1%20background.jpg);';
?>
padding-top: 0px;
padding-right: 6px;
padding-bottom: 0px;
padding-left: 6px;
}
.twoColLiqLtHdr #header {
text-align: center;
background-color: #C00;
border: thick none #FF0;
padding-top: 0;
padding-right: 0px;
padding-bottom: 0;
padding-left: 0px;
<?php
echo 'background-image: url(' . $imagedir . '/BfL-Banner.jpg);';
?>
}
.twoColLiqLtHdr #footer {
padding: 0 0px;
<?php
echo 'background-image: url('.$imagedir.'/red1%20background.jpg);';
?>
}
.twoColLiqLtHdr #footer p {
margin: 0;
<?php
echo 'background-image: url('.$imagedir.'/red1%20background.jpg);';
?>
width: 813px;
padding-top: 0px;
padding-right: 0;
padding-bottom: 0px;
padding-left: 0px;
height: 70px;
float: none;
}