Forums

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

Home Forums CSS id vs class Reply To: id vs class

#235199
Alen
Participant

@k1n64r7hur It’s because there’s no footer element with class of .copyleft

footer.copyleft {}

Would target.

<footer class="copyleft"></footer>

You can just use .copyleft in your CSS. The copy text is contained within a span element with the class of .copyleft so it would be span.copyleft {}.

Hope that helps
Alen