Forum Replies Created

Viewing 30 posts - 13,321 through 13,350 (of 35,287 total)
  • Author
    Posts
  • in reply to: Mask over video #1337941

    Hi,
    You don’t need to buy layerslider, these layerslider features are available with the theme.
    I believe that you are looking at the layerslider on-boarding tutorial and think it’s a pay-wall, try clicking the button and go through the tutorial to learn about layerslider.
    2022-01-30_008.jpg

    Best regards,
    Mike

    in reply to: Fullscreen Panorama-Tour on desktop and cellphone #1337937

    Hey Ralf,
    Thanks for your question and for the test page, please try adding this css to remove the white sidebars and to increase the height to 70vh, I assume that you want to see the footer, if not then adjust to 100vh:

    @media only screen and (max-width: 767px) {
    .responsive #top.page-id-139 #wrap_all #main #av_section_1 > .container {
        width: 100%;
        max-width: 100%;
    }
    .responsive #top.page-id-139 #wrap_all #main #av_section_1 > .container > .av-content-full {
        height: 70vh;
    }
    }

    Please see the screenshot in the Private Content area of the expected results.

    Best regards,
    Mike

    in reply to: Mask over video #1337935

    Hey Chris,
    Thanks for the link to your site, unfortunately color section background videos do not automatically play on mobile, and the overlay option adds “background repeat” to the image because it assumes that you are adding a small overlay image, using this option as a mask was not the intention.
    I recommend using the Layerslider instead as it will play a background video on mobile (for now, note that the browsers are always changing to block this behavior) and you can add a “mask” layer.
    Although you may need to create two layersliders, one for mobile and one for desktop, because depending on the situation landscape desktop slides don’t always change into portrait mobile view well.

    Best regards,
    Mike

    Hi,
    Thanks for the feedback and the links & screenshots, so those 3 pages are using the color section in a different way, two of them contain videos, and one is text, none have background images and none should have the css you are working on for the /daily-word-all/ page, so the error here is that the css above is too general with the target of the css rule #av_section_1 is causing a conflict.
    So try removing your previous css, add a custom class to your /daily-word-all/ page color section like: title-color-section
    2022-01-30_005.jpg
    then this css:

    @media only screen and (max-width: 475px) {
    #top #main .title-color-section {
       background-size: cover !important;
            -webkit-background-size: cover;
            -moz-background-size: cover;
            -o-background-size: cover;
    }
    }

    Now about this css, I removed the height because you already have the height set in the element to 600px, and you seem to want this height for mobile also, so there is no need to declare it again, if you want a different mobile height then go ahead and add it. You don’t need to add background-size: cover twice, this one is for mobile, if you always want this for desktop & mobile then use this css instead:

    #top #main .title-color-section {
       background-size: cover !important;
            -webkit-background-size: cover;
            -moz-background-size: cover;
            -o-background-size: cover;
    }

    you will note that I added #top #main this adds specificity to ensure it is not overwritten.

    Best regards,
    Mike

    in reply to: Enfold: When Editing, Blocks Disappear #1337913

    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

    Hi,
    Thank you for the link to your page, as Guenni007 has pointed out the ampersand filter is being applied, please try adding this in your child-theme functions.php
    add_filter('avia_ampersand','__return_false'); Thanks Guenni007
    2022-01-30_003.jpg

    Best regards,
    Mike

    Hi,
    Thanks for the feedback but could you explain further how several pages were negatively affected? Perhaps these pages had something else going on, or perhaps I’m not fully understanding what you are expecting on mobile, for the page we have been looking at /daily-word-all/ changing the height to 500px doesn’t look very different than 600px, please see the screenshot in the Private Content area. Can you include screenshots of what you are seeing?
    As for mobile image sizes, please note that on mobile images are portrait and for desktop images are landscape, which is typically fine for the mobile image to be cropped some to show the full height, this is what background-size: cover does, another option is background-size: contain this forces the full width of the image to show, but the height will not fill the area so you would want to use a portrait sized image for mobile in this case, like 425px x 500px, or whatever size you wish.
    One way to achieve this is to duplicate your element and choose your new portrait sized image for mobile and set the display options to show this element only on mobile while hiding the desktop element.
    Another possibly for your comment it negatively effected several pages is that the css above is very general, the target of the css rule #av_section_1 is practically on every page and may not be one you want to target, I would recommend using a custom class for each one of these elements you really want to target, such as title-color-section and then adjust your css.

    Best regards,
    Mike

    Hi,
    Sorry, I thought you didn’t want the color section to be as large as it is, if you do want the color section to take up most of the mobile screen then the css you have is working correctly. Please see the screenshot in the Private Content area.

    Best regards,
    Mike

    Hi,
    Please try this css instead:

    #Black-background-color-and-white-text-color > div p,
    #Black-background-color-and-white-text-color .av-special-heading-tag {
    	 background-color: rgba(0, 0, 0, 0.5);
    	 width: 50%;
         margin: 18px auto;
    }

    expected results:
    2022-01-29_012.jpg

    Best regards,
    Mike

    in reply to: color section is not seen #1337863

    Hey pontedellarco,
    Please include admin login in the Private Content area and a link to the page with this issue so we can be of more assistance.

    Best regards,
    Mike

    in reply to: upload field plugin #1337861

    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: Tab Section Arrows – How to change colors. #1337859

    Hey ycoleman31,
    Thank you for your patience, I didn’t find what was causing this error so I have submitted it to the Dev Team for review, but in the meantime I added this css to your Quick CSS to correct:

    #top a[aria-controls="av-tab-section-1-1"] .av-tab-arrow-container span {
        background-color: #e74480;
    }
    #top a[aria-controls="av-tab-section-1-2"] .av-tab-arrow-container span {
        background-color: #333333;
    }
    #top a[aria-controls="av-tab-section-1-3"] .av-tab-arrow-container span {
        background-color: #72cac8;
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Post comment box not appearing on threads #1337856

    Hey adventuremototouring,
    Thanks for the link to your page, it looks like you made this “post” with the Advanced Layout Builder, so the comments will not automatically show, please use the comment element for these:
    2022-01-29_011.jpg

    Best regards,
    Mike

    Hi,
    It looks like you have the color section height set to 600px
    2022-01-29_009.jpg
    so you can choose to use a percentage so the mobile screen will be less:
    2022-01-29_010.jpg
    or use this css to set a specific size for mobile:

    @media only screen and (max-width: 767px) { 
    #av_section_1 > div > .av-section-cont-open {
    	height: 308px !important;
    }
    }

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

    Best regards,
    Mike

    in reply to: upload field plugin #1337853

    Hey Nat,
    Thanks for your question I have not tested this but I have seen an Enfold site using WordPress File Upload, so I assume that it was working correctly. If you want to use this with a contact form then try using Contact Form 7 with Drag and Drop Multiple File Upload

    Best regards,
    Mike

    in reply to: Increase animation duration for animated numbers #1337852

    Hey neobiz2,
    Thank you for your question, but unfortunately, it’s not possible to control the speed of the requestAnimationFrame function which is responsible for the animation without creating a custom script.
    You could try a plugin, or based on this article: Animating Number Counters you could try adding this code to a code block element:

    <style>
    @property --num {
      syntax: "<integer>";
      initial-value: 0;
      inherits: false;
    }
    div.slow-numbers {
      animation: counter 20s alternate ease-in-out;
      animation-fill-mode: forwards;
      counter-reset: num var(--num);
      font: 800 40px system-ui;
      padding: 2rem;
    }
    
    div.slow-numbers::after {
      content: counter(num);
    }
    
    @keyframes counter {
      from {
        --num: 0;
      }
      to {
        --num: 100;
      }
    }
    </style>
    <div class="slow-numbers"></div>

    2022-01-29_007.jpg
    the expected results:
    2022-01-29_008.jpg

    Best regards,
    Mike

    in reply to: Notification bar & header settings #1337848

    Hi,
    Please try this code in your functions.php instead:

    function custom_top_banner() { ?>
        <script>
    (function($){
        $( "<div id='banner'>This is a banner</div>" ).insertBefore( "#header_meta" );
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_top_banner');

    and this css instead:

    .responsive #top #header > #banner {
        width: 100%;
        height: 30px;
        background: #ffff00;
        color: #000;
        text-align: center;
        z-index: 1;
        position: relative;
    }
    .html_header_top.html_header_topbar_active.html_header_sticky #top #main > .title_container {
        padding-top: 30px;
    }

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

    Best regards,
    Mike

    in reply to: Google fonts stopped working #1337843

    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

    Hey Joseph,
    Thank you for your question and the link to your pages, please give this a try, on your page with the form add a code block element at the bottom with this javascript:

    
    <script>
    var getUrlParameter = function getUrlParameter(sParam) {
        var sPageURL = decodeURIComponent(window.location.search.substring(1)),
            sURLVariables = sPageURL.split('&'),
            sParameterName,
            i;
        for (i = 0; i < sURLVariables.length; i++) {
            sParameterName = sURLVariables[i].split('=');
            if (sParameterName[0] === sParam) {
                return sParameterName[1] === undefined ? true : sParameterName[1];
            }
        }
    };
    
    var carportSize = getUrlParameter('size');
    
    if (carportSize != null) {
    	var val = carportSize;
         var sel = document.getElementById('avia_6_1');
          var opts = sel.options;
      for (var opt, j = 0; opt = opts[j]; j++) {
        if (opt.value == val) {
          sel.selectedIndex = j;
          break;
        }
      }
    }
    </script>
    

    Then on your page with the button make your link like this: your-site.com/form-page/?size=2%20Car%204%20Post the url parameter: ?size=2%20Car%204%20Post
    needs to match your option text for the correct option to be selected
    2022-01-29_005.jpg
    the spaces need to be replaced with &20
    2022-01-29_006.jpg
    If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    Hi,
    Thank you for the link to your page and the screenshots, when I check your page I see this, so it seems that the hiding of the quantity section is working
    2022-01-29_003.jpg
    please try this css instead:

    #top.single-product .price span.woocommerce-Price-amount,
    #top.single-product .price span.woocommerce-Price-currencySymbol{ 
         font-size: 20px;
    }
    #top.single-product .quantity { 
        display: none; 
    }
    #top.single-product .av-woo-purchase-button .cart {
    	float: none;
        display: inline-flex;
        margin-bottom: 0;
    }
    #top.single-product .first-payment-date {
    	margin: 0;
    }

    the expected results:
    2022-01-29_004.jpg
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    In your Quick CSS the greater than symbol was not correct, typically this occurs when the code is copied from an email instead of the forum.
    2022-01-29_073219.jpg
    I corrected from you, please clear your browser cache and check.

    Best regards,
    Mike

    Hey steridhh,
    Thank you for the screenshots, please link to a test page with both “&” showing so we can examine.
    This looks like this “&” on this demo created by the “great vibes” font
    2022-01-28_001.jpg
    once we examine we will know better if it is a font issue or not, since he non-braking space &nbsp; is changing the “&” perhaps another option is to use &amp; instead
    2022-01-28_002.jpg
    Character Entity Reference Chart

    Best regards,
    Mike

    Hi,
    For all of the pages built like this, try this css instead:

    .js_active #top #main > #av_section_1.av-minimum-height .container {
        opacity: 1;
        -webkit-transition: opacity 0s ease-in;
        transition: opacity 0s ease-in
    }

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

    Best regards,
    Mike

    in reply to: Popup window #1337710

    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: Popup window #1337540

    Hi,
    Thank you for the test page, for two buttons opening two popups on the same page the code block should contain this:

    <script type="text/javascript">
    jQuery(window).load(function(){
    jQuery('.avia-button-wrap.form-popup a.avia-button').addClass('form-popup-link');
      jQuery('.form-popup-link').magnificPopup({
        type:'inline',
        midClick: true
      });
    });
    </script>
    <style>
    .form-popup {
      position: relative;
      background: #FFF;
      padding: 20px;
      width: auto;
      max-width: 500px;
      margin: 20px auto;
    }
    </style>
    
    
    <div id="form-popup-one" class="form-popup mfp-hide">
    form one
    </div>
    
    <div id="form-popup-two" class="form-popup mfp-hide">
    form two
    </div>

    2022-01-27_001.jpg
    The button links should be #form-popup-one & #form-popup-two
    2022-01-27_002.jpg
    and the button custom class should be form-popup
    2022-01-27_003.jpg
    this results like this:
    2022-01-27_004.jpg
    Now to add your forms you will create your forms with the shortcode wand in a Classic Editor post so you can copy the shortcode and paste it in the code block:
    2022-01-27_005.jpg
    like this:
    2022-01-27_006.jpg
    the result:
    2022-01-27_007.jpg
    I made these changes to your page please clear your browser cache and check.


    @mistermagoo8691
    thanks for your feedback, I will check & correct it.

    Best regards,
    Mike

    in reply to: Help Desk Plugins #1337295

    Hi,
    Thank you for the login, please note that when you set the H tag color in the Advanced Styling theme option it typically overwrites the element options, so to correct I adding this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field

    #top #wrap_all #homepage-slider.main_color h2.avia-caption-title {
    	color: #fff;
    }

    Your slider title is now white, please clear your browser cache and check.

    In the future please open a new thread for each issue, this helps other users find solutions based on the opening subject line quicker, your post to this thread was off-topic from 2016, thank you for your understanding

    Best regards,
    Mike

    in reply to: Popup window #1337292

    Hey Brolle,
    Thank you for your question we don’t have a built-in popup element but we do have this solution to create a popup with a code block element. We can help adjust this to show your form, but we will need further information, such as what will trigger the popup a link or button? What kind of form is it, a contact form element or the shortcode from another plugin?
    If you want to use a plugin rather than building this, WP Popups is a free plugin that seems to work well with Enfold.
    If you don’t want to use a plugin, then try creating a test page and include admin login in the Private Content area below so we can help further.

    Best regards,
    Mike

    in reply to: Logo + Menu #1337066

    Hi,
    When I check your menu item Alle Kategorien I see the burger icon, try clearing your browser cache.
    To apply the above css to the button try this css:

    #header_main #menu-item-19902.av-menu-button > a > span.avia-menu-text {
    	border: 2px solid grey;
        border-radius: 10px;
        padding-left: 30px;
        padding-right: 30px;
        font-size: 15px;
    }

    screenshot of the expected results:
    2022-01-25_001.jpg

    Best regards,
    Mike

    in reply to: Button too big in blog page #1336899

    Hi,
    I see that you have removed the font-size css, but the letter-spacing css remains, since you can not find it please include an admin login so we can help you.

    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

Viewing 30 posts - 13,321 through 13,350 (of 35,287 total)