HTML5 - css file -


i trying make html document , having strange issue. when css file in different directory works great when move css file same directory html file doesn't recognize it.

i changed link href of css.

thanks help

ok sorry, elaborate- – when use -

<title>profile</title>  <link href="./me_files/as.css" media="screen, handheld" rel="stylesheet" type="text/css"> 

it works. , when move file same folder , use

<title>profile</title>  <link href="as.css" media="screen, handheld" rel="stylesheet" type="text/css"> 

it doesn't work

ok managed fix it. problem needed drop the- media="screen, handheld"

thank all!!!

"when use - <title>profile</title> <link href="./me_files/as.css" media="screen, handheld" rel="stylesheet" type="text/css"> - works , when move file same folder , use - <title>profile</title> <link href="as.css" media="screen, handheld" rel="stylesheet" type="text/css"> doesn't work"

have tried

href="./as.css" ? 

edit

maybe have relative links inside css need changed?


Comments

Popular posts from this blog

How do you change vbulletin's home page to the forums instead of the default (CMS or Activity Stream)? -

c++ - Troubles when compiling phash program -