I’ve assigned the class “greenbutton” to a link in my html, but none of the changes I make to this class on my CSS take effect.
home.html.erb
<p><a class="greenbutton" href="#">Sign Up</a> to learn more</p>
custom.css.scss
.greenbutton a:link, .greenbutton a:visited {
font-size: 14px;
text-decoration: none;
}
The weird thing about this is that when I assign this class to the preceding paragraph tag, the changes take effect. Any thoughts?
The CSS you’re trying should either be applied to the
<p>or modified toa.greenbutton. What you’re specifying is an anchor within an element classedgreenbutton. e.g.