Forum Replies Created
-
AuthorPosts
-
November 22, 2022 at 7:22 pm in reply to: Footer with 5 columns shows Archiv instead of Widget specified #1373554
Hey troupdim,
Thanks for the link to your site, I assume you want to change the You are here text
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function custom_script() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ $('.breadcrumb-title').text(function(index, text) { return text.replace('You are here', 'Your New Text'); }); })(jQuery); }); </script> <?php } add_action('wp_footer', 'custom_script');and adjust the Your New Text to suit.
Best regards,
MikeHey xela,
Thank you for the link to your site please try this code in the General Styling ▸ Quick CSS field@media only screen and (max-width: 989px) { .html_mobile_menu_tablet #top #wrap_all .av_header_transparency { background-color: transparent; color: #000000; border-color: transparent; } .responsive #top #main, .responsive.html_mobile_menu_tablet.html_header_top #top #main { margin-top: -99px; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeNovember 22, 2022 at 2:28 pm in reply to: Icon list – missing responsiveness icons shall move on top of the text #1373507Hey willbaer,
Thanks for the screenshot, to make the text wider on mobile we could reduce the left and right padding, what would you like 10px of padding? Are you looking to center the icon and title above the text?
Please link to your page so we can examine the elements and write some CSS for your specific situation that will meet your expectations.Best regards,
MikeHey navindesigns,
Thanks for the login and the test page, I cloned your element and made one only visible on desktop and the second only visible on mobile, for that one I changed the number of columns form 4 to 2 so one mobile only 2 show at a time, please clear your browser cache and check.Best regards,
MikeHi,
Glad Guenni007 could help, thank you Guenni007, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeNovember 22, 2022 at 1:37 pm in reply to: Issues Background image does not show on mobile devices whewirh background image #1373496Hey willbaer,
Thanks for your question can you create a text page with the image that doesn’t show on mobile so we can investigate the difference between the two pages.
An easy way to clone the page is to Enable the Avia Layout Builder Debugger
This will add a box under the Advanced Layout Builder that shows the page shortcode, you can copy this and create a new ALB page and paste the code in the debugger box and then save.Best regards,
MikeHey spavli2,
Thanks for your question, to change the case Please try this code in the General Styling ▸ Quick CSS field#top div .slideshow_caption h2 { text-transform: capitalize; }After applying the css, please clear your browser cache and check.
Best regards,
MikeNovember 22, 2022 at 12:45 pm in reply to: Phone number above logo when main menu placed in a sidebar #1373487Hi,
Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
That is a good idea, unless there is anything else we can help with on this issue, shall we close this then?Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
I didn’t see the YouTube watermark, but your other option is to upload the video to your site and host it yourself.Best regards,
MikeNovember 22, 2022 at 1:47 am in reply to: Thumbnails of embedded YouTube videos are displayed in an incorrrect format #1373442Hi,
On the page that you have linked to the video is in a WordPress block editor element, so I assume that the page is created with the WordPress block editor and not the Enfold Advanced Layout Builder like the other page.Best regards,
MikeHey Richard,
Thanks for the link to your site try adding this css:.image-overlay.overlay-type-video { top: 0px; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Thank you for the login, I only tested the second site because I found the error.
While you had your Mailchimp API in the theme settings correctly, you didn’t choose the list to use in the Mailchimp element in the footer page.
Please choose the list and you will see all of your fields will show instead of just the email field. Please check the one I fixed for you.Best regards,
MikeHi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Thanks for the login, I see that you are using the YellowPencil plugin, I don’t have any experience with this plugin, but when I deactivate it the mobile menu works correctly, so I assume it has been used to customize the menu.
Please try deactivating yourself to see that the mobile menu works correctly and then try to un-do any customization it did, otherwise it would seem that it is conflicting with the theme.Best regards,
MikeHi,
Thanks for the login, I see that you are using the YellowPencil plugin, I don’t have any experience with this plugin, but when I deactivate it the mobile menu works correctly, so I assume it has been used to customize the menu.
Please try deactivating yourself to see that the mobile menu works correctly and then try to un-do any customization it did, otherwise it would seem that it is conflicting with the theme.Best regards,
MikeHi,
You can also use one of these presets, try these codes in your child theme functions.php, only one at a time and then check your category page://change category page layout to blog single small style
add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); function avia_change_category_blog_layout($layout, $context){ if($context == 'archive') $layout = 'single-small'; return $layout; }//change category page layout to blog single big style
add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); function avia_change_category_blog_layout($layout, $context){ if($context == 'archive') $layout = 'single-big'; return $layout; }//change category page layout to blog grid style
add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); function avia_change_category_blog_layout($layout, $context){ if($context == 'archive') $layout = 'blog-grid'; return $layout; }//change category page layout to bloglist excerpt
add_filter('avf_blog_style','avia_change_archive_blog_layout', 10, 2); function avia_change_archive_blog_layout($layout, $context){ if($context == 'archive') $layout = 'bloglist-excerpt'; return $layout; }Best regards,
MikeHi,
Please choose from one of the 3 options at Enfold Theme Options ▸ Blog Layout
Or you can manually edit the archive.php file, but you would need to know advanced PHP there is not an easy way to do this.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeNovember 21, 2022 at 1:23 pm in reply to: Browser cache keep bugging me – any suggestions/solutions? #1373362Hey Chrilles,
Thanks for your question, is this because you are still creating your site or because of the nature of your site that you expect to always be making a lot of changes?
I recommend disabling your server cache until you are done with your site, it sounds like that is the main issue.
You can also disable your cache plugin and the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression if you are still struggling.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey trustedone,
Thanks for your question, please link to an example page so we can investigate, could the black be your background color?
If you are using any image optimization plugins try disabling them.Best regards,
MikeHi,
I’m still not sure what you mean, are you trying to style the category pages and you call it “kategorie” like the one linked below?
You can not manually change their layout, the option you are talking about is to change the layout of a blog page by creating one with the elements, but it doesn’t change the archive pages like categories. Your category pages will follow the 3 options at Enfold Theme Options ▸ Blog Layout:
Default (Business)
Elegant
Modern BusinessBest regards,
MikeHi,
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHi,
Unfortunately not, our contact form is basic, for more advanced features try the Contact Form 7 and its addonsBest regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
Mike -
AuthorPosts

