Forum Replies Created

Viewing 30 posts - 11,821 through 11,850 (of 34,988 total)
  • Author
    Posts
  • in reply to: Which logo solution on a transparent header ? #1353051

    Hi,
    Glad Nikko was 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: Text disappears in the background #1353050

    Hi,
    Thank you for your patience, I found the solution a little more complicated because you are using the Sticky with curtain effect Footer Behavior, but by adding this custom class to the color section with the overlay columns: top-column-overlay-with-curtain-footer and this css:

    #top.av-curtain-footer.av-curtain-activated #main > *:not(.av-curtain-footer-container) {
        z-index: 2;
    }
    #top.av-curtain-footer.av-curtain-activated #main > .top-column-overlay-with-curtain-footer  {
    	z-index: 5;
    }

    Please note that the following color section should have it’s height set to at least 35% or 300px to allow for the column overlay.
    I tested this on your homepage and /sunbeckia/
    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Different font-weight main menu #1352942

    Hi,
    Glad Ismael 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: Full width submenu on tablets and mobiles #1352940

    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: Formatieren einer Tabelle avia-data-table via css #1352939

    Hi,
    Glad to hear this is working for you, if you choose to add a custom class you would add it in the table element developer settings:
    2022-05-25_001.jpg
    in this example the custom class is custom-table note that no dot is used, then you would add the custom class to the css like this:

    .main_color table.custom-table {
    	background-color: #fff;
    }
    .main_color table.custom-table td {
    	border: none;
    }
    #main .main_color table.custom-table td:nth-child(1) {
    	color: rgb(0, 141, 202);
    	font-weight: bold;
    }
    #main .main_color table.custom-table td:nth-child(2) {
    	color: #000;
    	font-weight: bold;
    }

    To make the menu smaller try this css:

    #top #header #header_main_alternate .container,
    .html_header_top.html_bottom_nav_header #top #header_main_alternate .main_menu>div, 
    .html_header_top.html_bottom_nav_header #top #header_main_alternate .main_menu ul:first-child,
    .html_header_top #top .av_bottom_nav_header #header_main_alternate .main_menu ul:first-child > li > a {
        height: 30px;
        line-height: 30px;
    }

    the current height is 50px, so this will make it 30px or adjust to suit.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Glad Ismael 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: Image and Text same height #1352897

    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

    Hi,
    Unfortunately your theme has not been updated, please see your other thread for more info.

    Best regards,
    Mike

    in reply to: Background video doesn't load #1352832

    Hi,
    I see that your theme has not been updated:
    2022-05-24_004.jpg
    the Envato Market plugin says you have incorrect token permissions:
    2022-05-24_005.jpg
    please only check the token permissions as in the image Nikko posted above, you can read how in our documentation
    If you still have trouble with it, you could update your version of Enfold by downloading the latest version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: Problème taille des colonne et des lignes #1352831

    Hi,
    To make your grid row element sticky you can use the same script that was given in another thread:

    function custom_collant_script() { ?>
        <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
      $(function() {       
         var scroll_start = 0;
         var startchange = $('.avia-section.collant');
         var offset = startchange.offset();
         var width = $(window).width()
          if (startchange.length){
         $(document).scroll(function() { 
            scroll_start = $(this).scrollTop();
            if((width >= 990) && (scroll_start > offset.top - 117)) {
              document.querySelector('.avia-section.collant').classList.add('sticky-top');
             } else {
              document.querySelector('.avia-section.collant').classList.remove('sticky-top');
             }
         });
          }
      });
    })(jQuery);
    });
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_collant_script');

    I added this custom class to the grid row for you avia-section collan
    2022-05-24_003.jpg
    and now the grid row sticks near the top, the only thing is that this function sticks 117px from the top because on the other page you had a sticky header, but for product pages it looks like you want to remove the sticky header, is this correct or are you going to use a sticky header on your product pages too?

    Best regards,
    Mike

    in reply to: Grid background image #1352797

    Hi,
    Glad Nikko was 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

    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: Formatieren einer Tabelle avia-data-table via css #1352793

    Hi,
    Thank you for the link to your site with the example, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    .main_color table.avia-data-table {
    	background-color: #fff;
    }
    .main_color table.avia-data-table td {
    	border: none;
    }
    #main .main_color table.avia-data-table td:nth-child(1) {
    	color: rgb(0, 141, 202);
    	font-weight: bold;
    }
    #main .main_color table.avia-data-table td:nth-child(2) {
    	color: #000;
    	font-weight: bold;
    }

    After applying the css, please clear your browser cache and check.
    This css will affect all tables on your site, so I recommend adding a custom class to your table element and including it in the css so you can control which tables will get this style.

    Best regards,
    Mike

    Hi,
    Glad to hear that you have this sorted out, and thanks for following up with your solution. 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: Image and Text same height #1352788

    Hey babettegcc,
    Thanks for the screenshot and the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top .avia-testimonial_inner > .avia-testimonial-content {
    	height: 80px !important;
        vertical-align: middle !important;
        display: table-cell !important;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Huge gap on moblie devices #1352754

    Hey whdsolutions,
    Thanks for the screenshot but I’m not able to reproduce this in Chrome Dev Tools (320px – 425px) or on an actual Android device (360px).
    I also tested with browserstack.com on a live iPhone 13 and there was no gap.
    If you are testing with an iPhone, can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.
    Please see the screenshots in the Private Content area.

    Best regards,
    Mike

    in reply to: Burger menu incorrect on smartphone across #1352752

    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: avia_inline_auto / class="phone-info " / Header #1352750

    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: custom logo size 300xp is too small #1352749

    Hi,
    I found an error in your css, please clear your browser cache and check again.

    Best regards,
    Mike

    Hi,
    To add more pages add them like this:
    if(is_page(array(42, 21, 85))) {

    Best regards,
    Mike

    in reply to: Anchors on Tablet #1352651

    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: WPML changes font & color #1352629

    Hi,
    Glad to hear, you should be able to use wp-rocket, we just wanted to clear the cache. Try enabling it again and checking, also use the wp-rocket options to clear it’s cache, if all is good then try enabling the theme Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression, if all is fine then good you are all set, if you see an error again then check if wp-rocket has a minifying option enabled, if so disable this option, because if the theme and wp-rocket are both minifying this could cause issues.
    Try different settings until all is working well again.

    Best regards,
    Mike

    in reply to: Problems with shortcode for Product Slider #1352628

    Hi,
    Sorry, I was not able to reproduce this on my site, so I don’t believe that there is an error in the in above code.
    Try rewriting your function without the wrapping divs and just inject the shortcode of the element.

    Best regards,
    Mike

    in reply to: Anchors on Tablet #1352626

    Hi,
    Glad this helped, it is a customization for you so keep in your child theme, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: custom logo size 300xp is too small #1352623

    Hi,
    Thanks for the feedback I adjusted, please clear your browser cache and check and see the screenshot in the Private Content area.

    Best regards,
    Mike

    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: H2 Stuck in all caps. #1352583

    Hey jkos,
    Thanks for the login I added this css to your WordPress ▸ Customize ▸ Additional CSS field to correct:

    #main .template-page .entry-content-wrapper h2{
    	text-transform: capitalize;
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Block edits don't appear in preview. #1352580

    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: Slide Font Line #1352579

    Hi,
    Thanks for the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #full_slider_1 .slideshow_caption {
        width: 55%;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Full width submenu on tablets and mobiles #1352578

    Hey Asterios,
    This is because for mobile the theme doesn’t expect a fixed header as your customization, so the sticky menu has it’s height set to auto and position absolute.
    For your situation try this css:

    @media only screen and (max-width: 782px) { 
    	#sub_menu1 {
    		 top: 117px !important;
    		 position: fixed !important;
    	}
    
    }
    
    @media only screen and (min-width: 783px) and (max-width: 989px) { 
    	#sub_menu1 {
    		 top: 121px !important;
    		 position: fixed !important;
    	}
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

Viewing 30 posts - 11,821 through 11,850 (of 34,988 total)