Posted by Abel on 01/17/07 10:25
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
[Back to original message]
|