Forum Replies Created

Viewing 30 posts - 11,761 through 11,790 (of 34,910 total)
  • Author
    Posts
  • 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

    in reply to: Menu below #1352574

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

    Hey tsvweinsberg,
    Thanks for the screenshots, if you make the text area wider the text will stay in one line.
    If you need help with the css to do this please link to the page so we can examine.

    Best regards,
    Mike

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

    Hi,
    You will need to try it in the Envato private token field in the theme.
    2022-05-22_005.jpg

    Best regards,
    Mike

    in reply to: Breadcrums on tablets and mobiles #1352569

    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,
    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: Block edits don't appear in preview. #1352565

    Hi,
    Thanks for the login, although it doesn’t seem to be admin because I couldn’t view most of the backend, I see that your issue is with the WordPress Block Editor and an error in it’s styling, it has not added the semicolon to the source code:
    2022-05-22_004.jpg
    for your situation you can try this css in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    .has-col-969696-color.has-col-000000-background-color.has-text-color.has-background.has-fs-20-px-font-size {
        color: rgb(150, 150, 150);
        background-color: rgb(0, 0, 0);
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        font-family: serif;
        text-transform: capitalize;
        letter-spacing: 23px;
        white-space: pre-wrap;
        min-width: 1px;
    }

    After applying the css, please clear your browser cache and check.
    We can’t adjust the Block Editor because it is a core WordPress element, perhaps try the Advanced Layout Builder.

    Best regards,
    Mike

    in reply to: Breadcrums on tablets and mobiles #1352561

    Hey Asterios,
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    @media only screen and (max-width: 767px) { 
    	#main > .title_container {
    		position: fixed;
    		width: 95%;
    		z-index: 5;	
    		margin-top: 72px;
    	}
    	#main > .title_container + .container_wrap_first {
    		top: 144px;
    	}
    }
    
    @media only screen and (min-width: 768px) and (max-width: 989px) { 
    	#main > .title_container {
    		position: fixed;
    		width: 95%;
    		z-index: 5;	
    		margin-top: 92px;
    	}
    	#main > .title_container + .container_wrap_first {
    		top: 150px;
    	}
    }

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

    Best regards,
    Mike

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

    Hi,
    To add a screenshot please try using an Screenshot service and pasting the image URL in your post.

    Best regards,
    Mike

    in reply to: Personalize footer #1352550

    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: Sticky header covers content of destination anchor #1352549

    Hi,
    You would need to copy the whole code for each link, it might be better to list your pages as an array like:
    if(is_page(array(42, 57, 71))) {

    Best regards,
    Mike

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

    Hi,
    The token should be a string of characters like in this image in our documentation
    2022-05-22_003.jpg
    please check the link above for our documentation.

    Best regards,
    Mike

    Hi,
    I believe the issue is that you are using an old version of the theme: v4.7.3 we are now at v4.9.2.3 so please try updating.
    I wrote more about updating in your other thread, please check.

    Best regards,
    Mike

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

    Hi,
    Thank you for the link to your site, I found that your youtube link was incorrect so I adjusted it, see the Private Content area below for the correct video format, but your video is still showing the “this video is unavailable” error, I tested this on my demo site and it does work correctly so I believe the issue is that you are using and old version of the theme: v4.7.3 we are now at v4.9.2.3 so please try updating.
    I see that you have not added a valid Envato private token so you will need to do this to update.
    I also see that your PHP version: 7.3.33, WordPress recommends a minimum of 7.4
    2022-05-22_002.jpg
    so you should probably ask your webhost to update your PHP first then update your theme.

    Best regards,
    Mike

    Hey 4ward4x4,
    Thanks for your question, you would want to change the header color in the Logo Area Hintergrundfarbe option
    2022-05-22_001.jpg

    Best regards,
    Mike

    in reply to: Table Display/Tab Content #1352538

    Hi,
    That is the code I tested to remove the touchmove from your tab section, it is not on your page.
    You can test it if you like by adding it to the end of your functions.php file in Appearance ▸ Editor like this:

    function custom_script() { ?>
        <script>
    (function($) {
    $('.av-layout-tab').bind('touchmove', false);
    }(jQuery)); 
        </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    but my goal was to allow your table to scroll while removing it from your tab section, but it didn’t work as planned.

    Best regards,
    Mike

    Hey sky19er,
    Thanks for your question, you can limit the size of the container to 500px with this css:

    #accordion_slider_1 .avia-accordion {
    	max-height: 500px;
    }

    but your current images will not be the correct ratio because the width of each image needs to cover the space for the mouse-over.
    With your current images you could correct this with this css:

    #accordion_slider_1 .avia-accordion {
    	max-height: 500px;
    }
    
    #top .aviaccordion-slide img {
    	object-fit: cover;
    	object-position: left bottom;
    }

    this allows the image to show the correct ratio, but I don’t believe this is want you want because the resolution is the same.
    I believe to achieve what you want you should use images that are double the size you want to show, such as 1000px X 1776px, then when you limit the height to 500px the image will show as 500px X 888px (16:9) and look crisper on retina screens.

    Best regards,
    Mike

    in reply to: Set breakpoint for mobile or tablet #1352516

    Hi,
    Glad to hear, the social icons didn’t show in the mobile header, you are using the sidebar header so if you show them are are not really in a good location, you can test with this css:

    @media only screen and (min-width: 767px) and (max-width: 1100px){
    .responsive.html_header_sidebar #top #header #wrap_all .social_bookmarks {
        display: block;
    }
    }

    The Gtranslate flags happen to show under the header, you can use this css which adjusts the burger menu down a little:

    @media only screen and (min-width: 767px) and (max-width: 1100px){
    .responsive.html_header_sidebar #header .avia-custom-sidebar-widget-area #gtranslate-4 {
        display: block;
        padding: 0;
        border-top-width: 0px;
        text-align: center;
    }
    .responsive #top #wrap_all .main_menu {
        top: 22%;
    }
    }

    When I check I see the social icons in the socket, please check again

    Best regards,
    Mike

    in reply to: Set breakpoint for mobile or tablet #1352511

    Hey Arjan,
    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:

    @media only screen and (min-width: 767px) and (max-width: 1100px) {
    
    		/*header*/		
    		.responsive #top #wrap_all #header {position: relative; width:100%; float:none; height:auto; margin:0 !important; opacity: 1; min-height:0;}
    		.responsive #top #main {padding-top:0 !important; margin:0;}
    		.responsive #top #main .container_wrap:first-child{ border-top:none; }
    		.responsive.html_header_top.html_logo_center .logo { left: 0%; -webkit-transform: translate(0%, 0); -ms-transform: translate(0%, 0); transform: translate(0%, 0); margin:0; }
    		
    		
    		.responsive #top .logo{position: static; display:table; height:80px !important; float:none; padding:0; border:none; width:80%; }
    		.responsive .logo a{display:table-cell; vertical-align: middle;} 
    		.responsive .logo img{height:auto !important; width:auto; max-width: 100%; display: block;  max-height: 80px;}
    		.responsive #header_main .container{height:auto !important; }
    		.responsive #top .header_bg { opacity: 1; filter: alpha(opacity=1); }
    		.responsive.social_header .phone-info {text-align: center; float:none; clear:both; margin:0; padding:0;}
    		.responsive.social_header .phone-info span{border:none; width:100%; text-align: center; float:none; clear:both; margin:0; padding:0;}
    		.responsive #header_meta .social_bookmarks li{ border-style:solid; border-width:1px; margin-bottom:-1px; margin-left:-1px;}
    		.responsive #top #header_meta .social_bookmarks li:last-child{border-right-style: solid; border-right-width:  1px;}
    		.responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul{float:none; width:100%; text-align: center; margin:0 auto; position: static;}
    		.responsive #header .social_bookmarks{padding-bottom:2px; width:100%; text-align: center; height:auto; line-height: 0.8em; margin:0;}
    		.responsive #header_meta .sub_menu>ul>li{float:none; display: inline-block; padding: 0 10px;}
    		.responsive #header .social_bookmarks li{float:none; display: inline-block;}
    		.responsive.bottom_nav_header #header_main .social_bookmarks{ position: relative; top: 0; right: 0; margin: 10px auto; clear:both;}
    		.responsive.bottom_nav_header.social_header .main_menu>div{height:auto;}
    		.responsive .logo img{margin:0;}
    		.responsive.html_header_sidebar #top #header .social_bookmarks{display:none;}
    		.responsive body.boxed#top, .responsive.html_boxed.html_header_sticky #top #header{max-width: 100%;}
    		
    		.responsive.html_header_transparency #top .avia-builder-el-0 .container, .responsive.html_header_transparency #top .avia-builder-el-0 .slideshow_inner_caption{padding-top:0;}
    		.responsive #top .av_phone_active_right .phone-info.with_nav span{border:none;}
    		
    		.responsive #top #wrap_all .av_header_transparency .main_menu ul:first-child > li > a, 
    		.responsive #top #wrap_all .av_header_transparency .sub_menu > ul > li > a, 
    		.responsive #top .av_header_transparency #header_main_alternate, 
    		.responsive .av_header_transparency #header_main .social_bookmarks li a,
    		.responsive #top #wrap_all .av_header_transparency .phone-info.with_nav span,
    		.responsive #top .av_header_transparency #header_meta, 
    		.responsive #top .av_header_transparency #header_meta li,
    		.responsive #top #header_meta .social_bookmarks li a{ color:inherit; border-color: inherit; background: inherit;}
    		.responsive.html_top_nav_header .av-logo-container{height:auto;}
    		.responsive.html_top_nav_header .av-section-bottom-logo{border-bottom-style: solid; border-bottom-width: 1px;}
    
    /*new mobile*/
    		.responsive .av-burger-menu-main{display: block;}
    		.responsive #top #wrap_all .main_menu{top:0;height:80px;left:auto;right: 0;display: block;position: absolute;}
    		.responsive .main_menu ul:first-child > li a { height: 80px; line-height: 80px;}
    		.responsive #top .av-main-nav .menu-item{display:none;}
    		.responsive #top .av-main-nav .menu-item-avia-special{display:block;}
    		.responsive #top #wrap_all .menu-item-search-dropdown > a { font-size: 24px; }
    		.responsive #header_main_alternate{display:none;}
    		.responsive #top #header .social_bookmarks{display:none;}
    		.responsive #top #header .main_menu .social_bookmarks{display:block; position: relative; margin-top: -15px;}
    		.responsive #top .av-logo-container .avia-menu{height:100%;}
    		.responsive #top .av-logo-container .avia-menu > li > a{line-height: 80px;}
    		.responsive #top #main .av-logo-container .main_menu{display:block;}
    		.responsive #top #main .av-logo-container .social_bookmarks{display:none;}
    		.responsive #top #main .av-logo-container .main_menu .social_bookmarks{display:block; position: relative;}
    		.responsive #top #main .av-logo-container .main_menu{display:block;}
    		.responsive #top #header_main > .container .main_menu  .av-main-nav > li > a,
    		.responsive #top #wrap_all .av-logo-container {height:80px; line-height:80px; }
    		.responsive #top #wrap_all .av-logo-container {padding:0;}
    		.responsive #top #header_main > .container .main_menu  .av-main-nav > li > a{
    			min-width: 0; padding:0 0 0 20px; margin:0; border-style: none; border-width: 0;
    		}
    		.responsive #top .av_seperator_big_border .avia-menu.av_menu_icon_beside{border-right-style: solid; border-right-width: 1px; padding-right: 25px;}
    		.responsive #top #header .av-main-nav > li > a, .responsive #top #header .av-main-nav > li > a:hover{
    		background:transparent;
    		color: inherit;
    		}
    .html_cart_at_menu.html_header_sidebar #header_main .avia-menu {
        margin-top: 0px;
    }
    .responsive.html_header_sidebar #header .avia-custom-sidebar-widget-area .widget {
      display: none;
    }
    .html_header_sidebar #menu-item-shop.cart_dropdown {
        right: 80px;
        border: none;
        margin-top: 15px;
    }
    .html_header_sidebar #header .container {
    	width: 85%;
    }
    }

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

    Best regards,
    Mike

Viewing 30 posts - 11,761 through 11,790 (of 34,910 total)