Forum Replies Created

Viewing 30 posts - 20,251 through 20,280 (of 35,068 total)
  • Author
    Posts
  • in reply to: Responsive Advanced Layerslider #1128710

    Hi,
    You need to add the second slider to the page in the backend, so you have two sliders like this:
    2019-08-18-141427

    Best regards,
    Mike

    in reply to: Responsive Advanced Layerslider #1128703

    Hi,
    You don’t need to add the ID’s to the lyerslider, it is automatically created in the theme, and add the css above, as is, to your Quick CSS in the theme.

    Best regards,
    Mike

    in reply to: Responsive Advanced Layerslider #1128694

    Hi,
    In the css it is #layer_slider_1 & #layer_slider_2 as above.

    *side note*
    In css the hashtag means ID & a dot means class.
    But if you ever add custom classes or ID’s in the elements you would not add the dots & hashtags, I hope I’m not confusing you, if so just ignore this side note :)

    Best regards,
    Mike

    in reply to: Problems with one-page-menu #1128689

    Hi,
    Ok, 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: Responsive Advanced Layerslider #1128687

    Hi,
    I recommend using the auto-generated slider ID’s, for example, the slider that is on your front page now is “#layer_slider_1” so if you add another one to the page it should be “#layer_slider_2”
    I understand that your site is live and you won’t want it to look too odd for very long, so I recommend creating your second slider and then add an admin login in the Private Content area, I will add it to your front page and add the css and test for you, if you wish.
    Or you could try adding the second slider and try this css code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (min-width: 501px) {
    #layer_slider_1 {
    display: block !important;
    }
    #layer_slider_2 {
    display: none !important;
    }
    }
    @media only screen and (max-width: 500px) {
    #layer_slider_2 {
    display: block !important;
    }
    #layer_slider_1 {
    display: none !important;
    }
    }

    I tested this on my localhost and it works correctly using the auto generated ID’s, but you will want to remove the other css added from the above posts.
    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Suddenly font displays in italics #1128571

    Hey Julie,
    Sorry for the late reply, thanks for the login. I took a look at your page and see italics, but everywhere I look in the backend I also see manually entered

    <em>

    , such as the Team Member Description & Accordion Toggles, so I’m not sure where you see the error and have a italics you do not want. Please advise. One possibility is that you have an open italics tag somewhere that is affecting the regular text.

    Best regards,
    Mike

    in reply to: Responsive Advanced Layerslider #1128570

    Hi,
    Sorry for the late reply, the best solution, in this case, is to create a second slider for mobile devices. You can clone your desktop version and then adjust the canvas size to match mobile, that is to make it taller than wide 425px x 168px or how ever tall you wish it to be.
    2019-08-17-204755
    Then you can make your text and buttons larger and align them on the page as you like.
    Then you can use css to hide and show the two sliders depending on the screen size, for example:

    @media only screen and (min-width: 768px) {
        #layerslider-1 {
            display: block !important;
        }
        #layerslider-2 {
        display: none !important;
        }
    }
    @media only screen and (max-width: 767px) {
        #layerslider-2 {
            display: block !important;
        }
        #layerslider-1 {
        display: none !important;
        }
    }

    If you would like help with the css please create the slider and include admin login in the Private Content area so we can examine the sectors and write the css.

    Best regards,
    Mike

    in reply to: LayerSlider Responsive #1128568

    Hi,
    Sorry for the late reply, the best solution, in this case, is to create a second slider for mobile devices. You can clone your desktop version and then adjust the canvas size to match mobile, that is to make it taller than wide 425px x 168px or how ever tall you wish it to be.
    2019-08-17-204755
    Then you can make your text and buttons larger and align them on the page as you like.
    Then you can use css to hide and show the two sliders depending on the screen size, for example:

    @media only screen and (min-width: 768px) {
        #layerslider-1 {
            display: block !important;
        }
        #layerslider-2 {
        display: none !important;
        }
    }
    @media only screen and (max-width: 767px) {
        #layerslider-2 {
            display: block !important;
        }
        #layerslider-1 {
        display: none !important;
        }
    }

    If you would like help with the css please create the slider and include admin login in the Private Content area so we can examine the sectors and write the css.

    Best regards,
    Mike

    in reply to: horizontal Gallery #1128565

    Hi,
    Glad Ismael could help direct you in the right direction, shall we close this then?

    Best regards,
    Mike

    in reply to: Product Not Showing up as a Coupon Addition #1128564

    Hi,
    Sorry for the late reply, I was able to add your product to the coupon only by entering the slug “Quartz-banger-1”
    if I entered only “Quartz” it would not show, odd.
    Anyways now you can fill out the other fields and start using it.
    Please see the screenshot in Private Content area.

    Best regards,
    Mike

    Hi,
    Sorry but there is no ETA at this time, but I can tell you there is a lot of activity on this on this on our GitHub page so it is moving forward quickly. Thank you for your patience.

    Best regards,
    Mike

    in reply to: Blog meta elements setting not working #1128560

    Hi,
    Sorry for the late reply, Please include an admin login in the Private Content area so we can investigate.

    Best regards,
    Mike

    in reply to: revolution-slider-6-not-working #1128559

    Hi,
    Sorry for the late reply, and thank you for the link. It seems that your slider is showing, Please see the screenshot in Private Content area. But I didn’t find an admin login above so I’m not sure if something is missing. Is this the correct slider?

    Best regards,
    Mike

    in reply to: No Parent Page but Menu Still Selected #1128541

    Hi,
    Sorry for the late reply, and thanks for the link. This occurs because the “Home” menu item url points to “/#top” and not the url of your frontpage. To correct this Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.page-id-685 header_color .main_menu ul:first-child > li > a,#top.page-id-685 .header_color .main_menu ul:first-child > li.current-menu-item > a {
    	    color: #505050 !important; 
    }
    #top.page-id-685 .header_color .avia-menu-fx {
    	    background-color: transparent !important; 
    }

    Best regards,
    Mike

    in reply to: Layer Slider overlay #1128527

    Hi,
    Sorry for the late reply, yes you can, it is only a matter of using a video instead of an image. Please see the LayerSlider documentation here.

    Best regards,
    Mike

    in reply to: Add height to layerslider in responsive mode #1128519

    Hey Jak73,
    Sorry for the late reply, for the layerslider the best option, in this case, is to create two layersliders, one for desktop and one for mobile, ensuring that the canvas of the slider is the same ratio as a mobile device. That is taller than wide.
    Then use a css media query to show & hide them for the proper device, for example:

    @media only screen and (min-width: 768px) {
        #layerslider-1 {
            display: block !important;
        }
        #layerslider-2 {
        display: none !important;
        }
    }
    @media only screen and (max-width: 767px) {
        #layerslider-2 {
            display: block !important;
        }
        #layerslider-1 {
        display: none !important;
        }
    }

    If you would like some help with the css to do this, please create your mobile layerslider and include both sliders on a test page so we can examine the sectors.

    Best regards,
    Mike

    in reply to: Cell Size/Padding? #1128517

    Hi,
    Sorry for the late reply, and thanks for the link and screenshot.
    You are correct that this has to do with the aspect ratio of the video, if it was an image we could use background-size: contain to adjust better. Another issue is that the video is in an “iframe” so we can only adjust the container of the iframe and not the container that is in the iframe, which holds the video.
    But this css should help for mobile:

    @media only screen and (max-width: 767px) { 
    #av-layout-grid-1 .avia-video {
    	margin-bottom: 0 !important; 
    }
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Background image in color area on mobile #1128516

    Hi,
    Sorry for the late reply, yes you can use the media queries to show different elements for different screen sizes, while hiding others. I examined your page and found that you are doing this now with the “screen options” in the elements for two sections #av-masonry-1 & #av-masonry-2
    Please see the screenshot in Private Content area.
    So I will use this as an example so you could use the following css in the Quick CSS instead of the screen options:

    @media only screen and (min-width: 768px) {
        #av-masonry-1 {
            display: block !important;
        }
        #av-masonry-2 {
        display: none !important;
        }
    }
    @media only screen and (max-width: 767px) {
        #av-masonry-2 {
            display: block !important;
        }
        #av-masonry-1 {
        display: none !important;
        }
    }

    I hope this example helps to make this tactic clearer, please let us know if we can be of more help.

    Best regards,
    Mike

    in reply to: LayerSlider: Statisches Ende #1128514

    Hi,
    Entschuldigung für die verspätete Antwort, ich sehe, dass Ihr Schieberegler auf Ihrer letzten Folie stehen bleibt, auch wenn ich nach unten und nach oben scrolle. Haben Sie dies gelöst, indem Sie die Zykluseinstellung im oben geposteten Layerslider-Screenshot @victoria festgelegt haben?

    — Translated with Google —

    Sorry for the late reply, I see that your slider stops on your last slide even if I scroll down and back up, did you solve this by setting the cycle setting in the layerslider screenshot @victoria posted above?

    Best regards,
    Mike

    in reply to: PNG over video header possible? #1128512

    Hi,
    Sorry for the late reply, when I view your site the video is working for me every time. I followed @Guenni007’s suggestions and tried this css which placed a centered image in the video overlay, please try adding it to your Quick CSS:

    #top.page-id-40931 #full_slider_1 .av-click-overlay {
        background-color: transparent;
        opacity: 0.6;
        background-image: url(https://qsk52xngql-flywheel.netdna-ssl.com/wp-content/uploads/2019/08/High.jpg);
        background-repeat: no-repeat;
        background-position: 50% 30%;
    }

    Please see the screenshot in Private Content area.

    Best regards,
    Mike

    Hi,
    Thank you for the login, I have written this script for you to add to your functions.php it adds the class “avia_start_animation” to the li of the list when the page scrolls.
    You can adjust the distance to suit your needs, if you use 100 the animation will occur before you see it, and if you use the 400 that it is set in it now then you will see the animation because you are scrolling that far down. I was not sure if you want to see the animation or not.

    function custom_start_animation(){
      ?>
      <script>
    (function ($) { 
      $(window).scroll(function() {    
          var scroll = $(window).scrollTop();
          if (scroll > 400) {
              $('.avia_animate_when_almost_visible.avia-iconlist-animate li').addClass('avia_start_animation');
          } else {
             
          }
      });
     })(jQuery);
     <?php
    }
    add_action('wp_footer', 'custom_start_animation');

    Best regards,
    Mike

    Hi,
    Sorry for the late reply and for the test page.
    I saw that your page content was doubling up on that page so I Enabled Avia Layout Builder Debugger and the shortcode parser found errors in the shortcode structure, so I ran the auto fix and now your page is fixed.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: New Beta Version – Slider Revolution #1128497

    Hi,
    Sorry for the late reply, I have tried to read the entire thread to catch up and assist, so I’m looking at the page in the Private Content area and I see that in moble the div container for the slider is much larger than the slider in it. Please see the screenshot in Private Content area.
    To correct I added this css to your Quick CSS, in all 3 languages:

    #layer_slider_1.avia-layerslider {
    	min-height: 0 !important; 
    } 

    This page is now correct for me, I also checked a few other pages and they seem fine too, please check.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Problems with one-page-menu #1128491

    Hi,
    Sorry for the late reply, for your “Impressum” and “Darenschutz” in the footer, this script will highlight the footer menu items based on if the top bar menu links are highlighted.
    I was not sure what styling you wanted for the footer menu so I made it the same red.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_footer_menu_script(){
      ?>
      <script>
    (function($){
      $(function() {
       if ($('#menu-item-30').hasClass('current-menu-item')) {
          $('#menu-item-28 a').css('color', '#69183c');
        }
        else if ($('#menu-item-31').hasClass('current-menu-item')) {
          $('#menu-item-29 a').css('color', '#69183c');
        }else{
        }
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_footer_menu_script');

    Best regards,
    Mike

    in reply to: Responsive Content Images & Retina Screens #1128488

    Hi,
    Rob, thanks again for sharing your solution and explaining, this makes a lot of sense.

    Best regards,
    Mike

    Hi,
    Thank you, I do not see an admin login in the Private Content area, please try again.
    If you also include FTP access I will upload the latest beta version for you.

    Best regards,
    Mike

    Hi,

    @siljerang

    I believe you mean this is solved, please confirm.

    No it worked” = “Now it worked”

    Best regards,
    Mike

    in reply to: Site Not Working in Internet Explorer #1128484

    Hi,
    Glad to hear @JoeSurf, 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: Gradients (buttons and text) #1128482

    Hi,
    The jQuery code I posted last will not work in the Quick CSS field, that area is only for css.
    If you include an admin login I can demonstrate on a test page, or even on the one page you are working on.
    Or you can download the test page shortcode that I wrote about.
    But if you are fine with it as it is that ok too :)

    Best regards,
    Mike

    Hey AB,
    Entschuldigung für die verspätete Antwort. Wenn ich richtig verstanden habe, dass Sie Enfold v4.5.3 mit Woocommerce verwenden, gab es ein Problem mit dieser Version. Bitte aktualisieren Sie auf v4.5.7
    Leider müssen Sie mit v4.5.3 über FTP aktualisieren.
    Der einfachste und sicherste Weg, dies zu tun, besteht darin, die neueste Version von Theme Forest herunterzuladen und Ihr aktuelles Thema per FTP in “Enfold-Old” umzubenennen. Laden Sie dann das neue “Enfold” hoch und überprüfen Sie, ob Ihre Site ordnungsgemäß funktioniert.
    Wenn Sie zufrieden sind, können Sie das “Enfold-Old” über FTP löschen (nicht die WP-Themenseite).
    Wenn Sie aus irgendeinem Grund ein Rollback auf die alte Version durchführen möchten, ist dies ganz einfach. Benennen Sie das neue “Enfold” einfach über FTP in “Enfold-New” um und benennen Sie es dann in “Enfold” um und aktualisieren Sie es anschließend Seite.
    Bitte versuchen Sie nicht, den Themenordner zu überschreiben, da dies alte Dateien hinterlässt und Fehler verursacht.

    Wenn Sie sich dabei nicht wohl fühlen, können wir Ihnen behilflich sein. Wir benötigen jedoch einen Administrator-Login und einen FTP-Zugang im Bereich Private Inhalte.

    — Translated with Google —

    Sorry for the late reply, If I understand correctly you are using Enfold v4.5.3 with Woocommerce, we did have an issue with this version, please update to v4.5.7
    Unfortunately, with v4.5.3 you must update via FTP.
    The easiest and safest way to do this is to download the newest version from Theme Forest and rename your current theme to “enfold-old” via ftp then upload the new “enfold” and check that your site is working correctly.
    Once you are happy you can delete the “enfold-old” via ftp, (not the WP theme page)
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    If you do not feel comfortable doing this we can assist, but we will need an admin login and FTP access in the Private Content area.

    Best regards,
    Mike

Viewing 30 posts - 20,251 through 20,280 (of 35,068 total)