- Edited
Is there a master override .css for all JA templates (like custom.css for old shape5 products)?
I'm trying to disable the "Share Article" plugin area on menu items set as single article.
Is there a master override .css for all JA templates (like custom.css for old shape5 products)?
I'm trying to disable the "Share Article" plugin area on menu items set as single article.
Hi
With Shape5 templates, you can add your custom css code into the same custom.css file: root/templates/your_template/css/custom.css
I know, but I'm now using a JA template (Fresco) and wondering if it has the same ability.
Also, what is the best way to remove the 'Share Article' section from pages set as single articles?
(Disabling the plugin gets rid of the icons, but the text still remains)
CloudTek With T4 based templates like Fresco, you could add into the custom css section in backend or in this file: root/templates/ja_fresco/local/css/custom.css
https://www.joomlart.com/documentation/t4-framework/css-scss-customization#custom-css_jadoc
In order to hide the share section, you can use the following css code:
.item-page .area-footer .share-social {
display: none;
}