Connecting Tech Pros Worldwide Help | Site Map

Variable not used in adocument.css.php

 
LinkBack Thread Tools Search this Thread
  #1  
Old January 17th, 2007, 09:35 AM
Abel
Guest
 
Posts: n/a
Default 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

  #2  
Old January 17th, 2007, 09:35 AM
Captain Paralytic
Guest
 
Posts: n/a
Default Re: Variable not used in adocument.css.php


Abel wrote:
Quote:
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; ?>;

  #3  
Old January 17th, 2007, 09:45 AM
Abel
Guest
 
Posts: n/a
Default Re: Variable not used in adocument.css.php

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

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Popular Articles

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over 220,989 network members.