Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

Using a CSS script

Quote Reply
Using a CSS script
I would like to add the following to GF:

Code:
sub serve_css {
my ($usage) = @_;
$site = "site URL";
$path = "css";
$browser = "$ENV{'HTTP_USER_AGENT'}";
$browser =~ tr/A-Z/a-z/;
if ($browser =~ /win/ && $browser =~ /msie/) { $css_file = "ie.css"; }
elsif ($browser =~ /win/ && $browser =~ /mozilla/) { $css_file = "nav.css"; }
elsif ($browser =~ /mac/) { $css_file = "mac.css"; }
else { $css_file = "unix.css"; }
$css_serve_code_line .= "<!-- Browser detected: $browser -->\n";
$css_serve_code_line .= "<link rel=\"stylesheet\" href=\"$site/$path/$css_file\" type=\"text/css\">\n";
$css_serve_code_line .= "<style type=\"text/css\">\n";
$css_serve_code_line .= "<!--\n";
$css_serve_code_line .= "a:link { color: #3366CC; text-decoration: none; }\n";
$css_serve_code_line .= "a:visited { color: #3366CC; text-decoration: none; }\n";
$css_serve_code_line .= "a:hover { color: #AC9431; text-decoration: underline; }\n";
$css_serve_code_line .= "-->\n";
$css_serve_code_line .= "</style>\n";
if ($usage eq "") {
print "Content-type: text/html\n\n";
print "$css_serve_code_line";
exit;
}
else { return $css_serve_code_line; }
}

How can be added to the globals, so the sub will execute?

Thanks in advance...

--
David
Subject Author Views Date
Thread; hot thread Using a CSS script unixman 10419 Apr 21, 2002, 6:19 PM
Thread; hot thread Re: [unixman] Using a CSS script
Alex 10256 Apr 21, 2002, 7:08 PM
Thread; hot thread Re: [Alex] Using a CSS script
unixman 10211 Apr 21, 2002, 7:24 PM
Thread; hot thread Re: [unixman] Using a CSS script
Alex 10225 Apr 21, 2002, 7:25 PM
Thread; hot thread Re: [Alex] Using a CSS script
unixman 10211 Apr 21, 2002, 7:43 PM
Thread; hot thread Re: [unixman] Using a CSS script
Paul 10250 Apr 22, 2002, 1:43 AM
Thread; hot thread Re: [Paul] Using a CSS script
unixman 10190 Apr 22, 2002, 5:42 AM
Thread; hot thread Re: [unixman] Using a CSS script
Wil 10250 Apr 22, 2002, 6:05 AM
Thread; hot thread Re: [Wil] Using a CSS script
unixman 10225 Apr 22, 2002, 6:50 AM
Thread; hot thread Re: [unixman] Using a CSS script
Wil 10331 Apr 22, 2002, 6:53 AM
Thread; hot thread Re: [Wil] Using a CSS script
unixman 10261 Apr 22, 2002, 6:54 AM
Thread; hot thread Re: [unixman] Using a CSS script
Wil 10289 Apr 22, 2002, 6:58 AM
Thread; hot thread Re: [Wil] Using a CSS script
unixman 10283 Apr 22, 2002, 7:03 AM
Post; hot thread Re: [unixman] Using a CSS script
Wil 10225 Apr 22, 2002, 7:04 AM
Post; hot thread Re: [unixman] Using a CSS script
unixman 10261 Apr 22, 2002, 7:20 AM
Thread; hot thread Re: [Wil] Using a CSS script
Paul 10287 Apr 22, 2002, 7:05 AM
Thread; hot thread Re: [Paul] Using a CSS script
unixman 10428 Apr 22, 2002, 7:09 AM
Thread; hot thread Re: [unixman] Using a CSS script
Wil 10295 Apr 22, 2002, 7:14 AM
Post; hot thread Re: [Wil] Using a CSS script
unixman 10224 Apr 22, 2002, 7:17 AM
Thread; hot thread Re: [Wil] Using a CSS script
Paul 10206 Apr 22, 2002, 7:24 AM
Thread; hot thread Re: [Paul] Using a CSS script
unixman 10222 Apr 22, 2002, 7:27 AM
Post; hot thread Re: [unixman] Using a CSS script
Paul 10169 Apr 22, 2002, 7:31 AM
Thread; hot thread Re: [Paul] Using a CSS script
Wil 10249 Apr 22, 2002, 7:35 AM
Thread; hot thread Re: [Wil] Using a CSS script
Paul 2009 Apr 22, 2002, 7:41 AM
Thread; hot thread Re: [Paul] Using a CSS script
Jagerman 1879 Apr 22, 2002, 12:22 PM
Post; hot thread Re: [Jagerman] Using a CSS script
Wil 1853 Apr 22, 2002, 12:23 PM
Thread; hot thread Re: [Paul] Using a CSS script
Wil 10220 Apr 22, 2002, 7:10 AM
Post; hot thread Re: [Wil] Using a CSS script
unixman 10195 Apr 22, 2002, 7:13 AM