Being the ignorant noob that I am, I have allowed the structure for my project to become cluttered as I’ve been writing code. I want to fix that.
My thought is to create a folder at the project level with sub-folders for each Document that I create. I could do that easily enough, but most of the documents use CSS stying that is the same. I’m trying to come up with a way to prevent multiple instances of the same styling.
I’ve tried placing a “Styles” sub-folder within the project folder and a sub-folder for each Document. The styling I need isn’t being pulled in to format the screens despite each Document having a link rel=stylesheet href=/Styles/*commonName*.css statement in its<head> . . . </head> section.
For a file in the folder Marriages_Input this path will appear relative. "Marriages_Input/Hutchins_Clan_Project/Styles/entry.css" It doesn’t understand what you perceive to be the root folder.
You need to add a . to traverse to the parent folder first. "./Styles/entry.css"
Sometimes preceding with a/ as you have done indicates the “root” folder but that doesn’t seem to be working.