Viewing 30 results - 4,501 through 4,530 (of 142,856 total)
  • Author
    Search Results
  • Guenni007
    Participant

    There are ways to scale checkboxes for safari – because these are very small . But doing this will scale those checkboxes for mobile devices iOS too!
    I tried to circumvent that by detection of touch-device – but it does not work.

    f.e:

    .responsive:not(.touch-device)  input[type=checkbox],
    .responsive:not(.avia_mobile)   input[type=checkbox] {
        -webkit-transform: scale(2,2); 
        transform-origin: left center;
    }
    #1459781

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1459576

    Hi,

    Great, I’m glad to hear that Ismael could help you out. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1459477

    In reply to: Layerslider malware

    Hi,

    Yes, very good news indeed. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1459475

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1459338

    1. When I added that code, it changed the look on the desktop also. It looks good on mobile, but how do I just specify that only?

    2. Also, trying to get rounded edges on these specific images only. What code can I add? And need to make sure the “square” link box around it doesn’t show.

    Thanks!

    • This reply was modified 1 year, 9 months ago by bemodesign.
    • This reply was modified 1 year, 9 months ago by bemodesign.
    #1459282

    Hi,

    I see the Advanced>Responsive >Mobile Display where you can hide the column on mobile devices.

    We recommend using the Fullwidth Slider element instead of the Column element to take advantage of the Advanced > Responsive > Element Visibility settings.

    If you need to use the Column element, you can manually add these class names in the Advanced > Developer Settings > Custom CSS Class field to control visibility on different screen sizes:

    av-desktop-hide av-medium-hide av-small-hide av-mini-hide
    

    As follows is what each of the class names does:

    av-desktop-hide: Hides the element on large screens or desktop view.
    av-medium-hide: Hides the element on medium screens (768px to 989px, e.g., Tablet Landscape).
    av-small-hide: Hides the element on small screens (480px to 767px, e.g., Tablet Portrait).
    av-mini-hide: Hides the element on very small screens (smaller than 479px, e.g., Smartphone Portrait).

    Best regards,
    Ismael

    #1459258

    Hi,

    Thank you for the access.

    We edited the script so that it only activates when the “av-submenu-container” element exists. This seems to improve performance on the home page and other pages with the element.

    /**
     * Full Width Submenu active
     */
    
    function activateMenuItem() {
    ?>
    <script>
        jQuery(document).ready(function() {
            var menu = jQuery('.av-submenu-container');
    
            if (menu.length) {
                var sections = jQuery('.avia-section'),
                    nav_height = menu.outerHeight();
    
                jQuery(window).on('scroll', function() {
                    var cur_pos = jQuery(this).scrollTop();
                    sections.each(function() {
                        var top = jQuery(this).offset().top - 300,
                            bottom = top + jQuery(this).outerHeight();
    
                        if (cur_pos >= top && cur_pos <= bottom) {
                            menu.find('li').removeClass('active-menu-item');
                            menu.find('a[href="#' + jQuery(this).attr('id') + '"]').parent('li').addClass('active-menu-item');
                        }
                    });
                });
            }
        });
    </script>
    <?php
    }
    add_action('wp_head', 'activateMenuItem');
    

    Best regards,
    Ismael

    #1459252

    Hi,

    Thank you for the info.

    Did you add the following css code? The images get stretched because of it.

    .avia-image-container .avia_image, .avia-image-container .avia-image-overlay-wrap {
        height: 200px !important;
        width: 400px !important;
        margin: 20px 0 0 0 !important;
    }

    To adjust the width of the columns in mobile view for this specific section, try applying a unique ID to the Color Section in the Advanced > Developer Settings > Custom ID field (for example: bc-custom-section). Then, add this css code:

    #top #bc-custom-section div .flex_column {
        width: 50% !important;
        margin-left: 1%;
    }

    Best regards,
    Ismael

    webworm72
    Participant

    I recently provisioned a new server and migrated several of my existing websites to the new server. The new server provides PHP 8.0 and above. The old server was running 7.4.

    Several of the websites now have issues of not sending out notifications using Enfolds built in contact form.
    As an example see website here https://bridgetbycinacounseling.com running the build below.
    PHP 8.0
    WordPress 6.5.5
    Enfold Version: 5.6.9

    The built in Enfold form is at page below:

    I installed a 3rd party contact form, WP Forms at test page below, and this form works properly.

    I did this to all of the websites that stopped working and all of the 3rd party contact forms work! Both WP Forms and Gravity Forms.
    Which means there is nothing wrong with the website settings or settings on my server as far as the forms properly sending out notifications.

    I prefer using Enfolds built in contact form as opposed to 3rd party plugins. If you have any insights or thoughts on what might be going on that would be great.

    #1459049

    Hi Ismael,

    I see the Advanced>Responsive >Mobile Display where you can hide the column on mobile devices. However, both of these would show on the desktop version where there is no option to hide on desktops. I have to use two columns because the mobile will have a different background image and the background has to in the column itself because it has two elements overlaid on it.

    I notice you say Responsive ‘Toggle’. Am I missing something?

    Failing that could I put css in the developer area to hide them?

    Thanks so much.

    #1458879

    see here with an image : https://webers-testseite.de/popup-gallery/

    or simpler by a different font icon

    #top .image-overlay .image-overlay-inside::before {
      content: "\E80E" !important;
      font-family: entypo-fontello;
      font-size: 42px;
      font-weight: 400;
    }
    #1458787

    Hi,
    Thanks for prompt reply.

    Yes we did, even changed the 2 keys for V2 and 3.

    What’s weird is that it only appears on some pages

    Not here https://tabiji.fr/destinations-regions/ or top page
    But here https://tabiji.fr/services-prestations/ or https://tabiji.fr/contact/
    It came up with last update

    #1458744

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1458738
    bemodesign
    Participant

    See he home page first “color section” with background image? How can I get this same look, but have the photos, buttons, and wording rotate out? Is there a way I can do this with full screen slider? If so, how can I get the same exact look on desktop and mobile, that I do now?

    #1458732
    mama40
    Participant

    Hello,
    I found about 100 threads related to the issue, that the generated image sizes are bigger than the original image.
    I am also having this issue and am wondering if anyone found a solution within the last 5 years this topc was been found in this forum.
    Thanks.

    Best regards
    Axel

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1458584

    use that class: go-back-link for styling.

    i have on some installations for posts/portfolio on top a goback button with this:

    function go_back_button(){
    ?>
    <script type = "text/javascript">
    (function($){
      $('<div class="avia-button-wrap avia-button-left goback"><a href="" class="avia-button av-icon-on-hover avia-color-theme-color   avia-icon_select-yes-left-icon avia-size-small avia-position-center "><span class="avia_button_icon avia_button_icon_left " aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span><span class="avia_iconbox_title">zurück</span></a></div>').prependTo('#top.single .post-entry:first');
      $('.goback').on('click', function(e){
          e.preventDefault();
          window.history.back();
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action( 'wp_footer', 'go_back_button' );

    the window.history.back(); can do the job too.
    but you can place that manually be each button with that class custom-class : goback
    then only use:

    function go_back_button(){
    ?>
    <script type = "text/javascript">
    (function($){
      $('.goback').on('click', function(e){
          e.preventDefault();
          window.history.back();
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action( 'wp_footer', 'go_back_button' );
    #1458577

    Hey Marko,

    The update to 5.7.1 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
    You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
    If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
    Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1458557

    Hi,

    Thank you for the info.

    You can use this css code to adjust the width of the masonry items on smaller screens (1400px or less):

    @media only screen and (max-width: 1400px) {
    
      /* Add your Mobile Styles here */
      #top .av-masonry.av-a3xg2-658ab37a9edd2ce89fe50f0c548108e2 .av-masonry-entry {
        width: 100%;
      }
    }

    Best regards,
    Ismael

    #1458549

    Hey tonyiatridis,

    Thank you for the inquiry.

    You can replace the Column element with the Fullwidth Easy Slider to make the image fully visible even on smaller screens. You can also add another column element with a background image that is specifically resized for mobile view. You can then toggle the visibility of the elements on different screen sizes by adjusting the Element Visibility options in the Advanced > Responsive toggle. Basically, you’ll have a layout for desktop view and another for smaller screens.

    Best regards,
    Ismael

    #1458548
    bemodesign
    Participant

    I’m trying to get these category photos and text to show “4 across” on desktop, and then “2 and 2” on Mobile view. Can you tell me how to achieve this?
    See screenshots attached.
    Thanks

    #1458546

    Hey Sebastian,

    Thank you for the inquiry.

    Did you add this css code?

    .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 170px!important;
    }

    If you want to override it on mobile view, please add this modification:

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 10px !important;
      }
    }
    

    Best regards,
    Ismael

    Hey spokerstradingco,

    Thank you for the inquiry.

    You can add this css code to adjust the background color of the gallery thumbnail:

    #top div .avia-gallery .avia-gallery-big img, #top div .avia-gallery .avia-gallery-thumb img {
        background-color: transparent;
    }
    

    Best regards,
    Ismael

    #1458543
    tonyiatridis
    Participant

    I have a 1/1 layout item with background picture and within it some text and a button. It looks fine at normal width and I am going to make a separate layout for the mobile view. However when making the browser widow less wide as some people might do the background image crops on both sides, which is an issue because the clients imagery has the CEO of the company off to the extreme left. The text and button stay centered whites great but the image crops.

    So is there a way to have this entire 1/1 layout item with all of its contents and the background image became responsive and change size both vertically and horizontally to hold its shape when the browser is less wide but before the mobile breakpoint?

    You can see the 1/1 layout item at the top of then home page here in the mockup:

    #1458537
    xeovision
    Participant

    Hallo,
    i get on every page strange space inbetween the #header and #main ..but i can not deduce it on mobile.
    screenshot-gute-literatur-am-see-de-2024-06-25-00-23-00

    Whats wrong?

    /******* MOBILE ***********/
    @media only screen and (max-width:768px) {
    .html_header_top.html_header_sticky #top #wrap_all #main {
      padding-top: 10px !important;		
    }

    url: https://gute-literatur-am-see.de/

    #1458528

    Top Header – Logo left – menu right.
    to have on start to all pages first the hamburger active and to generate the widget area – this to child-theme functions.php:

    function custom_burger_menu_active( $active, $context ){
    	return true;
    	return $active;
    }
    add_filter('avf_burger_menu_active', 'custom_burger_menu_active', 10, 2 );
    
    add_action('ava_after_footer_output', function() {
      echo '<div id="extra_sidebar" class="container_wrap extra_sidebar_color" role="contentinfo" ><div class="container" style="text-align: center; padding: 10px 0 20px">';
      echo do_shortcode("[av_sidebar widget_area='extra_sidebar']");
      echo '</div></div>';
    });
    

    this is for social bookmarks a shortcode to place inside a text-widget :

    function social_bookmarks_shortcode() {
    $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');
    $social = avia_social_media_icons($social_args, false);
    return $social;
    }
    add_shortcode('social-bookmarks', 'social_bookmarks_shortcode');

    to use it as : [social-bookmarks]

    now goto your widgets and create a new widget area : extra_sidebar
    !!! to have on top a free space not to overlap the hamburger icon i placed to that a text-widget on top with an empty div container:

    here is the css code: you can fit to your needs the amount of that extra bar:

     .responsive #top #wrap_all #header {
        position: fixed !important;
        height: 100px !important;
      }
    
    .html_header_top #top #header .container {
      width: 100% !important;
      padding: 0;
      max-width: 100% !important;
    }
    
    .html_header_top #top #header .main_menu,
    .html_header_top #top #header .av-main-nav-wrap,
    .html_header_top #top #header .av-burger-menu-main {
      width: 100px;
      margin: 0 !important;
    }
    
    .html_header_top #top #header .av-burger-menu-main a {
      padding: 0 !important;
      text-align: center;
    }
    
    #top #header_main > .container, 
    #top #header_main > .container .main_menu .av-main-nav > li > a, 
    #top #header_main #menu-item-shop .cart_dropdown_link {
      height: 100px !important;
      line-height: 100px !important;
    }
    
    .header_color .header_bg, 
    .header_color .main_menu ul ul, 
    .header_color .main_menu .menu ul li a, 
    .header_color .pointer_arrow_wrap .pointer_arrow, 
    .header_color .avia_mega_div, 
    .header_color .av-subnav-menu > li ul, 
    .header_color .av-subnav-menu a {
      background-color: transparent !important;
    }
    
    .html_header_top.html_header_sticky #top #wrap_all #header {
      box-shadow: none
    }
    
    .html_header_top.html_header_sticky #top #wrap_all #main {
      padding-top: 0px !important;
    }
    
    .html_av-overlay-side #top .av-burger-overlay-scroll {
      background-color: rgba(0,0,0,0.5) !important;
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
    }
    
    .responsive #top .av-logo-container .logo {
      display: none !important;
    }
    
    #extra_sidebar  {
      display: block;
      position: fixed;
      width: 100px !important;
      height: 100%;
      top: 0;
      right: 0px;
      left: auto;
      background-color: #FFF;
      z-index: 302 !important;
    }
    
    #extra_sidebar .container  {
      height: 100%;
    }
    
    .html_header_top #top #wrap_all #main {
      width: calc(100% - 100px);
      padding-top: 0px !important;
    }
    
    #top #extra_sidebar .avia-builder-widget-area {
      display: flex !important;
      flex-flow: column nowrap;
      justify-content: space-around !important;
      height: 90%;
      padding-top: 250px !important; /*** try your self a good looking value ******/
    }
    
    #top #extra_sidebar .avia-builder-widget-area:before,
    #top #extra_sidebar .avia-builder-widget-area:after {
      display: none;
    }
    
    #top #extra_sidebar .avia-builder-widget-area > * {
      flex: 0 1 auto;
      -ms-writing-mode:tb-rl;
      writing-mode:vertical-rl;
      /*! transform:rotate(180deg); */
    }
    
    #top #extra_sidebar .avia-builder-widget-area svg,
    #top #extra_sidebar .avia-builder-widget-area img  {
      width: auto;
      height: 70px;
      transform: rotate(90deg);
      transform-origin: top right;
      margin-right: 15px;
    }
    
    #top #extra_sidebar .widget ul.social_bookmarks  {
        transform: rotate(90deg) !important;
    }
    
    #top #extra_sidebar .widget ul.social_bookmarks li a {
        transform: rotate(-90deg) !important;
    }
    
    @media only screen and (min-width: 768px) and (max-width: 989px) {
      .responsive.html_mobile_menu_tablet.html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 0px;
      }
    }

    I don’t know whether existing rules have played a role here. If it doesn’t work right away, please contact me again.

    akriga
    Participant

    Hi,
    we have a webpage with 2 self-hosted mp4 videos on it. Each time the page is requested I believe Enfold issues a HEAD request for the .webm and .ogv alternatives. We do not have .webm and .ogv alternatives for the mp4 videos.`
    I see this in the Apache log for every request:

    servers.own.ip - - [24/Jun/2024:15:37:18 +0100] "HEAD /wp-content/uploads/2024/01/Video-4.jpg HTTP/1.1" 404 6076 "-" "-"
    servers.own.ip - - [24/Jun/2024:15:37:18 +0100] "HEAD /wp-content/uploads/2024/01/Video-4.webm HTTP/1.1" 404 6076 "-" "-"
    servers.own.ip - - [24/Jun/2024:15:37:18 +0100] "HEAD /wp-content/uploads/2024/01/Video-4.ogv HTTP/1.1" 404 6108 "-" "-"
    86.x.x.x - - [24/Jun/2024:15:37:15 +0100] "GET /wp-content/uploads/2024/01/Video.mp4 HTTP/1.1" 206 "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36"
    servers.own.ip - - [24/Jun/2024:15:37:18 +0100] "HEAD /wp-content/uploads/2024/01/Video.jpg HTTP/1.1" 404 6108 "-" "-"
    servers.own.ip - - [24/Jun/2024:15:37:18 +0100] "HEAD /wp-content/uploads/2024/01/Video.webm HTTP/1.1" 404 6092 "-" "-"
    servers.own.ip - - [24/Jun/2024:15:37:19 +0100] "HEAD /wp-content/uploads/2024/01/Video.ogv HTTP/1.1" 404 6076 "-" "-"

    So for every valid request Apache has to deal with 4x requests that will do nothing but hurt performance. At times of peak load doing 4x more work than needed is an overhead we can do without. I see a discussion about filtering this here:

    which might be part of a solution but it doesn’t seem that filter has been implemented.

    How can I switch off the extra requests for fallback formats that don’t exist please?
    Thanks.

    #1458286

    In reply to: Number of blog entries

    Thank you!
    Topic can be closed :)

    Best regards

    #1458271

    Hi Ismael,
    After many tests on different installations, I have come to the conclusion that the lagging scrolling behavior is given by the function:
    https://kriesi.at/documentation/enfold/fullwidth-sub-menu/#toggle-id-4

    /**
     * Full Width Submenu active
     */
    
    function activateMenuItem(){
    ?>
    <script>
         jQuery(document).scroll(function() {      
         var sections = jQuery('.avia-section'),
             menu   = jQuery('.av-submenu-container'),
             nav_height = menu.outerHeight();
             jQuery(window).on('scroll', function() {
                var cur_pos = jQuery(this).scrollTop();
                sections.each(function() {
                    var top = jQuery(this).offset().top - 300,
                        bottom = top + jQuery(this).outerHeight();
                    if (cur_pos >= top && cur_pos <= bottom) {
                        menu.find('li').removeClass('active-menu-item');                    
                        menu.find('a[href="#' + jQuery(this).attr('id') + '"]').parent('li').addClass('active-menu-item');
                    }
                });
            });
        });
     
    </script>
    <?php
    }
    add_action('wp_head', 'activateMenuItem');

    Is there another way to set active on the ALB Fullwidth Sub Menu?
    Thank you
    Best Regards
    Manu

Viewing 30 results - 4,501 through 4,530 (of 142,856 total)