tags:

views:

94

answers:

4

Hi,

i have this page:

http://www.tirengarfio.com/rs2/web/miembros/prueba

as you can see the font size is 16px but i have defined a 12px font in the file main.css.

I'm using Firefox 3.6.

Any idea?

Javi

+2  A: 

Double check the path to your style sheets. I can't access it.

Steven
In case you want the real answer, it's farther down.
reisio
+2  A: 

Like others have said, instead of

/css/whatever.css

try

css/whatever.css

Doing this from my browser brought up your stylesheet.

Bob Kaufman
A: 
<!--<link rel="stylesheet" type="text/css" href="/css/main.css"> 
<link rel="stylesheet" type="text/css" href="/css/formularios.css"> 
<link rel="stylesheet" type="text/css" href="/css/portada.css"> -->
<link rel="stylesheet" type="text/css" href="/rs2/web/css/main.css"> 
<link rel="stylesheet" type="text/css" href="/rs2/web/css/formularios.css"> 
<link rel="stylesheet" type="text/css" href="/rs2/web/css/portada.css"> 

It seems like you are duplicating by mistake each stylesheet. Try deleting the first three lines which return 404.

Saludos ;-)

Hermet
A: 

The problem is that your markup is not valid — specifically, you do not have a doctype declaration (<!doctype html>) at the beginning of your source.

reisio
Also lack of head and body tags
rossisdead
That's a problem only to good practice, not validity.
reisio
^ That is a reply to rossisdead, not the answer (which was given by myself, and is correct).
reisio