I connected the style.css file to header.php and everything works fine, but when I go to another page pages/test.php page, where the header.php file is style.css file style.css not work.
Here is a sample code:
header.php
link rel="stylesheet" href="css/style.css" type="text/css"> test.php
require_once '../header.php';
pages/, then yourcss/style.cssturns intopages/css/style.css. Use absolute paths. - rjhdby