QUOTE(razbus @ Oct 28 2004, 8:29 AM)
are you people dense or something? That is exactly what i said! I DO use ONE css sheet. And yes i use php. And cgi.
thanks for calling us dense for trying to help...
since your using php, screw iframes
use php's include feature,
insteada an iframe, make it so the links to go places like www.razbus.com/index.php?page=x
or something
put this code where you need to put it
QUOTE
if(isset($_GET['action'])){
$action = $_GET['action'];
}
else{
$action == 'main';
include "main.php";
}
if($action == 'photos'){
include "photos.php";
}
elseif($action == 'bio'){
include "bio.php";
}
and at the top of the page put this
QUOTE
<?php require"css.txt"; ?>
in css.txt put your css styles
with the style tags
so put <style type="text/css"> stuff{ } stuff { } </style>
i assume you know enough php to understand how to work this
and what you said earlier, you didn't say you use 1 css sheet, you just said your copying and pasting all your styles onto every page
don't call me dense, your lucky im still helping
and they are in quote boxes because i dont like the begin code provided by createblog.com when i provide it