Hi all,
how can i remove the Headings (H3, H5) from Widget and Comment Areas, means pages, postings etc.
You can see my mentioned headings here: https://www2.pic-upload.de/img/35626042/Bildschirmfoto2018-07-14um09.01.16.png
Thx in Advance
Toni
Hey toniritter,
Please try this code in the General Styling > Quick CSS field:
h3.widgettitle {
display: none !important;
}
I believe this got them all, I didn’t find any h5 on your page.
Please clear your browser cache and check, and let us know if there are any others.
Best regards,
Mike
Hi
i dont want to make it unvisible only – i want to remove it from source directly
Thx
Hi,
If you are using a child theme you can edit the Enfold theme files and load them from within.
You will want to edit two files:
\enfold\includes\admin\register-widget-area.php
\enfold\framework\php\class-sidebar-generator.php
If you are not using a child theme you can still edit the two files and save copies of them to your computer and re-upload them each time you update the theme, as they will be overwritten with each update.
In the files just change all of the “h3” to what you want:
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>'
such as “p” for example. You may want to add some custom css to make your new tag match your site style, such as color and font size.
If you want to use some javascript to make these changes instead, just let us know, but in that case the h3 will still show in a site audit.
Best regards,
Mike