Forum Replies Created

Viewing 30 posts - 10,051 through 10,080 (of 35,061 total)
  • Author
    Posts
  • Hi,
    When I check this one in footer 4 doesn’t look set:
    2022-11-22_002.jpeg
    and so if no widget is set the default widget will show.

    Best regards,
    Mike

    in reply to: Changing Breadcrumbs navigation #1373518

    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,
    Mike

    in reply to: Transparent Header in Tables/mobile sizes #1373513

    Hey 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,
    Mike

    Hey 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,
    Mike

    in reply to: product slider formatting on mobile #1373505

    Hey 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,
    Mike

    in reply to: Can I remove deafult padding between elements? #1373501

    Hi,
    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,
    Mike

    in reply to: Easy Slider title – no transformation #1373499

    Hi,
    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

    Hey 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,
    Mike

    in reply to: Easy Slider title – no transformation #1373490

    Hey 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,
    Mike

    in reply to: Phone number above logo when main menu placed in a sidebar #1373487

    Hi,
    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,
    Mike

    in reply to: Standard Blog Layout #1373486

    Hi,
    That is a good idea, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Blog grid icon overlay on permanently #1373484

    Hi,
    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

    in reply to: background Vimeo video on homepage #1373443

    Hi,
    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,
    Mike

    Hi,
    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,
    Mike

    in reply to: Blog grid icon overlay on permanently #1373428

    Hey 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,
    Mike

    in reply to: Mailchimp newsletter modul not working #1373426

    Hi,
    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,
    Mike

    in reply to: Pagination in Portfolios gives a 404 #1373418

    Hi,
    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,
    Mike

    in reply to: Burger menu doesn't show #1373417

    Hi,
    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,
    Mike

    in reply to: Burger menu doesn't show #1373416

    Hi,
    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,
    Mike

    in reply to: Standard Blog Layout #1373377

    Hi,
    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,
    Mike

    in reply to: Standard Blog Layout #1373374

    Hi,
    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,
    Mike

    in reply to: Fonts keep on changing #1373365

    Hi,
    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

    Hey 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,
    Mike

    in reply to: Styling issue on shopping cart page #1373358

    Hi,
    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

    in reply to: Contact form set field value #1373356

    Hi,
    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

    in reply to: background of a png image is displaying black #1373353

    Hey 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,
    Mike

    in reply to: Standard Blog Layout #1373351

    Hi,
    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 Business

    Best regards,
    Mike

    in reply to: Styling issue on shopping cart page #1373347

    Hi,
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Contact form set field value #1373346

    Hi,
    Unfortunately not, our contact form is basic, for more advanced features try the Contact Form 7 and its addons

    Best regards,
    Mike

    in reply to: bug: container after blog footer #1373341

    Hi,
    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

Viewing 30 posts - 10,051 through 10,080 (of 35,061 total)