Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

Re: [Alex] Using a CSS script

Quote Reply
Re: [Alex] Using a CSS script In reply to
Yeah, I tried that before posting... all it does is print out the perl code, but it does not executes. I know I can use javascript, but that does not works is js is disabled... while the perl script will.

This is what I got under globals, I named it site_css:

Code:
sub { ($usage) = @_;
$site = "http://argus.bus.ucf.edu";
$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";
return $css_serve_code_line;
}

Any other tips?

--
David
Subject Author Views Date
Thread; hot thread Using a CSS script unixman 10496 Apr 21, 2002, 6:19 PM
Thread; hot thread Re: [unixman] Using a CSS script
Alex 10330 Apr 21, 2002, 7:08 PM
Thread; hot thread Re: [Alex] Using a CSS script
unixman 10286 Apr 21, 2002, 7:24 PM
Thread; hot thread Re: [unixman] Using a CSS script
Alex 10299 Apr 21, 2002, 7:25 PM
Thread; hot thread Re: [Alex] Using a CSS script
unixman 10285 Apr 21, 2002, 7:43 PM
Thread; hot thread Re: [unixman] Using a CSS script
Paul 10324 Apr 22, 2002, 1:43 AM
Thread; hot thread Re: [Paul] Using a CSS script
unixman 10264 Apr 22, 2002, 5:42 AM
Thread; hot thread Re: [unixman] Using a CSS script
Wil 10324 Apr 22, 2002, 6:05 AM
Thread; hot thread Re: [Wil] Using a CSS script
unixman 10299 Apr 22, 2002, 6:50 AM
Thread; hot thread Re: [unixman] Using a CSS script
Wil 10405 Apr 22, 2002, 6:53 AM
Thread; hot thread Re: [Wil] Using a CSS script
unixman 10336 Apr 22, 2002, 6:54 AM
Thread; hot thread Re: [unixman] Using a CSS script
Wil 10363 Apr 22, 2002, 6:58 AM
Thread; hot thread Re: [Wil] Using a CSS script
unixman 10357 Apr 22, 2002, 7:03 AM
Post; hot thread Re: [unixman] Using a CSS script
Wil 10299 Apr 22, 2002, 7:04 AM
Post; hot thread Re: [unixman] Using a CSS script
unixman 10335 Apr 22, 2002, 7:20 AM
Thread; hot thread Re: [Wil] Using a CSS script
Paul 10361 Apr 22, 2002, 7:05 AM
Thread; hot thread Re: [Paul] Using a CSS script
unixman 10502 Apr 22, 2002, 7:09 AM
Thread; hot thread Re: [unixman] Using a CSS script
Wil 10369 Apr 22, 2002, 7:14 AM
Post; hot thread Re: [Wil] Using a CSS script
unixman 10298 Apr 22, 2002, 7:17 AM
Thread; hot thread Re: [Wil] Using a CSS script
Paul 10281 Apr 22, 2002, 7:24 AM
Thread; hot thread Re: [Paul] Using a CSS script
unixman 10296 Apr 22, 2002, 7:27 AM
Post; hot thread Re: [unixman] Using a CSS script
Paul 10243 Apr 22, 2002, 7:31 AM
Thread; hot thread Re: [Paul] Using a CSS script
Wil 10323 Apr 22, 2002, 7:35 AM
Thread; hot thread Re: [Wil] Using a CSS script
Paul 2034 Apr 22, 2002, 7:41 AM
Thread; hot thread Re: [Paul] Using a CSS script
Jagerman 1904 Apr 22, 2002, 12:22 PM
Post; hot thread Re: [Jagerman] Using a CSS script
Wil 1878 Apr 22, 2002, 12:23 PM
Thread; hot thread Re: [Paul] Using a CSS script
Wil 10294 Apr 22, 2002, 7:10 AM
Post; hot thread Re: [Wil] Using a CSS script
unixman 10269 Apr 22, 2002, 7:13 AM