Web: What's the correct path to CSS? - html

i have this structure in my project
I have this page 27.html, so i have to find the CSS file, so i think the correct path was :
<link href="../../../css/style.css" rel="stylesheet" type="text/css" />
<link href="../../../css/inner.css" rel="stylesheet" type="text/css" />
But it's not working, so i wonder why this happens..
Any idea ?
UDPATE:
Hi guys, this is my URL:
/web/blog/2011/june/27.html
I'm trying
<link href="/css/style.css" rel="stylesheet" type="text/css" />
But still not applying the css in the page.
Best regards,
Valter Henrique.

Why not just use the root as a reference?
<link href="/css/style.css" rel="stylesheet" type="text/css">

You need to specify your path from the root URL to make this easier, with the '/' at the front.
<link href="/css/style.css" rel="stylesheet" type="text/css" />

You only need two ../.
Try this:
<link href="../../css/style.css" rel="stylesheet" type="text/css" />
<link href="../../css/inner.css" rel="stylesheet" type="text/css" />

You could always just do this to get to your web root:
<link href="/css/style.css">
Rather than fiddling with relative paths, go absolute.

Your paths look OK, are you sure the CSS files were uploaded to your server and that the file names are actually correct?
In doubt with ".." navigation, move your files closer and do some trials and error until you get it.

Related

CSS does not exist?

I am trying to make a website, and my css seems not to exist, no error, no style, nothing.
This is what I have got:
<link rel="stylesheet" type="type/css" href="/css/style.css"/>
This is the path:
index.html /css --> style.css
I went to the console to search after any error, there is no error, none. In fact, I went to the sources, and it is not even there.
Please, I would like to get feedback, thank you.
<link rel="stylesheet" href="./css/style.css"/>
This should do it, or you can also replace your type="type/css" to type="text/css"
type="type/css" is not the correct link type.
You should be careful of using / prefix in the paths.
Also, there's no link type called type/css. It's text/css.
Both of these will work:
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<link rel="stylesheet" type="text/css" href="./css/style.css"/>
Set the type to "text/css". Also, try not to use a / at the beginning of your file paths if you can.
You can use this line instead.
<link rel="stylesheet" type="text/css" href="css/style.css"/>

giving a css path to html but it is not working

<link rel="stylesheet" href="index.css" >
<link rel="stylesheet" type="text/css" href="index.css" >
<link rel="stylesheet" type="text/css" href="index.css" media="screen" >
tried all of them but it's not working
try using a different name for the stylesheet rather than 'index.css' go for 'style.css' as everybody does.
Make Sure the CSS File is located in the same directory as the index.html and change the reference link to
<link href="style.css" rel="stylesheet" type="text/css" media="all" />
or
<link href="./style.css" rel="stylesheet" type="text/css" media="all" />
Check the path to your file you can try,
<link href="./style.css" rel="stylesheet" type="text/css" media="all" />
This should work if your file is in the same directory.
The path mentioned in the above example does not have a full URL or relative path that begins with "/".
This makes the browser think that the css file is at the same level as that of the html file. Therefore, it may fail to fetch the file correctly.
Updating the path of the css file to either a full URL or to a relative path will solve the problem.
Example:
Suppose that the website is organized into the following folder structure:
/index.html
/css/index.css
/css/main.css
/js/header.js
/js/footer.js
...
/images/hero.jpg
/images/logo.png
...
The call to the css file will work if the link is defined like this, in index.html:
<link rel="stylesheet" href="/css/index.css" >

bootstrap css is not loading

I prepared my bootstrap website using visual studio and it works properly.
But when I try to run html file through going in that folder then bootstrap css is not loading.
Can you tell me the reason behind this?
Thanks in advance
Here is my head section
<link href="../font-awesome-4.2.0/css/font-awesome.min.css" rel="stylesheet" />
<link href="../dist/css/bootstrap.min.css" rel="stylesheet" />
<link href="../dist/css/bootstrap-theme.css" rel="stylesheet" />
<title > K.P Facility Management</title>
<link href="StyleSheet.css" rel="stylesheet" />
<link rel="shortcut icon" type="image/png" href="../images/title.png" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../dist/js/bootstrap.min.js"></script>
Most probably the paths are wrong. With the "../" before your path, you're going up a level from the root, which will return an error (if you look at the inspector).
Try placing this html in the folder that contains the folders you are going to use files from, and change the paths to:
<link href="dist/css/bootstrap.min.css" rel="stylesheet" />
<link href="dist/css/bootstrap-theme.css" rel="stylesheet" />

Broken relative url in css

In every css from external projects I have to replace url like this:
url(image.jpg)
to
url(../image.jpg)
Maybe that's connected with the way I have to include css with trailing slash:
<link rel="stylesheet" type="text/css" href="/project1/style.css/" th:href="#{ /project1/style.css/ }" />
You don't need to include the extra /
Try this:
<link rel="stylesheet" type="text/css" href="/css/style.css" th:href="#{ /css/style.css }" />

CSS only working with direct link, why relative wont work?

Trying to build a webpage. and relative css link wont work. Only direct linking.
Head:
<link href="http://directorym.net/App_Themes/customDarkBlueWAdSense_en-US/customDarkBlueWAdSense_en-US.css" type="text/css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="http://pboo.mobi/corey/articles_media/dmNet.css" />
<link rel="stylesheet" type="text/css" href="http://pboo.mobi/corey/App_Themes/mobile.css" />
test at http://pboo.mobi/corey
when i make it relative:
<link rel="stylesheet" type="text/css" href="articles_media/dmNet.css" />
<link rel="stylesheet" type="text/css" href="App_Themes/mobile.css" />
it wont show up.
Suggestions?
Use the absolute path:
<link rel="stylesheet" type="text/css" href="/corey/articles_media/dmNet.css" />
<link rel="stylesheet" type="text/css" href="/corey/App_Themes/mobile.css" />
Looking at your site and changing page code on the fly with browser, they show up with both relative and absolute paths.
Anyway remember that relative means "relative to the current page path".
You have three options when it comes to url paths:
a) Absolute
href="http://www.mysite.com/myfolder/myfile.css"
b) Relative
href="myfile.css"
c) Absolute with forward slash instead of domain name
href="/myfolder/myfile.css"
suppose the folders articles_media and App_Themesand the html page are all based in the same original folder. The header of the html page can then contain:
<link rel="stylesheet" type="text/css" href="/articles_media/dmNet.css" />
<link rel="stylesheet" type="text/css" href="/App_Themes/mobile.css" />
(note the / before the folder name)
To add to what people have said so far, also consider using the full path but using protocol relative links.
<link rel="stylesheet" type="text/css" href="//pboo.mobi/corey/articles_media/dmNet.css" />
<link rel="stylesheet" type="text/css" href="//pboo.mobi/corey/App_Themes/mobile.css" />
This way you won't have to worry about potential security errors with http:// or https://