$3 + iTrader to fix in the next 1-2 hours - CSS menu issue

Discussion in 'CSS' started by edango, Sep 24, 2008.

  1. #1
    edango, Sep 24, 2008 IP
  2. ridesign

    ridesign Peon

    Messages:
    294
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #2
    ridesign, Sep 24, 2008 IP
  3. Cash Nebula

    Cash Nebula Peon

    Messages:
    1,197
    Likes Received:
    67
    Best Answers:
    0
    Trophy Points:
    0
    #3
    There are all sorts of extra HTML tags in the first one. Are your PHP files complete web pages? They should only have partial code if you are importing them into other PHP files. You should check that the code being imported isn't duplicating bits that are already in there, like the header.

    I would move header, logo, and menu code to menu.php. Then have <?php include ("menu.php"); ?> as the first line in index.php

    menu.php
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml2/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>SimpleIndex</title>
    <link rel="stylesheet" media="all" type="text/css" href="main.css" />
    <link rel="stylesheet" media="all" type="text/css" href="pro_dropline.css" />
    <!--[if IE]>
    <link rel="stylesheet" media="all" type="text/css" href="pro_dropline_ie.css" />
    <![endif]-->
    </head>
    <body>
    <table align="center">
    <tr>
    <td>
    <div class="logoheader">
    <center>
    <img src="images/SimpleSoftwareLogo.jpg" align="center">
    </center>
    </div>
    <div class="nav">
    <div class="table">
    
    <!-- MENU CODE -->
    
    </div>
    </div>
    
    Code (markup):
    index.php
    
    <?php include("menu.php"); ?>
    <br><br>
    
    <!-- MAIN CONTENT CODE -->
    
    </td>
    </tr>
    </table>
    </body>
    </html>
    
    Code (markup):
     
    Cash Nebula, Sep 27, 2008 IP
  4. skypeace

    skypeace Well-Known Member

    Messages:
    2,348
    Likes Received:
    125
    Best Answers:
    0
    Trophy Points:
    130
    #4
    As a note, you cannot give itrade for deals lesser than $5
     
    skypeace, Sep 27, 2008 IP
  5. nicangeli

    nicangeli Peon

    Messages:
    828
    Likes Received:
    23
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Or for anything outside of the BST section.
     
    nicangeli, Sep 27, 2008 IP