|  HTML interesse |  | Ja maar hoe komt het dan dat de blauw toch perfect word weergegeven in IE en niet in firefox  
 hier heb je ze.
 
 de index: (er is er maar 1tje..):
 http://codedump.mastercode.nl/71/
 
 de blauwe css:
 
 
    
    
        
            
                html, body {
 background-color: #2e3c6b;
 margin: 0;
 text-align: center;
}
#table_center {
 margin-left:auto;
 margin-right:auto;
}
#body_style {
 background: url('images/background.gif') repeat-x top;
} html, body { background-color: #2e3c6b; margin: 0; text-align: center;} #table_center { margin-left:auto; margin-right:auto;} #body_style { background: url('images/background.gif') repeat-x top;}
   de paarse css:
 
 
    
    
        
            
                html, body {
 background-color: #6b2e4c;
 margin: 0;
 text-align: center;
}
#table_center {
 margin-left:auto;
 margin-right:auto;
}
#body_style {
 background: url('images/background.gif') repeat-x top;
} html, body { background-color: #6b2e4c; margin: 0; text-align: center;} #table_center { margin-left:auto; margin-right:auto;} #body_style { background: url('images/background.gif') repeat-x top;}
   
 Voor die zich moesten afvragen hoe ik aan $site_theme kom.. Die staat op een andere pagina:
 
 
 
    
    
        
            
                $site_theme = (isset($_COOKIE['theme'])) ? addslashes($_COOKIE['theme']) : 'blue' ; $site_theme = (isset($_COOKIE['theme'])) ? addslashes($_COOKIE['theme']) : 'blue' ;
   |