Hi,
Does anyone know how to put blog titles on the blog page (not on each blog article) as H2 rather than H1 ?
I tried to put this code but it seems not to work?
"
<script>
//This code runs when the DOM is ready.
$(document).ready(function(){
//This code adds an aria-level value to the h1 blog title.
//The aria-level tells screen readers to treat this element like an h2.
$(".blog-basic-grid h1.blog-title").attr("aria-level", "2");
});
</script>"
Thanks in advance