
-
AuthorPosts
-
February 16, 2022 at 6:50 pm #1340954
Fabiana
GuestLo stile dei pulsanti e del titolo h2 si visualizza in Backend, ma non in Frontend, cosa devo fare?
Inoltre vorrei chiedervi se c’è la possibiliotà di mettere il logo come testo e non immagine?
Grazie, FabianaFebruary 17, 2022 at 12:42 pm #1341123Hey Fabiana,
Thanks for contacting us!
1- Could you please point out the page where we can see the issue? Also, please go to Enfold theme options > Performance and disable CSS file merging and compression, save theme options, clear cache and check if that helps
2- You can add following code to bottom of functions.php file of your child theme (https://kriesi.at/documentation/enfold/child-theme/) in Appearance > Editor and change “LOGO TEXT” to your title :)
//------------------------------- // function - Text Logos //------------------------------- add_filter('avf_logo_final_output', 'avf_text_logo_final_output'); function avf_text_logo_final_output($logo) { $link = apply_filters('avf_logo_link', home_url('/')); $logotext = "LOGO TEXT"; $logo = "<span class='logo'><h1><a href='".$link."'>".$logotext."</a></h1></span>"; return $logo; }
If you have any other questions or issues, please register to our support forum – https://kriesi.at/support/register/ using your purchase code and start new threads under Enfold sub forum :)
Regards,
YigitFebruary 17, 2022 at 3:33 pm #1341176Fabiana
Guestthere are two pages only:
https://avvocatowilmapennelli.it/
https://avvocatowilmapennelli.it/servizi-legali/
in both.. botton SCOPRI and POLICY PRIVACY
I have disable CSS file merging and compression, save theme options, clear cache, but the problem is still there..For the question 2 I have to install the child-theme, or I can put the code in enfold theme?
Thank you!
Regards, FabianaFebruary 18, 2022 at 1:11 pm #1341337Hi!
1- Semi colon is missing after border-radius property and that is causing the issue – https://imgur.com/a/JcTI9P5. If I add it in dev tools, it works correctly – https://imgur.com/a/IChWNpp.
You are using Block Editor and this is not a CSS conflict with Enfold so I would recommend you to contact WordPress support regarding the issue.
As a temporary workaround, I added following code to Quick CSS in Enfold theme options > General Styling tab
.wp-block-button__link.has-col-ffffff-color.has-col-ff-6600-background-color.has-text-color.has-background { border-radius: 0; background-color: #f60; }
2- You can add it to functions.php file of Enfold parent theme however when you update the theme, file would be overwritten so you would need to add it again. That is why we would recommend you to use a child theme :)
Regards,
Yigit -
AuthorPosts
- You must be logged in to reply to this topic.