Viewing 30 results - 1,651 through 1,680 (of 142,844 total)
  • Author
    Search Results
  • #1483243

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .responsive #top.home #wrap_all .flex_cell.av_one_third {
        padding: 0 !important;
    }
    .responsive #top.home #wrap_all .flex_cell.av_one_third .av_textblock_section {
    	padding: 0 25px;
    }
    .responsive #top.home #wrap_all .flex_cell.av_one_third #rotesQuadrat {
    	margin-left: 25px;
    }

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

    Best regards,
    Mike

    #1483235

    In reply to: Caption in Easy Slider

    Hi,
    Try this then:

    .avia-caption {
        top: 17px;
    }

    If this doesn’t work then link to your page so we can examine.

    Best regards,
    Mike

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    #top #wrap_all #av-burger-menu-ul > li,
    #top #wrap_all #av-burger-menu-ul > li a {
    	top:0 !important;
    	opacity:1 !important;
    	padding: 4px 0 !important;
    }
    }
    @media only screen and (min-width: 768px) { 
    #top #wrap_all #av-burger-menu-ul > li,
    #top #wrap_all #av-burger-menu-ul > li a {
    	top:0 !important;
    	opacity:1 !important;
    }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1483231

    In reply to: Caption in Easy Slider

    Thank you Mike for your reply and your help, surely by my mistake I did not explain myself correctly, but I have a situation like this, as you can see from the pictures below

    Best Regards,
    Stefano

    #1483230

    In reply to: Caption in Easy Slider

    Hey stefpasi,
    You probably have the caption set to “bottom without frame” in the slide:
    Screen Shot 2025 04 26 at 11.51.03 AM
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .caption_fullwidth {
        position: relative;
        top: 20em;
    }

    Screen Shot 2025 04 26 at 12.01.53 PM
    adjust to suit.

    Best regards,
    Mike

    #1483226

    Hey nm,
    Thank you for your patience, to move cookie consent bar to top of the DOM so it is first in the tabindex, add the following code to the end of your child theme functions.php file in Appearance ▸ Editor.
    The code also adds tabindex to the hidden checkboxes in the moral and hides the “toggle” switches, so the checkboxes can be tabbed to.
    When tabbing in the moral you will first be able to tab though the tabs and use the enter key to select one, then keep tabbing to get inside the tab content and tab through the checkboxes. You can use the spacebar to enable/disable the checkboxes.

    function move_cookie_consent_bar_to_top_of_dom_so_it_is_first_in_tabindex() { ?>
      <script>
    	  document.addEventListener('DOMContentLoaded', function() {
        const messageBar = document.querySelector('.avia-cookie-consent-wrap');
        const body = document.querySelector('body#top');
        body.prepend(messageBar);
    });
    document.addEventListener('DOMContentLoaded', () => {
      document.querySelectorAll('#av-consent-extra-info input[type="checkbox"]').forEach(checkbox => {
        checkbox.setAttribute('tabindex', '0');
      });
    });
      </script>
    <style>
    #top .av-toggle-switch input[type="checkbox"] {
        display: inline;
    }
    #top .av-toggle-switch .toggle-label-content {
        display: inline;
    }
    #top .av-toggle-switch label .toggle-track {
        display: none;
    }
    </style>
      <?php
    }
    add_action( 'wp_footer', 'move_cookie_consent_bar_to_top_of_dom_so_it_is_first_in_tabindex', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    This may not seem intuitive, so perhaps you will want to try a cookie bar plugin like Borlabs, I don’t know how keyboard tabbing works with it but many Enfold users like it.
    If you are happy with just tabbing to accept or reject cookies with just a few tab keys then the above script will work fine, I see that your consent moral only has two checkboxes.

    Best regards,
    Mike

    #1483224

    Topic: Caption in Easy Slider

    in forum Enfold
    stefpasi
    Participant

    Good morning everyone, I have a site that has an image on the front page which is published with Easy Slider and has a text on the bottom left (caption) I would like the same text to be on the top left instead of being at the bottom, how can I do this is there a possibility to insert a quick CSS code to manage the text inside the image published with Easy Slider?

    #1483220

    Hey dondela,
    When I check with Safari v17.6 on Mac Monterey v12.7.6 the video autoplay works for me in desktop and in Responsive Design Mode emulating mobile.
    Unfortunately, my Mac won’t update to Sequoia, but from what I can tell Safari v17.6 is the latest version for all Macs.
    Are you seeing the cookie message and clicking it?

    Best regards,
    Mike

    #1483211

    Hey schweg33,
    These are hidden on mobile devices, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 325px) {
        .responsive #top .avia-post-nav {
            display: block;
            top: 20%;
        }
    }
    @media only screen and (min-width: 325px) and (max-width: 380px) {
        .responsive #top .avia-post-nav {
            display: block;
            top: 23%;
        }
    }
    @media only screen and (min-width: 381px) and (max-width: 450px) {
        .responsive #top .avia-post-nav {
            display: block;
            top: 25%;
        }
    }
    @media only screen and (min-width: 451px) and (max-width: 767px) {
        .responsive #top .avia-post-nav {
            display: block;
            top: 38%;
        }
    }

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

    Best regards,
    Mike

    #1483202

    Hi Mike,
    awesome, i applied this code and now it works as expected. Thank you so much!!

    /* Mobile view header content */
    @media only screen and (max-width: 767px) {
    
        .responsive #top #wrap_all .container.caption_container {
            width: 100%;
            max-width: 100%;
        }
    
        #top #wrap_all .avia-caption-content p,
        #top #wrap_all .avia-slideshow .avia-caption-title {
            width: 80%;
            margin: 0 auto;
            padding-bottom: 10px;
       
        }
    }
    #1483131

    Hi,
    When I first checked, the white area was not fullwidth:
    Screen Shot 2025 04 25 at 5.06.51 PM
    but now it is:
    Screen Shot 2025 04 25 at 5.09.27 PM
    Perhaps you want this:
    Screen Shot 2025 04 25 at 5.14.35 PM
    if so try adding this css:

    @media only screen and (max-width: 767px) {
        #top #wrap_all .avia-caption-content p {
        width: 80%;
        margin: auto;
    }
        #top #wrap_all .avia-slideshow .avia-caption-title {
            width: 80%;
            margin: auto;
    }
    }

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

    Best regards,
    Mike

    #1482971

    Hey a_edemirci,
    I recommend adding two more social media profiles, ones that you don’t plan on using. Then add the link to your language pages, for example 500px & behance:
    Screen Shot 2025 04 25 at 12.04.12 PM
    Then add this css:

    .social_bookmarks_five_100_px a:before {
    	content: url(https://img.icons8.com/officexs/16/000000/great-britain.png);
    	top: 12%;
      position: relative;
    }
    .social_bookmarks_five_100_px a svg {
    	display: none;
    }
    .social_bookmarks_behance a:before {
    	content: url(https://img.icons8.com/officexs/16/000000/switzerland.png);
    	top: 12%;
      position: relative;
    }
    .social_bookmarks_behance a svg {
    	display: none;
    }

    for this result:
    Screen Shot 2025 04 25 at 12.21.23 PM
    to remove the hover title, add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    (function($){
      $(".social_bookmarks_five_100_px a, .social_bookmarks_behance a").hover(function(){
        $(this).removeAttr("title");
      });  
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    Best regards,
    Mike

    #1482957

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) {
        .responsive #top #wrap_all .container.caption_container {
            width: 100%;
            max-width: 100%;
        }
    }

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

    Best regards,
    Mike

    #1482864
    dondela
    Participant

    Dear support,
    the video autoplay of a local mp4-video doesn`t work on Safari Mac. It works in Chrome and Firefox. Is there a solution i could autoplay the video on safari as well?

    #1482861

    Hi,
    *update* I tested the above script that you posted “Fix Yoast SEO pagination compatibility with Enfold theme using avia-element-paging” and it solved the issue on my site
    <link rel="canonical" href="https://enfold.site.com/blog/blog-default/?avia-element-paging=2" class="yoast-seo-meta-tag">
    If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    use wpcode php snippet and activate
    and ensure that it is activated, then add the above code without the leading <?php and save.

    Best regards,
    Mike

    #1482782

    this setting ismael mentioned comes from “General Layout”:

    but that will change all container width to that dimension.
    So if you only want to have that on the given page – put this to your quick css :

    .responsive #top.page-id-918 #main .container {
        max-width: 1100px;
    }
    #1482743
    a_edemirci
    Participant

    Hi,

    I have a secondary menu on the very top of my page. I would like to add two clickable flags for language selection and I need the flags to be placed after social media icons. So the structure would be like links – social media buttons and flags.

    I truly appreciate it if you could let me know how I can do it. Thank you….

    P.S.: I do not want to use any other plugin like WPML

    #1482656

    Hi Ismael,
    thank you – this looks now better on desktop screen. How could i adjust this for smaller screens?

    #1482593

    Hey ricedean,

    Thank you for the inquiry.

    What happens when you toggle or temporarily disable the Enfold > Performance > File Compression settings? To temporarily fix the issue, try adding this code in the Quick CSS field.

    #top .avia-buttonrow-wrap {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        align-content: center;
    }

    Best regards,
    Ismael

    #1482572

    The Easy Slider on the 3 property pages are stretched also. I could reduce this code, and then it fixes the stretch of the Easy Sliders, but then it makes the home page Full Width Slider ‘not’ stretched like I want.

    @media only screen and (max-width: 768px) {
    .responsive #top .avia-slideshow-inner, .responsive #top .avia-slideshow-inner img {
    height: 450px !important;
    }
    }

    #1482565
    bemodesign
    Participant

    Can you get me CSS code to reduce the stretch of the Easy Sliders on my home page? But need to be careful because I need the stretched image for the Top Full Width Slider images. Last time the code reduced both. I just need the Easy Sliders reduced. Here is screenshot of long images: https://img.savvyify.com/image/Screen-Shot-2025-04-24-at-9.20.36-PM.9qqfd

    This same thing happened on this support thread, but it won’t fix this current issue. Here is the old thread: https://kriesi.at/support/topic/i-need-css-code-for-enfold-theme-reduce-stretched-image-on-mobile-view-for-easy/

    This code didnt work:

    .responsive #top .avia-slideshow-inner, .responsive #top .avia-slideshow-inner img {
    height: auto !important;
    }

    .responsive #top .avia-slideshow-inner, .responsive #top .avia-slideshow-inner img {
    height: 450px !important;
    object-fit: cover;
    }

    #1482564

    Hey manchust,

    Thank you for the inquiry.

    Did you add another logo slider for mobile view? Make sure that the Styling > Slider or Grid > Column count is set to 4, then add this css code:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all .slide-entry {
        width: 24%;
        margin-left: 2%;
      }
    }

    Best regards,
    Ismael

    #1482561

    Hey MAJO_Agency,

    Thank you for the inquiry.

    1.) The scroll-to-top button is hidden by default on mobile view because most mobile devices have built-in ways to navigate to the top. If you like to display it again, add the following css:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #scroll-top-link {
        display: block;
      }
    }

    2.) We may need to inspect the site to better understand the issue. Please provide the site URL and login details in the private field.

    Best regards,
    Ismael

    #1482558

    Hey envis,

    Thank you for the inquiry.

    That is the default style of the language switcher in the theme. If you need to add the submenu indicator, try to add this css code.

    #top #header .menu-item-language .dropdown_available {
        content: "";
        display: inline-block;
        margin-left: 0.6em;
        vertical-align: middle;
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 6px solid rgb(201, 201, 201);
        margin-top: 0.2em;
    }

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    We adjusted the code in the Quick CSS field a bit and temporarily disabled the Performance > File Compressions settings.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top #wrap_all .av-burger-overlay .av-burger-overlay-scroll #av-burger-menu-ul li a {
        font-size: 32px;
        line-height: 0.5em;
      }
    
      #top #wrap_all #header #av-burger-menu-ul>li.av-active-burger-items {
        opacity: 1;
        top: 0;
        left: 0;
        padding: 0.2em 0;
      }
    }

    View post on imgur.com

    Best regards,
    Ismael

    Perhaps the scrolling problem is not an enfold-issue but an WordPress issue. I did not find the CCS-file yet where that class is defined.

    The other thread …
    Problem with scroll bar Advanced Layout Editor

    erx_themeforest
    Participant

    Unfortunately, another thread dealing with the same topic is closed. Support was unable to reproduce the problem.
    It lies in the .edit-post-meta-boxes-main class. There overflow is now set to hidden . If I deactivate this in the browser inspector or change it to ‘scroll’, I can work.

    #1482197
    GWS
    Participant

    Hi,
    I’m following up on a similar topic I started about the search widget: https://kriesi.at/support/topic/search-widget-no-longer-working-correctly-since-update-to-enfold-7/

    I couldn’t respond to the topic earlier, but I appreciate your help with the custom search box widget. The CSS you provided works perfectly for the custom search widget located below the layerslider on the homepage. However, it also affected the search icon on the navigation menu bar. Instead of displaying the default SVG image for the navbar search box, it’s showing the custom widget’s image. Moreover, the search icon is misaligned within the text box entry area. When I attempt to modify the CSS for the navbar search box, it inadvertently changes the search icon in the page content widget. While the custom search widget is in great shape now, we need to restore the default SVG image and its position for the navbar search widget.

    Could you guide me on restoring the SVG image to the navbar search box without it impacting the custom search widget in the homepage content area?

    #1482158

    In reply to: Search icon

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    #top .menu-item-search-dropdown > a.avia-svg-icon svg:first-child {
      z-index: 0;
    }

    Best regards,
    Rikard

    #1482151
    MAJO_Agency
    Participant

    hi… I tried but I didn’t solve it.
    2 “problems”
    – the arrow to go back up on the page disappears in mobile and tablet mode. how to show it?
    – the testimonials section, in the mobile version, becomes long and narrow and the arrows remain at the top, not making usability easier.
    how to solve?

    thanks!!!

Viewing 30 results - 1,651 through 1,680 (of 142,844 total)