Forum Replies Created

Viewing 30 posts - 13,831 through 13,860 (of 35,289 total)
  • Author
    Posts
  • in reply to: Full screen slider not responsive #1329958

    Hi,
    Very good then, glad we were able to clarify this for you, 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: Reduce quote button width and button location #1329953

    Hi,
    Ok, looking back at you product that we were working on that you were happy with: Testo 310 I see the short description div is present because a [Return] key entered two paragraph tags were added:
    2021-11-22_001.jpg
    So I tried entering the [Return] key once on a product where the short description was not present and thus the buttons were not lined up: Testo 830 and this solved the issue:
    2021-11-22_002.jpg
    So please check and try this on your other products.

    Best regards,
    Mike

    in reply to: Woocommerce #1329942

    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: Reduce quote button width and button location #1329874

    Hi,
    Well I tested on my localhost and found that if you don’t add a short description then the div is not added, thus changing the layout. So you make all of your products have the same layout thus alining the buttons the same you would want to add a short description to all of your products, were you planning on doing this and just have not had time?

    Best regards,
    Mike

    in reply to: Dropdown menu goes off screen #1329873

    Hey Brian,
    Thank you for the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    @media only screen and (min-width: 1200px) and (max-width: 1800px) { 
    #header_main_alternate .main_menu .menu li#menu-item-4460 ul ul {
        left: -207px!important;
    }
    }

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

    Best regards,
    Mike

    in reply to: Edits to product category pages #1329872

    Hi,
    Please try this css:

    #top #wrap_all h3.slide-entry-title.entry-title {
    font-size: 17px !important;
    font-weight: normal;
    }

    After applying the css, please clear your browser cache and check.
    Please note that not all fonts have a 100 font-weight available, thus the use of “normal” but you can try 100 if you want.

    Best regards,
    Mike

    in reply to: How can I add a link next to the burger menu #1329863

    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: Columns changes no mobile screen #1329862

    Hi,
    Sorry I don’t have an iPhone or iPad so I’m testing based on screen widths, my info has the iPad pro at 1024px-1366px, regular iPad 768px-1024px, & iPhone 414px-736px
    so iPad portrait should be between 768px – 1024px & iPhone landscape should be 736px
    in my test the iPhone landscape shows the 3 boxed items as a single column, please see the screenshot in the Private Content area.
    The iPad pro & regular iPad also looked fine with the css above applied, it doesn’t look like you are using it right now, but see my screenshots below.
    Please note that testing with iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.
    So perhaps this is why the css above looked like it didn’t work, please try again.
    If you still have trouble please include screenshots so I can try to match.
    As a side note please ensure you are not “zooming” the browser and you are using 100% scale, some users use the “zoom” on their browser but there is no css that can recognize “zoom” so there would be no solution for that.

    Best regards,
    Mike

    in reply to: custom menu item styling #1329857

    Hey ndszamoca,
    Thanks for the link to your site, I was not how much space you wanted or how big the button should be so please try this css:

    .header-scrolled .donuni,.header-scrolled .donuni > a {
        margin: 10px 0;
        max-height: 60px;
        line-height: 40px!important;
    }
    .donuni {
        margin-top: 50px;
        max-height: 60px;
        line-height: 40px!important;
    }
    .donuni > a {
    	line-height: 60px!important;
    }

    After applying the css, please clear your browser cache and check.
    The expected results;
    2021-11-21_145814.jpg

    Best regards,
    Mike

    in reply to: How can I add a link next to the burger menu #1329852

    Hi,
    Thank you, I see that you tried to add this css to hide the added menu items:

    .responsive #top #wrap_all #header #av-burger-menu-ul > li.menu-item-1134.av-active-burger-items {
        display: none;
    }

    and they are hidden after a second but on initial opening of the burger menu they are shown, this is because the burger flyout menu is created on click and is not present on page load so there is a lag between the menu creation and the browser applying the css.
    So let’s scrap that idea and try this instead, remove those menu items, and add this code to the end of your functions.php file in Appearance ▸ Editor:

    function custom_menulink_script() { ?>
        <script>
    (function($) {
      var custommenulink = $('<a class="custommenulink" href="/tr/">TR</a><a class="custommenulink" href="/en/">EN</a>');
        $(custommenulink).insertBefore('.menu-item-avia-special');
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_menulink_script');

    please adjust the link url in the above code.
    and add this code in the General Styling ▸ Quick CSS field:

    a.custommenulink {
        line-height: 80px;
        color: #fff;
        padding: 0 13px;
        font-weight: 600;
    }
    a.custommenulink:hover {
        color: #fff;
        text-decoration: none;
    }
    .js_active.html_burger_menu #avia-menu .av-burger-menu-main {
    	float: right;
    }
    @media only screen and (min-width: 768px) { 
    #avia-menu a.custommenulink {
        line-height: 90px;
    	}
    }

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

    Best regards,
    Mike

    in reply to: Widget Enfold Facebook Likebox don't working in footer #1329844

    Hi,
    Odd, I moved the FB widget to the inactive wigets area and now the custom code one is the only one showing for me, please clear your browser cache and check.
    Are you using a ad-blocker? In this post it sounds like you are, if so which one are you using? If you turn off the ad-blocker are you able to see the Likebox?

    Best regards,
    Mike

    in reply to: How can I add a link next to the burger menu #1329843

    Hi,
    Please add the items so I can examine and give you some css to hide from the mobile menu.

    Best regards,
    Mike

    in reply to: grid row cells not lined up #1329839

    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: How can I add a link next to the burger menu #1329838

    Hi,
    Please create two menu items like above and adjust this css to match your menu item ID’s

    .responsive #top .av-main-nav #menu-item-3178.menu-item {
    	display:block;
    }
    .responsive #top .av-main-nav #menu-item-3179.menu-item {
    	display:block;
    }

    Best regards,
    Mike

    in reply to: Full width submenu horizontal scroll #1329816

    Hi,
    To not have a menu icon in mobile for your sub-menu please change the Mobile Menu Display option to Display Full Menu
    2021-11-20_002.jpg
    As for having a sticky sub-menu on mobile, I have a solution that works on an Enfold install, but it doesn’t seem to work on your site, perhaps due to your sub-menu has the menu button showing right now, but you can try.
    Try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
        <script>
    (function($){
      $(function() {       
         var scroll_start = 0;
         var startchange = $('#sub_menu1');
         var offset = startchange.offset();
          if (startchange.length){
         $(document).scroll(function() { 
            scroll_start = $(this).scrollTop();
            if(scroll_start > offset.top) {
              document.getElementById('sub_menu1').classList.add('sticky-top');
             } else {
              document.getElementById('sub_menu1').classList.remove('sticky-top');
             }
         });
          }
      });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    and add code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

     .sticky-top {
        position:fixed!important;
        top:0!important;
        z-index:10000!important;
    }
    

    if this doesn’t work Please include an admin login in the Private Content area so we can investigate.

    Best regards,
    Mike

    in reply to: Admin bar over content #1329812

    Hi,
    Glad Yigit was 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: Full screen slider not responsive #1329811

    Hey Nicky1976,
    Thank you for the link to your site, when I check the slider the headlines are fully visible on mobile, so what I believe you are referring to is the full width of the images are not shown on mobile in portrait mode, this is because this slider shows the preference of full height over scaling down the image to show the full width.
    The problem is that your desktop images have an aspect ratio towards landscape and not portrait. To show a fullscreen slider on mobile and show the full width of the images you will need to use two sliders, one for desktop and one for mobile, you can use the screen options to show/hide them.
    When you create the images for the mobile version you will want to ensure they have a portrait aspect ratio, just about double the height vs the width, here are some exact screen sizes if you are interested.
    If you just want to use the images you already have and you don’t need the slider to be fullscreen on mobile, then use an Easy Sider element as your second slider, it will show the full width but it won’t be as tall.

    Best regards,
    Mike

    in reply to: Querstriche im Untermenü / Dashes in the submenu #1329809

    Hi,
    Thank you for the screenshot, but it looks like you have already sorted this out?

    Best regards,
    Mike

    in reply to: Columns changes no mobile screen #1329808

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

    @media only screen and (min-width: 767px) and (max-width: 1368px) { 
    #top.home #av_section_2 .flex_column_table_cell {
    	padding: 30px 10px!important;
    }
    #top.home #av_section_2 .flex_column_table_cell .avia-button.avia-size-x-large {
    	min-width: 180px;
    }
    }

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

    Best regards,
    Mike

    in reply to: image stick to bottom (again!) #1329806

    Hi,
    Glad Rikard could 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: open-popup-modal on mobile #1329802

    Hi,
    Try preventing the page from scrolling with the lightbox popup by trying this solution

    Best regards,
    Mike

    in reply to: Remove white space below slider #1329799

    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: Contact Form push engine down #1329795

    Hi,
    Glad we were able to help with the original questions, and thanks for sharing your spam attack solution, 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: Fullwidth slider causes content load delay #1329786

    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: How can I add a link next to the burger menu #1329785

    Hi,
    Ok, assuming that this will be a link that only shows on mobile, you can add a custom menu item to the bottom of your main menu and adjust this css so the menu ID in the rule matches your menu item:

    @media only screen and (max-width: 767px) { 
    	.responsive #top .av-main-nav #menu-item-3178.menu-item {
    	display:block;
    }
    }
    @media only screen and (min-width: 768px) { 
    	.responsive #top .av-main-nav #menu-item-3178.menu-item {
    	display:none;
    }
    }
    

    2021-11-20_001.jpg

    Best regards,
    Mike

    in reply to: How can I add a link next to the burger menu #1329780

    Hi,
    Ok, your screenshot looks like a language selector, are these two links or one? are the links shown on the desktop site? Can we see your site?

    Best regards,
    Mike

    in reply to: Troubleshooting transparent/shrinking header #1329779

    Hey jaimemerz,
    For your homepage I would recommend using an image element to show your giant 1/2 page logo in the center of the screen and then hide it on scroll.
    What are your plans for tablets and mobile?
    Try setting up your logo below the menu like you would have it and adding the “logo” image in the center of the screen, and include an admin login so we can assist with hiding on scroll, your staging site doesn’t have any interior pages linked in the menu, please add.

    Best regards,
    Mike

    in reply to: Possible To Display Current Date in Text Block? #1329777

    Hi,
    Glad Yigit was 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: How can I add a link next to the burger menu #1329775

    Hey koraytastan,
    If the link is a language selector can you tell us which plugin you are using and link to your site so we can see where it is currently showing?

    Best regards,
    Mike

    in reply to: grid row cells not lined up #1329754

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

    #av-layout-grid-1 .avia-content-slider .slide-entry-wrap,
    #av-layout-grid-1 .avia-content-slider .slide-entry-wrap a.slide-image {
        margin-bottom: 0;
        padding-right: 15px;
    }
    #av-layout-grid-1 .flex_cell.avia-builder-el-first {
    	padding: 0;
    }
    

    After applying the css, please clear your browser cache and check.
    Please see the screenshot in the Private Content area for the expected results.

    Best regards,
    Mike

Viewing 30 posts - 13,831 through 13,860 (of 35,289 total)