Jump to content

CSS doesnt work in firefox


papillonstudios

Recommended Posts

<?php

$nav = $_GET['page'];
secure($nav);

?>
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Website Title</title>
<link rel="stylesheet" type="text/css" href="../style.css" />
</head>

<body>
<div class="container">

<div class="header">
    
    	<img src="images/header.jpg" alt="header" />
    
    </div>
    
    <div id="navcontainer">
	<ul id="navlist">
		<li id="active"><a href="index.php" id="current">Home</a></li>
            <li><a href="index.php?page=prices">Prices</a></li>
		<li><a href="index.php?page=portfolio">Sites</a></li>
		<li><a href="index.php?page=aboutme">About Me</a></li>
		<li><a href="index.php?page=contact">Contact Me</a></li>
		<li><a href="http://kinergia.com" target="_blank">Kinergia</a></li>
	</ul>
</div>
    
    <div class="content">        
        <?php
                        //Use a switch statement to go through the URLS.
                        switch ($nav) {

						case "prices":
                                include ('prices.php');
                                break;

						case "aboutme":
                                include ('about.php');
                                break;

						case "portfolio":
                                include ('sites.php');
                                break;

						case "contact":
                                include ('contact.php');
                                break;
                                                 
        
                            default:
                                include ('default.php');
                                break;
                                
        
        
                        }
        
                        ?>
    </div>
    
    <div class="footer">
    	Hosted By:  <a href="http://kinergia.com">Kinergia, LLC</a> | Part of: <a href="http://gamingfusion.net">GamingFusion Network</a> | Copyright 2010 <a href="http://chadwgregory.com">ChadWGregory</a>
    </div>
    
</div>
</body>
</html>

  • 2 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.