Jump to content

CSS doesnt work in firefox


papillonstudios

Recommended Posts

Without the script, there's no way of knowing what's "exactly" wrong with the code. However, an upgraded FF browser may not view the same as the browser you built for (so FF1 or 2 would not look exact as on 3, due to new CSS constraints, etc.).

Link to comment
Share on other sites

<?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>

Link to comment
Share on other sites

  • 2 weeks later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.