Customizer CSS changes not working
-
I am new to WordPress. I come from a hand-coded background, building sites from scratch using HTML, CSS, JS (no PHP). Right now, I am trying to apply a linear gradient to the body on my site’s About page. I have tried to add the custom css below in my theme customizer, but the change hasn’t taken effect. Can I (and should I) edit the appropriate css file in my wordpress folder? Is there a global “styles.css” file or how would I know which css file to add the code to?
In other words, how do I accomplish the below in WordPress?
//index.html <head> <link rel="stylesheet" href="./styles.css"> </head> <body> <nav> <ul class="main-nav"> <li><a href="index.html">Home</a></li> <li><a href="about.html">About</a></li> </ul> </nav> </body> /*styles.css*/ body{ background: linear-gradient(rgb(0, 0, 0), rgb(109, 2, 82)); }
- This topic was modified 5 years, 2 months ago by .
- This topic was modified 5 years, 2 months ago by . Reason: Moved to Fixing WordPress, this is not an Developing with WordPress topic
The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Customizer CSS changes not working’ is closed to new replies.