I can't get a simple CSS change on my wordpress theme
I have SASS processed by gulp.js with browser-sync into a style.css file in the root of my theme folder.
on my wordpress theme, I have H1 and H2 tags populated on the page
<a href=" " rel="nofollow noreferrer"><img src=" " alt="enter image description here"></a>
WP-content folder structure looks like this on PHPstorm
<a href=" " rel="nofollow noreferrer"><img src=" " alt="enter image description here"></a>
I have the theme selected under the wordpress admin, am I simply not referencing my style.css file in my theme somehow? Or perhaps need to specify this in index.php / index.html?
<strong>EDIT</strong>
it works fine now, I had enqueue styles correct the first time not sure why it didn't work earlier
<a href=" " rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/sjepW.png" alt="enter image description here"></a>
I have SASS processed by gulp.js with browser-sync into a style.css file in the root of my theme folder.
Code:
h1 {
font-size: 3em;
color: green;
}
h2 {
font-size: 2.6em;
color: blue;
}
on my wordpress theme, I have H1 and H2 tags populated on the page
<a href=" " rel="nofollow noreferrer"><img src=" " alt="enter image description here"></a>
WP-content folder structure looks like this on PHPstorm
<a href=" " rel="nofollow noreferrer"><img src=" " alt="enter image description here"></a>
I have the theme selected under the wordpress admin, am I simply not referencing my style.css file in my theme somehow? Or perhaps need to specify this in index.php / index.html?
<strong>EDIT</strong>
it works fine now, I had enqueue styles correct the first time not sure why it didn't work earlier
<a href=" " rel="nofollow noreferrer"><img src="https://i.stack.imgur.com/sjepW.png" alt="enter image description here"></a>