Forum Replies Created

Viewing 30 posts - 16,861 through 16,890 (of 35,071 total)
  • Author
    Posts
  • in reply to: Align last element in equal height columns to bottom #1216466

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: hot to remove this raw #1216462

    Hi,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub)
    {
      $sub .= "<span class='logo-title logo-subtitle'>";
      $sub .= "test";
      $sub .= "</span>";
      return $sub;
    }

    Please adjust the “test” to the text you wish
    then and add this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    
    #top .logo, #top .logo a {
        overflow: visible;
    }
    
    #top .logo-subtitle {
        font-size: 18px !important;
        top: 30px !important;
        position: absolute;
        right: -50px;
    }

    You will probably want to style your text more, feel free to adjust the css.

    Best regards,
    Mike

    in reply to: Column Spacing #1216449

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Quiz from Forminator Plugin not shown on mobile view #1216447

    Hi,
    I took a look at your page but I don’t see a quiz on desktop or mobile, the login doesn’t seem to be working, please check.

    Best regards,
    Mike

    in reply to: Featured images not displaying #1216321

    Hi,
    I took a look at the WPeMatico RSS Feed Fetcher plugin and I notice it says:

    FULL Content: Takes the item permalink and scratches its web page to find the full content. Set the featured image from meta tags of source web page, Open Graph or Twitter images. Also allows set up a configuration file for every domain pointing to what section of the web page must be obtained.

    So I wonder if your featured image is not targeted correctly or perhaps the site you are scraping is using a lazy load plugin.
    Try disabling all plugins and cashing on both sites except for the WPeMatico and ensure the Enfold Theme Options > Performance > Load jQuery in your footer is disabled and then test.

    Best regards,
    Mike

    Hey CodeSamurai,
    Sorry for the late reply, 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 .av-alb-blogposts.template-blog > .post-entry > .blog-meta {
    		display: inline-block !important;
    		width: 100% !important;
    	}
    	.av-alb-blogposts.template-blog > .post-entry > .blog-meta > a {
    		width: 100% !important;
            height: auto !important;
    	}
    	.template-blog .post .entry-content-wrapper {
        overflow: visible !important; 
    }
    }

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

    Best regards,
    Mike

    in reply to: Hide a page in Page Sidebar navigation #1216311

    Hey Ashley,
    Sorry for the late reply, here is a script that toggles the sub-menu items and the sub-menu can be expanded on the current page.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){ 
          $('#menu-supermarket-shop-1 > li.menu-item-has-children').find('ul').hide();
           $('#menu-supermarket-shop-1 > li.menu-item-has-children').click(function () {  
               $('#menu-supermarket-shop-1 > li.menu-item-has-children').not(this).find('ul').hide();  
               $(this).find('ul').toggle();  
           });  
        });  
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Please adjust the #menu-supermarket-shop-1 to your sidebar navigation ID, if you need help adjusting this to your site please include a link to an example page.
    Also, the script above works best if the parent menu item has no link so that clicking it will expand the menu instead of going to a page.

    Best regards,
    Mike

    in reply to: Enfold accordion not visible in a popup window #1216306

    Hi,
    Glad to hear, thank you for the feedback.

    Best regards,
    Mike

    in reply to: add zoom effect on blog element #1216301

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field instead:

    .avia-content-slider a.slide-image > img {
    	animation: growout 2s;
    	animation-fill-mode: forwards;
    }
    .avia-content-slider a.slide-image:hover > img {
    	animation: growin 2s;
    	animation-fill-mode: forwards;
    }
    @keyframes growin {
      from {transform: scale(1)}
      to {transform: scale(1.2)}
    }
    @keyframes growout {
      from {transform: scale(1.2)}
      to {transform: scale(1)}
    }

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

    Best regards,
    Mike

    Hi,

    @Terve
    ,
    I went to your page and in the “CONSENT MANAGEMENT” tab halfway down there is an icon list under “FLEXIBLE CONSENT MANAGEMENT”, the animation here seems to be working here correctly. Is this also what you are checking?


    @manyfl2or

    Please try to deactivate the js file compression and any other caching plugins, then clear your browser cache, and check.
    Please link to the element so we can check.

    Best regards,
    Mike

    in reply to: main menu #1216129

    Hi,
    Sorry for the late reply and thanks for the screenshot, to enlarge your logo so it hangs down over your page try this css:

    span.logo {
    height: 200px !important;
    }

    Please adjust to suit, after applying the css, please clear your browser cache and check.
    2020-05-25_075706.png

    Best regards,
    Mike

    Hi,
    Sorry for the late reply and thanks for the screenshot, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top #header:not(.header-scrolled) #header_main > .container .main_menu ul:first-child > li > a {
    height: 30px !important;
    line-height: 30px !important;
    }
    
    #top #header:not(.header-scrolled) #header_main > .container .main_menu .avia-menu {
    top: 60px;
    }

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

    Best regards,
    Mike

    in reply to: Unavailable and variable products #1216112

    Hi,
    Thanks, it’s still down for me, I also tried using a VPN with a french IP address but it didn’t work.

    Best regards,
    Mike

    in reply to: multiple video sources in color section #1216103

    Hi,
    I’m not sure, it does use the same html5 player so it should.

    Best regards,
    Mike

    in reply to: Elements of timeline sometimes missing #1216099

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hi,
    Thank you for the screenshots this helps explain the issue, I don’t have an iPhone but on my Android device, it looks like your first screenshot, but it is about 425px wide, in the dev tools if I simulate device 320px wide then the widget is off-screen like your second screenshot.
    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: 375px) { 
    	#header .widget {
        right: 0px !important;
    	}
    	.kontakt {
        width: 160% !important;
    }
    }

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

    Best regards,
    Mike

    in reply to: prev, next arrows on portfolio and posts #1216088

    Hi,
    In this case the “#custom-footer” is 826px high, so it does look better with the next & previous pagination behind the footer.

    Best regards,
    Mike

    in reply to: Unable to change timeline Font size #1216080

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hi,
    Sorry, I have checked your site on an Android device but I’m not sure what the issue is, your screenshots are for a desktop view that is too large for mobile, please include a mockup for mobile devices.

    Best regards,
    Mike

    in reply to: content elements as jump links? #1215925

    Hi,
    Glad to hear you have it sorted out now, I had thought that numbers were not allowed as an ID.
    We will go ahead and close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Links/ Klicks in Accordion Slider #1215910

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

    .avia-accordion-slider-wrap a.aviaccordion-slide-link {
    	pointer-events: none !important; 
    }

    After applying the css, Please clear your browser cache and check.
    If this doesn’t help please include a URL to a test page with the element so we can take a closer look.

    Best regards,
    Mike

    in reply to: multiple video sources in color section #1215909

    Hi,
    To add multiple video sources for locally hosted videos try creating your other sources like .webm & .ogg and upload them to the same directory as the .mp4 file via ftp. When the WordPress html5 player loads the video it first looks for .ogg, then .webm, & .mp4
    Yes, the fallback image will show every time a browser can´t display the video, mobile or not.

    Best regards,
    Mike

    in reply to: Remove post date and comment from blog page #1215908

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .slide-entry > .slide-content > .slide-meta {
    	display: none !important;
    }

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

    Best regards,
    Mike

    in reply to: Unable to change timeline Font size #1215907

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    h2.av-milestone-date > strong {
    	font-size: 18px !important;
    }

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

    Best regards,
    Mike

    in reply to: add zoom effect on blog element #1215906

    Hi,
    Thanks for the link, to add “grow” animation to the images in your Recent News section, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .avia-content-slider a.slide-image:hover > img {
    	animation: grow 2s;
    	animation-fill-mode: forwards;
    }
    @keyframes grow {
      to {
          transform: scale(1.2)
      }
    }

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

    Best regards,
    Mike

    in reply to: hot to remove this raw #1215904

    Hi,
    Please try disabling the sidebar for the page:
    2020-05-24_204233.png

    Best regards,
    Mike

    Hey Alexander,
    The diagonal border has a invisible section the height of the border that is over the top of your button, so try using the margin or padding to move the border down away from the button, or try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #av_section_1 > div.av-section-color-overlay-wrap > div.av-extra-border-element.border-extra-diagonal.border-extra-diagonal-inverse {
    	    margin-top: 0px !important;
    }

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

    Best regards,
    Mike

    in reply to: prev, next arrows on portfolio and posts #1215902

    Hi,
    Sorry for the late reply, it looks like you forgot to make your footer position: relative
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #custom-footer {
        position: relative !important;
    }

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

    Best regards,
    Mike

    in reply to: Unavailable and variable products #1215900

    Hi,
    Your site seems to be down right now, please let us know when it is back up.

    Best regards,
    Mike

Viewing 30 posts - 16,861 through 16,890 (of 35,071 total)