Reputation: 1
I keep getting error messages in lighttable saying
"Failed to load resource: net::ERR_FILE_NOT_FOUND: file:///Users/boricketts/Desktop/PortfolioWebsite/css/bootstrap.min.css"
I have downloaded bootstrap, and put the bootstrap folder into my websites folder on my desktop but it seems to not be working.
Upvotes: 0
Views: 3004
Reputation: 146
If the bootstrap.min.css file is already in the website folder you should prefer to use a relative link like <link href="css/bootstrap.min.css" rel="stylesheet">
instead of providing the full path.
Upvotes: 2