Home › Forums › Back End › CSS can’t be applied › Reply To: CSS can’t be applied
March 16, 2017 at 12:00 pm
#252860
Participant
Looks like the text is inside the <a>
tag, you should probably target that instead:
.ms-layer.big-text a {
Not only will it not have an effect when applied to the parent, in addition the style of that parent has been placed inline so using CSS will not override it unless !important
is used. But that is a side note.