Forum Replies Created

Viewing 30 posts - 61 through 90 (of 64,914 total)
  • Author
    Posts
  • in reply to: Video in Color Section #1477972

    Hi,

    Thank you for the info.

    As suggest above, you have to use the Fullscreen slider in order to stretch the video. We edited the video slide in the test page and switch the Stil > Video Einstellungen > Anzeige des Videos settings to the second option. Please check the link in the private field.

    Best regards,
    Ismael

    in reply to: Import démo _ Error “Connection timed out” #1477971

    Hey Joseph_HILFIGER,

    Thank you for the update.

    This is a known issue with OVH servers. To import the demo, we manually uploaded the theme options in Enfold > Import/Export and imported the posts via Tools > Import. Unfortunately, the demo images were not included due to OVH server restrictions. You’ll need to edit the page and upload your images manually.

    Please make sure to purge the cache before checking.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Please clone the site to a staging environment, then provide the login details in the private field. We’d like to check the issue further.

    Best regards,
    Ismael

    in reply to: WooCommerce Product Image Too Big on Mobile – Need Help #1477969

    Hi,

    We’ve found some invalid CSS code in the Quick CSS field. Do you have a site backup? We’d like to correct the css, but we don’t want to risk breaking anything in the process.

    Please create a site backup or restore point, and then we’ll adjust the css modifications.

    Best regards,
    Ismael

    in reply to: Partner/Logo Element css issue #1477968

    Hi,

    It works correctly when we apply the modification directly in the browser. Did you clear the browser cache or try checking the site in incognito mode?

    Please provide the login details in the private field so we can check it.

    Best regards,
    Ismael

    in reply to: WPML translation – menu broken #1477967

    Hey Martina,

    Thank you for the inquiry.

    Did you translate the menus to other languages? Please check this documentation: https://wpml.org/documentation/getting-started-guide/translating-menus/

    Best regards,
    Ismael

    in reply to: Single image: fullwidth #1477966

    Hey MarcusJeroch,

    Thank you for the inquiry.

    You can apply the image as a background to a Color Section element. Would you mind providing a screenshot of the layout you’re trying to create?

    Best regards,
    Ismael

    in reply to: Portfolio items order #1477856

    Hey lara666,

    Thank you for the inquiry.

    This is not possible by default, but you can follow the instructions in this thread: https://kriesi.at/support/topic/masonry-not-displaying-cover-pictures/#post-1439624.

    The solution is for the Masonry element, but it should work the same way for the Portfolio Grid.

    Best regards,
    Ismael

    in reply to: Error importing the ‘Law’ demo in WordPress #1477855

    Hi,

    Thank you for the info.

    We imported the theme options and pages of the Law demo. Unfortunately, we were not able to include the images. You can simply edit the pages and upload your own images.

    Best regards,
    Ismael

    Hi,

    We can’t reproduce the issue on our end. The sorting categories are returned as objects, not arrays.

    View post on imgur.com

    Have you tried deactivating the plugins?

    Best regards,
    Ismael

    in reply to: Partner/Logo Element css issue #1477851

    Hi,

    That is the default responsive behavior of the logo slider.

    Did you add this css code?

    .avia-content-slider .slide-entry-wrap {
        width: 50%;
        margin-bottom: 40px !important;
        margin-left: 0% !important;
    }
    

    If you need to display all 6 items in a single line on mobile view, remove the css code above, then add this modification.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all .av-m7fed3ye-e22188c7085edf49c8bc53cd4bd6adde .flex_column.slide-entry {
        clear: none;
        width: 16%;
        float: left;
      }
    }

    Best regards,
    Ismael

    in reply to: WooCommerce Product Image Too Big on Mobile – Need Help #1477849

    Hey ballindigital,

    Thank you for the inquiry.

    You can add this css code to hide the product gallery thumbnails and adjust the height of the main product image:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .single .product div.images div.thumbnails {
        display: none;
      }
    
      .single .product div.images img {
        width: auto;
        height: auto;
        max-height: 300px;
        margin: 0 auto;
      }
    }

    Best regards,
    Ismael

    in reply to: Content slider- form element button colour #1477847

    Hi,

    We’ll keep the thread open. Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: X and Y axis labels #1477845

    Hey dp-beheer,

    Thank you for the inquiry.

    The chart dataset will automatically be included and displayed in the chart and there is also a tooltip that will display on hover. If you need to display more information about the chart, you can use the options in the Content > Chart Title, Subtitle, Position panel.

    Best regards,
    Ismael

    in reply to: Erweiterter Layout Editor bringt leere Seite #1477844

    Hi,

    You can use platforms like Savvyify, Imgur, or Dropbox to upload and share the screenshot. We tried logging in again but encountered this error:

    FEHLER: Falsch! – Bitte löse das Captcha richtig

    Please temporarily disable the captcha plugin and provide a direct link to the page with the issue.

    Best regards,
    Ismael

    in reply to: 8 images in asymetric view #1477843

    Hi,

    Thank you for the inquiry.

    You may need to manually create the html in a Text or Code Block, then add a few css modifications.

    Example:

    
    <div class="image-grid">
        <img src="image1.jpg" class="img img1" />
        <img src="image2.jpg" class="img img2" />
        <img src="image3.jpg" class="img img3" />
        <img src="image4.jpg" class="img img4" />
        <img src="image5.jpg" class="img img5" />
        <img src="image6.jpg" class="img img6" />
        <img src="image7.jpg" class="img img7" />
        <img src="image8.jpg" class="img img8" /></div>
    

    Styles:

    .image-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, auto);
        gap: 10px;
        width: 100%;
        max-width: 400px;
        margin: auto;
    }
    
    .img {
        width: 100%;
        border-radius: 50%;
        object-fit: cover;
    }
    
    /* Assign different sizes and irregular placements */
    .img1 { grid-column: span 1; grid-row: span 1; }
    .img2 { grid-column: span 2; grid-row: span 1; }
    .img3 { grid-column: span 1; grid-row: span 2; }
    .img4 { grid-column: span 2; grid-row: span 2; }
    .img5 { grid-column: span 1; grid-row: span 1; }
    .img6 { grid-column: span 2; grid-row: span 1; }
    .img7 { grid-column: span 1; grid-row: span 2; }
    .img8 { grid-column: span 1; grid-row: span 1; }
    
    @media (max-width: 600px) {
        .image-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .img2, .img4, .img6 { grid-column: span 1; }
    }
    

    Please check the links below for more info.

    // https://css-tricks.com/snippets/css/complete-guide-grid/
    // https://css-tricks.com/snippets/css/a-guide-to-flexbox/

    Best regards,
    Ismael

    in reply to: mfp-hide pop up #1477842

    Hi,

    The Enfold > Theme Options > Lightbox Modal Window option was not enabled. The inline popup should be working correctly now.

    Best regards,
    Ismael

    in reply to: Partner/Logo Element css issue #1477837

    Hey manchust,

    Thank you for the inquiry.

    If you want to display a different number of items, you may need to add another post slider specifically configured for mobile view, then toggle the elements’ visibility for different screen sizes in the Advanced > Responsive > Element Visibility settings. With this setup, you’ll have one post slider for desktop and another for mobile view.

    Best regards,
    Ismael

    in reply to: Content slider #1477833

    Hi,

    Thank you for the update.

    The modification above should not have affected the width of the post slider. Please make sure to copy the code directly from this forum, not from your email.

    The modification seems to be working correctly when we checked.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Special block management #1477752

    Hi,

    Thank you for the update.

    If you want to limit the width of the grid layout, go to the Advanced > Developer Settings panel, apply the value “av-grid-constrain-width” in the Custom CSS Class field, and then add this css code:

    #top .av-grid-constrain-width {
        max-width: 70%;
        margin: 0 auto;
    }

    Adjust the max-width value as needed.

    Best regards,
    Ismael

    in reply to: Events Calendar Temlpate #1477751

    Hi,

    You might need to make a few modifications to make sure the event displays properly.

    This is why we don’t recommend using the default template. If you wish to continue using the default template, you can hire a freelance developer to assist with the customization.

    Best regards,
    Ismael

    in reply to: Change FontIcon on Archive Page #1477750

    Hey peter559,

    Thank you for the inquiry.

    Please provide the link to the blog page so we can check the blog layout. If you’re using the default layout, you can use this css code to replace the icon or image with a custom background image:

    .template-blog .blog-meta .post-author-format-type {
        background: url("bg-image-url.jpg");
    }
    
    .template-blog .blog-meta .post-author-format-type img {
        display: none;
    }
    

    Let us know the result.

    Best regards,
    Ismael

    in reply to: WP Accessibility #1477748

    Hi,

    Do you press “Space” once you get to the “skip-to-content” link or button? Please check the screenshot below:

    View post on imgur.com

    We also added the tabindex=”0″ attribute to the skip links to give priority to them in the tab order.

    function ava_custom_script()
    {
        ?>
        <script type="text/javascript">
            (function ($)
            {
                document.addEventListener("DOMContentLoaded", function ()
                {
                    document.querySelectorAll("#skiplinks a").forEach(link =>
                    {
                        link.setAttribute("tabindex", "0");
                    });
                });
            })(jQuery);
        </script>
        <?php
    }
    
    add_action('wp_footer', 'ava_custom_script', 9999);

    Best regards,
    Ismael

    in reply to: Content slider #1477744

    Hi,

    would it be possible to apply this only to the content slider on the home page?

    Yes, this is possible. Please edit the Content Slider element, go to Advanced > Developer Settings, and enter “av-content-slider-nav-bottom” in the Custom CSS Class field. Then, replace the css code with:

    #top .av-content-slider-nav-bottom .avia-smallarrow-slider-heading {
        position: absolute;
        bottom: -50px;
    }

    https://kriesi.at/documentation/enfold/add-custom-css

    Best regards,
    Ismael

    in reply to: Add Spacing and Panels/Text Boxes in Classic Editor #1477743

    Hi,

    Yes, it’s possible to use the ALB for the events page, but we don’t recommend it because this will limit the functionality of the events. Also, please note that not all event elements are available in the Advanced Layout Builder. If you want to proceed, you can include the event post type in the Enfold > Layout Builder > Activate Your Custom Post Types For ALB field.

    Best regards,
    Ismael

    in reply to: WP Accessibility #1477742

    Hey dondela,

    Thank you for the inquiry.

    You have to replace the anchor #content with #main or the ID of the section it should skip to when accessed. To apply the ID “content” to the first Color Section containing the content, go to Advanced > Developer Settings and enter the ID in the Custom ID field.

    Best regards,
    Ismael

    in reply to: Video in Color Section #1477740

    Hi,

    Thank you for the update.

    The video should cover the entire slider when this option (Stretch the video…) is enabled. Please try this css code:

    #top .av-element-cover video {
        object-fit: cover;
    }

    This should result to: https://imgur.com/2Kl21jz

    We tried logging in to the site but the account above is no longer valid.

    Best regards,
    Ismael

    in reply to: webfonts in cookies-settings #1477739

    Hi,

    You can remove them from Enfold > Privacy & Cookies > Cookie Handling > Modal Window Custom Content. Look for the “Other External Services” entry, then remove that part from the Tab Content field.

    < p >Google Map Settings:[av_privacy_google_maps]

    View post on imgur.com

    Let us know if you need more info.

    Best regards,
    Ismael

    in reply to: Special block management #1477737

    Hey Christian,

    Thank you for the inquiry.

    Have you tried using the Grid Layout element? Set the cell size to 3/5 1/5 1/5. You can also set the cell size to 1/3 2/3, then use Column elements in the second cell.

    Best regards,
    Ismael

    in reply to: How to remove space between gallery and video? #1477736

    Hey Jak73,

    Thank you for the inquiry.

    You can add this css code to remove the space above the video:

    .avia-video.av-m7hoi823-5fffa067e0538a32526d7bf7eec640c7 .mejs-container {
        background-color: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }
    
    .avia-video.av-m7hoi823-5fffa067e0538a32526d7bf7eec640c7 video {
        background-color: transparent;
    }
    
    .avia-video.av-m7hoi823-5fffa067e0538a32526d7bf7eec640c7 {
        padding-bottom: 50%;
        background: transparent;
        border: 0 !important;
        margin-top: -20px;
    }

    Best regards,
    Ismael

Viewing 30 posts - 61 through 90 (of 64,914 total)