Gossamer Forum
Home : Products : Links 2.0 : Customization :

css Stylesheet Problem

Quote Reply
css Stylesheet Problem
Hi,

going crazy with. Stylesheet is working sometimes and sometimes I need to reload the page twice. Unable to find out what's really the problem.

That's the code I placed:
<link href="http://verica.org/style_eng.css" rel=stylesheet type="text/css">

click here to see the page

the stylesheet I use

Hope to receive your feedback soon.
Marco / www.verica.com
Quote Reply
Re: [verica.com] css Stylesheet Problem In reply to
 Put a doctype declaration first, and anything after an = needs to be quoted.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
[/url]
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<HTML>
<HEAD>
<link href="http://verica.org/style_eng.css" rel="stylesheet" type="text/css">
<title>VERICA: 1BIZ/Companies/Entertainment_and_Media_Production</title>
<meta name="audience" content="all">
<meta name="robots" content="index,follow">
<meta name="revisit-after" content="7">
<meta name="category" content="home page">
<meta name="distribution" content="global">
<meta name="rating" content="safe for kids">
<meta name="doc-class" content="published">
<meta http-equiv="pics-label" content='(pics-1.1 http://www.weburbia.com/safe/ratings.htm l r (s 0))'>

----

Change the doctype to match what you use, which looks like what I posted; read more here: http://htmlhelp.com/...lidator/doctype.html


Leonard
aka PerlFlunkie
Quote Reply
Re: [PerlFlunkie] css Stylesheet Problem In reply to
Appreciate your feedback highly.

Recognized that with IE all works problem appears only with Mozilla Firefox for some reason.

Regards,
Marco
Quote Reply
Re: [verica.com] css Stylesheet Problem In reply to
Firefox does take the W3C standards more seriously, so code errors are more likely to cause page errors.


Leonard
aka PerlFlunkie