Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End WordPress index.php not picking up my style sheet Re: WordPress index.php not picking up my style sheet

#114088
TheDoc
Member

I’m guessing that there is some sort of error in the CSS file. Have you made any changes to it recently?

Also, small little change:

border-top: 2px solid #d6bdc5;
border-right: none;
border-bottom: none;
border-left: none;

Can just be:

border: none;
border-top: 2px solid #d6bdc5;

Or:

border-top: 2px solid #d6bdc5;

Depending if it needs to override anything. Just a fun little optimization tip!