giftweb-discuss
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Giftweb-discuss] color bug in util.php


From: Gregory Gee
Subject: [Giftweb-discuss] color bug in util.php
Date: Sun, 19 Jan 2003 00:08:57 -0500 (EST)

  There are missing starting quote from the body tag.  Only the
bgcolor has quotes around it.

    if ($bgcolor!="") { echo " bgcolor=\"$bgcolor\""; }
    if ($textcolor!="") { echo " \"textcolor=$textcolor\""; }
    if ($linkcolor!="") { echo " \"link=$linkcolor\""; }
    if ($alinkcolor!="") { echo " \"alink=$alinkcolor\""; }
    if ($vlinkcolor!="") { echo " \"vlink=$vlinkcolor\""; }

  Should be

    if ($bgcolor!="") { echo " bgcolor=\"$bgcolor\""; }
    if ($textcolor!="") { echo " \"textcolor=\"$textcolor\""; }
    if ($linkcolor!="") { echo " \"link=\"$linkcolor\""; }
    if ($alinkcolor!="") { echo " \"alink=\"$alinkcolor\""; }
    if ($vlinkcolor!="") { echo " \"vlink=\"$vlinkcolor\""; }

  This will get the color settings in main.inc to work.

  Also, I have been trying to figure out the html layout.  It seems
that every page is inside one large table.  Is this intended?  This
makes a page header and footer not very easy to customize.

Greg

-- 
Gregory Gee
address@hidden






reply via email to

[Prev in Thread] Current Thread [Next in Thread]