So I’m dividing my index.php page into three sections: top, middle, bottom. The middle section will have different html php inlude pages and therefore will require different style sheets. Do I link the specific stylesheets in the individual php include pages, or in the index page? Because in the index page, the different style sheets don’t seem to take effect, why is that?
So I’m dividing my index.php page into three sections: top, middle, bottom. The middle
Share
Say your
aboutpage has a custom css file it needs you could do something like this:about.php
The in your
header.phpfile you could do this:header.php
This way you only load what you need for the given page.