Variable not used in adocument.css.php

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Abel

    Variable not used in adocument.css.php

    Hi,

    I use an 'adocument.css. php' document, which is used as a CSS template.
    Having just installed PHP 5.2.0 on my Win XP system, I checked on old
    code of a website I made in the past. One of the first this I noticed,
    my 'Main Navigation Container', containing a menu with different choices
    was not viewable anymore. I think this must be because the background
    color variable is not used to set the background to dark blue. Could
    that be because PHP 4.0 works different from 5.2.0? And what do I need
    to do to view the page as it is intended to?

    I got the following lines:
    <?php
    header("Content-type: text/css");
    $blueDark = "#000066";
    ?>

    and
    /* ======== Main navigation container ======== */
    #mainnav
    {
    background-color: <?= $blueDark; ?>;
    padding: 2px 0;
    margin-bottom: 22px;
    }

    #mainnav ul
    {
    margin: 0 0 0 20px;
    padding: 0;
    list-style-type: none;
    /* border-left: 1px solid #fff; */
    }

    #mainnav li a
    {
    text-decoration: none;
    padding: 0 10px;
    color: #fff;
    }

    So what do I need to do? Change all occurrences of $blueDark with "#000066"?

    Abel
  • Captain Paralytic

    #2
    Re: Variable not used in adocument.css.p hp


    Abel wrote:
    Hi,
    >
    I use an 'adocument.css. php' document, which is used as a CSS template.
    Having just installed PHP 5.2.0 on my Win XP system, I checked on old
    code of a website I made in the past. One of the first this I noticed,
    my 'Main Navigation Container', containing a menu with different choices
    was not viewable anymore. I think this must be because the background
    color variable is not used to set the background to dark blue. Could
    that be because PHP 4.0 works different from 5.2.0? And what do I need
    to do to view the page as it is intended to?
    >
    I got the following lines:
    <?php
    header("Content-type: text/css");
    $blueDark = "#000066";
    ?>
    >
    and
    /* ======== Main navigation container ======== */
    #mainnav
    {
    background-color: <?= $blueDark; ?>;
    padding: 2px 0;
    margin-bottom: 22px;
    }
    >
    #mainnav ul
    {
    margin: 0 0 0 20px;
    padding: 0;
    list-style-type: none;
    /* border-left: 1px solid #fff; */
    }
    >
    #mainnav li a
    {
    text-decoration: none;
    padding: 0 10px;
    color: #fff;
    }
    >
    So what do I need to do? Change all occurrences of $blueDark with "#000066"?
    >
    Abel
    Try chaging it to <?php echo $blueDark; ?>;

    Comment

    • Abel

      #3
      Re: Variable not used in adocument.css.p hp

      Captain Paralytic wrote:
      Try chaging it to <?php echo $blueDark; ?>;
      >
      Yup, that did it. Thanks.
      Abel

      Comment

      Working...