Viewing 30 results - 3,811 through 3,840 (of 142,852 total)
  • Author
    Search Results
  • #1466055

    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

    #1466051
    Aeroviews
    Participant

    Hi
    Could I have confirmation whether the testimonial navigation works or not please, as the topic has been marked close however it appears it still does not work. Thank you
    Site in question is the following

    At the bottom are the testimonials as per previous topic post.

    For further info:

    The overlaying Menu is created after the first opening event so setting an event listener directly leeds to some errors. Also i was able to incorporate the focusin event when leaving the menu

          /**
           * Barrierfree Menu Close with ESC Key
           * - enhance Enfold menu keyboard usabillity
           * @see https://kriesi.at/support/topic/menu-focus-trap-accessibility-keyboard-usage-improvement
           */
          var enfold_menu_close_by_key = function(){
            var options = {
                  key_code: 27, // ESC
                  classNames:{
                    active: 'is-active',
                    container_active: 'av-burger-overlay-active',
                    container_active_delayed: 'av-burger-overlay-active-delayed',
                  },
                  selectors: {
                    trigger: '.av-hamburger',
                    container: 'html',
                    overlay: '.av-burger-overlay',
                  }
                },
                trigger = document.querySelector(options.selectors.trigger),
                container = document.querySelector(options.selectors.container),
                overlay = null,
                has_overlay = function(){
                  if ( !( overlay instanceof HTMLElement ) ) {
                    overlay = document.querySelector(options.selectors.overlay);
                  }
                  return overlay instanceof HTMLElement ? true : false;
                },
                menu_close = function(){
                  var classNames = options.classNames;
                  
                  if ( trigger.classList.contains(classNames.active) ) {
                    trigger.classList.remove(classNames.active);
                    
                    container.classList.remove(classNames.container_active);
                    container.classList.remove(classNames.container_active_delayed);
                    
                    overlay.style.display = 'none';
                    overlay.style.opacity = 0;
                  }
                };
            
            if ( trigger instanceof HTMLElement ) { // if a menu trigger is used
              document.addEventListener('focusin', function(event){
                if ( has_overlay() && !event.composedPath().includes(overlay) ) {
                  // close the menu if any
                  menu_close();
                }
              });
            
              document.addEventListener('keydown', function(event){
                if ( has_overlay() && event.keyCode === options.key_code ) {
                  // close the menu
                  menu_close();
                }
              });
            }
          };
    
      enfold_menu_close_by_key();
    • This reply was modified 1 year, 6 months ago by tom.
    • This reply was modified 1 year, 6 months ago by tom.
    #1466047
    steviger
    Participant

    Hi guys,

    Only for my Calendar list view page, I would like to change the color of the header. It’s now white but the hamburger menu (top right) is white also…
    For normal pages you can use page-id but this page doesn’t seem to have an id.
    Any ideas on how to achieve this?

    Thanks in advance,

    Regards,

    Steven

    Hi Thank you for your response.

    i implemented it that way:

    
          /**
           * Barrierfree Menu Close with ESC Key
           * - enhance Enfold menu keyboard usabillity
           * @see https://kriesi.at/support/topic/menu-focus-trap-accessibility-keyboard-usage-improvement
           */
          enfold_menu_close_by_key = function(){
            var options = {
                  key_code: 27, // ESC
                  classNames:{
                    active: 'is-active',
                    container_active: 'av-burger-overlay-active',
                    container_active_delayed: 'av-burger-overlay-active-delayed',
                  },
                  selectors: {
                    trigger: '.av-hamburger',
                    container: 'html',
                    overlay: '.av-burger-overlay',
                  }
                },
                trigger = document.querySelector(options.selectors.trigger),
                container,
                overlay,
                menu_close = function(){
                  var classNames = options.classNames;
                  
                  if ( trigger.classList.contains(classNames.active) ) {
                    trigger.classList.remove(classNames.active);
                    
                    container.classList.remove(classNames.container_active);
                    container.classList.remove(classNames.container_active_delayed);
                    
                    overlay.style.display = 'none';
                    overlay.style.opacity = 0;
                  }
                };
            
            if ( trigger instanceof HTMLElement ) { // if an overlay is used
              document.addEventListener('keydown', function(event){
                if ( event.keyCode === options.key_code ) {
                  // get elements only once
                  if ( typeof container === 'undefined' ) {
                    container = document.querySelector(options.selectors.container);
                  }
                  if ( typeof overlay === 'undefined' ) {
                    overlay = document.querySelector(options.selectors.overlay);
                  }
                  // close the menu
                  menu_close();
                }
              });
            }
          },
    
      enfold_menu_close_by_key();
          

    While it works fine i seem to need some text-hint near the close button.
    Anyway i hoped you will consider it for an update, so i will work on my own solution.

    • This reply was modified 1 year, 6 months ago by tom.
    #1466036

    I can’t find what is indicated. In the additional CSS section I only marked this: .logo img, .logo svg {
    top: 10px;
    max-width: 100%;
    height: 50px;
    .logo img: url(“https://test.mettilapsoriasifuorigioco.it/”)
    }

    header {
    max-width: 100%;
    height: 150px;
    padding: 10px;
    filter: blur(0px);
    -webkit-filter: blur(0px);
    }

    @media only screen and (max-width: 767px) {
    full-width-img {
    margin: auto;
    width: 90%;
    }
    }

    @media screen and (max-width: 1024) {
    full-width-img {
    margin: auto;
    width: 90%;
    }
    }

    I attach photos https://prnt.sc/kndy4beZQXcZ / https://prnt.sc/kCxPrFNksDj0

    Mariarita

    #1466031

    Good morning,

    thanks for the reply.
    I managed to make the menu appear at the top of the photograph in the menu, but when I scroll, it disappears, only the photo of the testimonial appears, and then the menu reappears.
    I would like to avoid it disappearing from me and then reappearing. I would like it to be always visible and that all the content on the home page, when I scroll, disappears behind the header bar.
    I am attaching some photos to help you understand better, I am also attaching photos of the settings.

    Header at the top of the photo: OK – https://prnt.sc/6KM52YjOLl6y
    Header disappears when I start scrolling the page: NOT GOOD – https://prnt.sc/N1qPne-w-4Bs
    Header reappears when I scroll again, okay – https://prnt.sc/qz9MmibxIFuI
    Header settings – https://prnt.sc/hb0ts_z2Gc8a / https://prnt.sc/jQUPRNV8YEiJ

    Thank you, Mariarita

    #1466015

    Hi Mike,

    If I could attach a screenshot of my homepage with the big white space where the slider should appear to this message I would, but I can’t how.

    Instead, you’re welcome to go into my WordPress account and add a Full-width Easy Slider to the top of my homepage, then look at the preview (without updating the page). Do that and you’ll see what I’m talking about.

    Best regards,
    Jocelyn

    #1466012
    Jason
    Participant

    hi there,
    is it possible to either add this to the top of the page (as well as the bottom)?
    i’m using the grid layout.
    or move it from below the posts – to above the posts?
    thanks!
    Jason

    #1466004

    Hi,
    To change the widget titles, please see this thread.
    For us to find the over-riding Footer font color we will need to see your site, so once it is online please open a new thread, as this is not your thread posting your admin login here will not be private and you will not see our comments in the Private Content area.
    Thank you for your patience and understanding and for using Enfold.

    Best regards,
    Mike

    Hi,
    #3 try this css:

    #top #header .av-main-nav > li.button.logo > a {
    	font-size: 0;
    }

    #4

    .av-main-nav ul li {
        list-style-type: none;
    }

    Best regards,
    Mike

    #1466002

    Hi,
    For desktop this seems to work for me:

    @media only screen and (min-width: 768px) { 
    	.html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 290px;
    }
    }

    Best regards,
    Mike

    Hey Peter,
    In the WP Table Builder plugin support one day ago a user reports:
    change version to 1.5.1 icons will work. something wrong with 1.6.0 and 1.6.1
    They seem to have about 15 similar issues from the past two days.
    I don’t see any theme errors, try publishing your page and see if that is the issue, or post to the plugin support page.

    Best regards,
    Mike

    #1465992

    Hey steridhh,
    Thanks for your patience and the link to your site, your site gives the error: iframeResizer.contentWindow.js:71 [iFrameSizer][palisis] No tagged elements (data-iframe-height) found on page
    This could be that the script is running before the iframe is loaded, you could try changing to this:

    <script type="text/javascript" src="/wp-content/files/js/iframeResizer.js"></script>
        <script type="text/javascript">
            window.addEventListener('DOMContentLoaded', function() {
            function resizeId(){
                var iframe = document.querySelector('#palisis')
                iframe.style.width = iframe.parentElement.clientWidth + 'px';
            }
        }
        </script>
        <iframe id="palisis" src="https://top-tour-hamburg.palisis.com/" style="width:100%; border:none"></iframe>
    <script>
    iFrameResize({checkOrigin:false, heightCalculationMethod: 'taggedElement'}, '#palisis');
    </script>

    But your script tries to make the ID #palisis fullwidth, which it is:
    Screen Shot 2024 09 01 at 8.18.27 AM
    Your problem is that your iframe is showing a second iframe with another div with the class “shop-widget”, this element’s source css has a max-width of 1200px:
    Screen Shot 2024 09 01 at 8.22.23 AM
    Screen Shot 2024 09 01 at 8.23.32 AM
    Perhaps this will work:

    <script type="text/javascript" src="/wp-content/files/js/iframeResizer.js"></script>
        <script type="text/javascript">
            window.addEventListener('DOMContentLoaded', function() {
            function resizeId(){
                var iframe = document.querySelector('#palisis')
                iframe.style.width = iframe.parentElement.clientWidth + 'px';
                var iframeB = document.querySelector('.shop-widget')
                iframeB.style.width = iframeB.parentElement.clientWidth + 'px';
            }
        }
        </script>
        <iframe id="palisis" src="https://top-tour-hamburg.palisis.com/" style="width:100%; border:none"></iframe>
    <script>
    iFrameResize({checkOrigin:false, heightCalculationMethod: 'taggedElement'}, '#palisis');
    </script>

    If it did it would look like this:
    Screen Shot 2024 09 01 at 8.32.23 AM
    I don’t think that is what you want, so I recommend making the element above the same width with this css:

    #top.page-id-1162 #av-layout-grid-1.av-layout-grid-container {
    	max-width: 1200px !important;
    }
    #top.page-id-1162 #av-layout-grid-1 .flex_cell {
    	padding: 15px !important;
    }

    Screen Shot 2024 09 01 at 8.43.25 AM

    Best regards,
    Mike

    Hi Mike, I’m suprised that you say that nothing is wrong in the page https://fysiobreda.thedigitalmanager.nl/behandelingen/dry-needling/, as this is how the menu is looking:

    white space above full width slider

    Whats wrong is:
    – there is a white space above the full width dia slider, the menu is not ‘on top of the full width slider/ content’

    What I try to achieve is:
    – the menu is on top of the content / full width slider, as is the case on for example https://fysiobreda.thedigitalmanager.nl/
    desired result
    Could you set that up for page, so I can use that as a template for other pages?

    #1465964

    Hey rolento_usf4,

    I’m not sure that I fully understand your intentions, but it sounds like you are looking for a mega menu. That can be selected for each top level menu item under Appearance->Menus.

    Best regards,
    Rikard

    #1465962

    Hi,

    Great, I’m glad that you found a solution and thanks for sharing :-)

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

    Best regards,
    Rikard

    #1465956

    you can see it here https://webers-testseite.de/transparent-header/

    with my custom-class on that menu-item : only-subnav
    i used the footermenu for the first submenu on that page. So i had to set it for footer-menu to display none in this case

    
    #top #sub_menu1 .only-subnav {
      padding: 0 !important;
      float: left;
      top: 7px;
    }
    
    #sub_menu1 .only-subnav a {
      background-color: transparent !important;
    }
    
    #top #sub_menu1 .only-subnav img {
      margin: 0 !important;
      height: 40px
    }
    
    #top .sub_menu_socket .only-subnav {
      display: none;
    }

    I have not yet fully styled this for the Responsive case – because I only want to set this temporarily.

    #1465947

    But I do appear to need one more bit of help with CSS –

    What can I do to add some padding as the element is now overlapping the top of some pages a bit – see one example below.

    FYI this is desktop view only. I have this issue via mobile taken care of using:

    @media only screen and (max-width: 430px) {
    .html_header_top.html_header_sticky #top #wrap_all #main {
    padding-top: 282px !important;
    }
    }

    @media only screen and (max-width: 767px) and (orientation: landscape) {
    .responsive #top #wrap_all #main {
    padding-top: 259px !important;
    }
    }

    @media only screen and (max-width: 690px) and (orientation: landscape){
    .responsive #top #wrap_all #main {
    padding-top: 282px !important;
    }
    }

    • This reply was modified 1 year, 6 months ago by biggsuccess.
    • This reply was modified 1 year, 6 months ago by biggsuccess.
    #1465942

    Hi Rikard! I found a solution from Mike:

    WooCommerce Show Two Products side by side in Mobile view.

    #1465936

    1) I was hoping there may be some CSS for mobile view of the banner – to look as it does on desktop and not collapse into a box with stacked text. If that isn’t possible that’s fine too.

    2) Could you please assist me with a CSS suggestion for top margin/padding for the LayerSlider

    I appreciate your help

    • This reply was modified 1 year, 6 months ago by biggsuccess.
    #1465929

    Hi,
    I’m not sure what would be “nicer on mobile view”
    But this added element is covering your LayerSlider so you could hide this on mobile or add more top margin/padding to your LayerSlider to push it down.

    Best regards,
    Mike

    #1465924

    Thanks Mike – I edited in a couple other issues:

    1) Is there anything I can do to make the banner look a little nicer on mobile view?

    2) And what I can do to prevent the top of the slider element below the menu on mobile view from not being cut off

    #1465922

    Hi,

    .main_menu {
    	padding-top: 20px;
    }

    Best regards,
    Mike

    #1465919

    In reply to: Category page edits

    Hi,
    Try this css:

    #top #main .sidebar_left .sidebar {
        border-right-style: none; 
    }
    .archive h1.av-banner-description p {
    	font-size: 80px;
    }

    Best regards,
    Mike

    #1465918

    Mike that is amazing! Now if I want to add a little more padding between the bottom of the banner and the top of the menu what css should I use?

    Also – anything I can do to make that a little nicer on mobile view?

    And what I can do to prevent the top of the slider element below the menu on mobile view from not being cut off

    • This reply was modified 1 year, 6 months ago by biggsuccess.
    • This reply was modified 1 year, 6 months ago by biggsuccess.
    #1465900

    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

    #1465874

    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

    #1465870

    Hi,

    Great, I’m glad that you got it working. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1465832

    That worded but it only got the middle wording. It didn’t get the top “Prepended static text” or the bottom “Special Header H3”. see attached

Viewing 30 results - 3,811 through 3,840 (of 142,852 total)