Editing root elements without classes?

Is it possible to edit elements that don’t have classes (such as h1, h2 etc)?

Or what about styling something like:

.navbar h1

or

.footer a

Is this possible?

Hi @galenking, it is possible, but you need to do it using custom css. Here is an article about using custom css:

You wrap your custom style in the tag:

<style>

.navbar h1 {

color:blue;

} 

</style>

Place that in the HEAD panel of your custom css section. That will give the css properties you specify, to all the h1 that are nested in the navbar class.

See if that helps, Cheers !