tirenweb
tirenweb

Reputation: 31709

The font size doesn't work

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

Answers (4)

reisio
reisio

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

jmic
jmic

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

Bob Kaufman
Bob Kaufman

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

Steven
Steven

Reputation: 13769

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

Upvotes: 2

Related Questions