I'm facing an issue with my custom stylesheet in conjunction with Bootstrap. At the start of my header.php file (which I import at the beginning of index.php), I have the following code snippet:
<html>
<head>
<link href="includes/css/bootstrap.min.css" rel="stylesheet">
<link href="includes/mystyle.css" rel="stylesheet">
UPDATE: I discovered that I can successfully include the file if it is in the same folder by using:
<link mystyle.css" rel="stylesheet">
, but when I move the file to the includes folder and try to import it as before, for some reason it fails to work. It's quite puzzling...