Reputation: 31709
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
Upvotes: 0
Views: 1125
Reputation: 3242
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.
Upvotes: -2
Reputation: 897
<!--<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 ;-)
Upvotes: 0
Reputation: 12815
Like others have said, instead of
/css/whatever.css
try
css/whatever.css
Doing this from my browser brought up your stylesheet.
Upvotes: 3