Forum Replies Created

Viewing 30 posts - 9,841 through 9,870 (of 34,221 total)
  • Author
    Posts
  • in reply to: avia video background #1367211

    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: Pagespeed #1367209

    Hey BenjaminSpeedtsberg,
    Thanks for your question, another member @thinkjarvis has written a couple of tutorial threads as I recall about how he achieved this but I can’t find them right now, he has a lot more experience with SEO and page speed than I, below I linked to his forum profile page, try reaching out to him and he can point you to his tutorials or advise you how to achieve this.

    Best regards,
    Mike

    in reply to: avia video background #1367208

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

    .avia-video .mejs-container {
    	background-color: transparent;
    }

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

    Best regards,
    Mike

    in reply to: Background images in Color Section #1367207

    Hey Alwin,
    Thanks for your question, webp images work fine as color section background colors, please see my test page below.
    For the same top color section on my test page I added this css which hides the background image and allows the orange background color to show on mobile:

    @media only screen and (max-width: 767px) { 
    #av_section_1.avia-section {
    	background-image: none;
    }
    }
    

    If you have trouble with this css on your site please link to your test page so we can advise.

    Best regards,
    Mike

    in reply to: Problems importing DEMOS in ENFOLD #1367199

    Hi,
    Glad to hear that you have this sorted out, 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 login, indeed I was testing with the wrong element, so I update my test page and compared the difference between the button grid and the fullwidth button and found that the buttons_fullwidth.php was missing the link title attribute {$title_attr} on line 645:
    2022-10-01_002.jpg
    I added this to your parent theme and now the title is showing.
    But there was one issue on your site, when the button is clicked and the lightbox shows the image the title is not shown, but if you use the arrow to see the next image then the title is shown. I found that this was due to your custom script so I adjusted it to exclude the buttons, please test your buttons and the link on your site that the script should remove the titles from to ensure everything works correctly.
    I will submit this to the Dev Team for their review and would expect this to be added to the next update.

    Best regards,
    Mike

    in reply to: Dynamic height of iFrame to 100% #1367160

    Hi,
    I see that you are getting a CORs error:

    (index):294 Uncaught DOMException: Blocked a frame with origin “http://neueseite.lsc-berlin.de” from accessing a cross-origin frame.
    at calcHeight (http://neueseite.lsc-berlin.de/test-iframe/:294:50)
    at HTMLIFrameElement.onload (http://neueseite.lsc-berlin.de/test-iframe/:298:159)

    so it looks like your sub-domain is cross-origin blocking, please ask your web host to setup allow cross-origin between your domain and sub-domain, this has to be done on the server.
    You can test a page on the same sub-domain and see that this will work, as in my text page.
    Typically iframes will only work on the same domain unless the server is set up to allow cross-origin.

    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

    Hi,
    Thanks for the link to your site, when I check your buttons have an empty title attribute:
    2022-09-30_005.jpg
    so please ensure that you have added a title to your button:
    2022-09-30_006.jpg
    if you did then check if you have a custom script or plugin removing the titles from your site.
    I have linked to my test page below and the title added to the button will show as the lightbox title:
    2022-09-30_007.jpg
    If this doesn’t help please include admin login in the Private Content area so we can investigate.

    Best regards,
    Mike

    in reply to: Dynamic height of iFrame to 100% #1367144

    Hey don_olli,
    Thanks for the link to your page, in a previous thread I found that the following script would get the height of the iframe page and set the height on load, you will note the iframe code has a function for the height. Try adding this code in your code block element for the script and the iframe link.
    This only works if the iframe is the same domain, otherwise you will get a CORs error.

    <script type="text/javascript">
    function calcHeight(iframeElement){
        var the_height=  iframeElement.contentWindow.document.body.scrollHeight;
        iframeElement.height=  the_height;
    }
    </script>
    <iframe src="https://www.lsc-berlin.de/anmeldung/working_area/anmelden.php?turnier=2" onLoad="calcHeight(this);" frameborder="0" scrolling="no" width="100%" ></iframe>

    Below I have linked to my test page of an iframe on my domain.
    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

    in reply to: raster layout pic landscape / portrait #1367142

    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: raster layout pic landscape / portrait #1367097

    Hi,
    Thank you for the link to your page and the screenshot, I see that your grid row’s height is set to 100vh, when this is set the cell background image is set to background-size: cover which means the image will cover the cell height and width, and in order to cover the height the image will be too wide for the space, unless you want it stretched and distorted.
    I see that the image is too wide between 768px & 1605px so try this css:

    @media only screen and (min-width: 768px) and (max-width: 1605px)  { 
    #av-layout-grid-1 .flex_cell.avia-full-stretch {
        background-size: contain !important;
    }

    After applying the css, please clear your browser cache and check.
    This sets the background-size: contain so the whole image shows, height & width, the only drawback is there is some space above and below the image because it is centered in the screen.
    If you don’t like this you can add a background color to the cell matching the image so there is no space, like this:

    @media only screen and (min-width: 768px) and (max-width: 1605px)  { 
    #av-layout-grid-1 .flex_cell.avia-full-stretch.avia-builder-el-first {
        background-size: contain !important;
        background-color: #C1E1FF;
    }

    unfortunately, I didn’t find the exact color of your image background, so adjust the color to suit.
    Please see the screenshot in the Private Content area.

    Best regards,
    Mike

    in reply to: WooCommerce product list element not working correctly #1367094

    Hi,
    Thank you for your patience, below is v5.0.1 for you to test with.

    Best regards,
    Mike

    in reply to: Timeout after 5 min. on page change #1367092

    Hi,
    Sorry that we were not able to help more with this issue, but glad that you were able to work around this. 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 Guenni007 could help, thank you Guenni007, 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: Progress Bar Help #1367087

    Hi,
    Thanks for the mockup and link to your site, please try this css instead:

    #av_section_2 .avia-progress-bar .progressbar-title-wrap {
        left: 70%;
        top: 7px;
        position: absolute;
    }

    expected results:
    2022-09-30_001.jpg

    Best regards,
    Mike

    in reply to: Cumulative Layout Shift (CLS) Grids problem #1367084

    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: Cumulative Layout Shift (CLS) Grids problem #1367014

    Hi,
    Glad to hear this helped and thank you for bringing this forward, this should also help other users with this issue on their sites.
    I don’t see any way that we could include this in the theme because the root of the issue was the use of the CDN and the css above is specific to your pages. Each site/page will have a different element height based on the inner contents.
    This worked well for you because all of your pages had the same layout, but unless other users are using a CDN I don’t expect that they will encounter this issue.
    But for anyone that does encounter this issue this thread will help explain and offer the means to a solution that we can adjust to suit their situation, if they need help.

    Unless there is anything else we can assist with on this issue, I would like to close this so the thread stays on topic and is easily found in the search results.

    Best regards,
    Mike

    Hey DigitalEssence,
    Thanks for the link to your page, I found this custom css adding the blue dash, please try removing it:

    #de-homepage-church-colour-section .text {
        padding: 20px!important;
        outline: 2px dashed blue;
    }

    I see that the two columns inside the color section are different heights, have you considered using the equal height option in the first column, in the row tab?
    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

    in reply to: Using webp images with Enfold? #1366904

    Hi,
    Glad to hear that you have this sorted out, 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: Dropdown box more visible? #1366900

    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: hide ONE Blog category #1366898

    Hi,
    Try this instead:

    function custom_script() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($) {
    $('#top.single-post .av-post-metadata-category-link a:contains("DE")').each(function(){
    	$(this).css({'display':'none'});
        $('#top.single-post .av-post-metadata-category').contents().filter(function() {
        return this.nodeType === 3;
    }).eq(1).remove();
    });
    }(jQuery)); 
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

    in reply to: Inline search menu bug on Windows only #1366892

    Hi,

    I would guess position: absolute; but I don’t know if that is the problem or if on mouse-over the browser is changing the element display from block to inline or inline-block or flex-block or list-item, or if it is something else, but that is what I would look at first.

    Best regards,
    Mike

    in reply to: Using webp images with Enfold? #1366889

    Hi,
    Perhaps there is an issue with your converter, I test with this free online converter and I found no issues on a clean install with no plugins.
    Please give this a try.
    PNG to WEBP Converter
    JPG to WEBP Converter
    2022-09-29_003.jpg

    Best regards,
    Mike

    in reply to: Using image icon/flipbox raster element [SOLVED] #1366881

    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: Search Page Showing Black Screen and Weird Font #1366822

    Hi,
    Glad to hear that you have this sorted out, 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: Dropdown box more visible? #1366821

    Hey mvanstee,
    Thanks for the link to your page, please try this css:

    #top.single-product .main_color .variations select {
    	border: solid 1px #fff;
    }
    #top.single-product select { 
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAAAVUlEQVRIie2UMQoAIAwDxU872tFfn5NQBAchBcFm7126pJSvAhgwIuErWskG10oO8LBPALi5qdIGKUhBCn4VAG3fIDd2XdLCS+Twg0QLdxIDLAT+bCYyZJeL8uH9pwAAAABJRU5ErkJggg==);
    }

    expected results:
    2022-09-28_010.jpg
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: hide ONE Blog category #1366820

    Hey Tilman,
    Thanks for the link to your page, to remove the category link “DE” and the comma after it
    try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($) {
    $('#top.postid-6592 .av-post-metadata-category-link a:contains("DE")').each(function(){
    	$(this).css({'display':'none'});
        $('#top.postid-6592 .av-post-metadata-category').contents().filter(function() {
        return this.nodeType === 3;
    }).eq(1).remove();
    });
    }(jQuery)); 
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

    in reply to: How to remove strokes in galleries #1366817

    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,
    I checked again and the icon is now showing, so I seems you have it sorted out now, shall we close this then?

    Best regards,
    Mike

Viewing 30 posts - 9,841 through 9,870 (of 34,221 total)