Forum Replies Created

Viewing 30 posts - 13,471 through 13,500 (of 35,006 total)
  • Author
    Posts
  • in reply to: Missing button & social widget #1331565

    Hi,
    Thank you for your patience, from your screenshot I see the WPZOOM widget is available in the widgets, try to open the footer area:
    2021-12-04_003.jpg
    I logged into your site and the widget is also in the footer area:
    2021-12-04_002.jpg

    Best regards,
    Mike

    Hi,
    Thank you for your question, the above css is for a single product page with a sidebar, but I didn’t find one on your site.
    Your screenshot is to a shop page not a product page https://dev. YourSite .com/boutique/ replace YourSite with your actual domain.
    so your question is relevant to the thread you linked to and not this thread. Please note that since this is not your thread you will not see anything we write in the Private Content area, it is better to open a new thread.
    But I will try to help, so the issue is that on mobile the sidebar is hidden by default and it contans left padding for the desktop version, so for mobile you need to remove the padding also, like this:

    @media only screen and (max-width:767px) {
    .responsive #top.woocommerce-shop #main .sidebar {
        display: block;
    }
    .responsive #top.woocommerce-shop #main .sidebar_left .content {
        padding-left: 0;
    }
    .responsive #top.woocommerce-shop #main .sidebar_left .sidebar {
        border-right-style: none;
    }
    }
    

    For a single product page the css should be like:

    @media only screen and (max-width:767px) {
    .responsive #top.single-product #main .sidebar {
        display: block;
    }
    .responsive #top.single-product #main .sidebar_left .content {
        padding-left: 0;
    }
    .responsive #top.single-product #main .sidebar_left .sidebar {
        border-right-style: none;
    }
    }

    but I didn’t find one on your site to test, if this doesn’t help then please open a new thread with a link to your single product page with a sidebar so we can assist with an updated solution, this will also help future users with finding the solution.

    Best regards,
    Mike

    in reply to: Scroll up arrow content section #1331544

    Hi,
    To have a Scroll Up to Next Section Arrow try pasting this is a code block element at the top of your color section:
    <a href="#intro" title="" class="scroll-up-link av-control-hidden" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></a>
    adjust the link to the custom ID of the section above #intro please note that every ID can only be used once on a page, so every arrow needs a different link.
    Then add this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top .scroll-up-link {
        height: 60px;
        width: 80px;
        margin: 0px 0 0 -40px;
        line-height: 60px;
        position: absolute;
        left: 49.85%;
        top: 0px;
        color: #FFF;
        text-align: center;
        font-size: 70px;
        z-index: 100;
        text-decoration: none;
        text-shadow: 0px 0px 3px rgb(0 0 0 / 40%);
        -webkit-animation: custom_fade_move_up 2s ease-in-out infinite;
        animation: custom_fade_move_up 2s ease-in-out infinite;
    }
    /*animated arrow animattion*/
    @-webkit-keyframes custom_fade_move_up {
      0%   { -webkit-transform:translate(0,20px); opacity: 0;  }
      50%  { opacity: 1;  }
      100% { -webkit-transform:translate(0,-20px); opacity: 0; }
    }
    @keyframes custom_fade_move_up {
      0%   { transform:translate(0,20px); opacity: 0;  }
      50%  { opacity: 1;  }
      100% { transform:translate(0,-20px); opacity: 0; }
    }

    Then clear your browser cache and any cache plugin, and check.
    the expected results:
    2021-12-04_001.jpg

    Best regards,
    Mike

    in reply to: custom button change #1331541

    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

    Hey Robeare,
    Thank you for the link to your site, I believe your function should look like this:

    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    	$icons['icon-google'] = array( 'font' =>'fontello', 'icon' => 'uf1a0');
    	return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    	$icons['Google'] = 'icon-google';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);

    If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    in reply to: footer title font size #1331538

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

    #footer h3.widgettitle {
    	font-size: 10px;
    }

    and adjust the font size to suit, then clear your browser cache and any cache plugin, and check.
    If this doesn’t help please include the url to your site so we can take a closer look.

    Best regards,
    Mike

    in reply to: Adjust the column width of Mega Menu #1331534

    Hi,
    Glad Ismael 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: Menu order #1331459

    Hi,
    Thank you, for the cart on a transparent header I added this:

    @media only screen and (min-width: 767px) { 
    #top .av_header_transparency .av-main-nav ul#menu-item-shop a.cart_dropdown_link span:before {
    	color: #fff;
    }
    }
    

    For the menu spacing I added this css:

    @media only screen and (min-width: 767px) { 
    .html_cart_at_menu.html_header_searchicon #menu-item-search.menu-item-search-dropdown {
        padding-right: 0;
    }
    }
    

    2021-12-03_003.jpg
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: animation numbers bold #1331458

    Hi,
    Glad this helped, for simple bold you would use ‘montserrat’ with a font-weight of bold or 700, please note that in the theme the font is writen in small case:

    #top #wrap_all .main_color h3 {
        font-family: 'montserrat';
        font-weight: bold;
    }

    2021-12-03_001.jpg
    but this is the regular font with bold applied, there is another ‘montserrat-bold’ that is available from Google Fonts that is wider without using a font-weight.
    2021-12-03_002.jpg
    I assumed you might be looking for this one so I uploaded it to your Enfold Theme Options ▸ Import/Export ▸ Custom Font Manager as before and you can use css like:

    #top #wrap_all .main_color h3 {
        font-family: 'montserrat-bold';
    }

    Then clear your browser cache and any cache plugin, and check.

    Please note that I see you are trying to change your heading fonts with css by only using the heading, such as h3 {font-size: 24px; font-family: ‘Montserrat’}
    I found this in your Quick CSS:

    h1 {font-size: 50px}
    h2 {font-size: 48px; font-family: 'Playfair Display'; color: #00469e;}
    h3 {font-size: 24px; font-family: 'Montserrat'}
    h4 {font-size: 20px; font-family: 'Montserrat'}
    h5 {font-size: 14px; font-family: 'Montserrat'; color: #164991}
    h6 {font-size: 12px; font-family: 'Montserrat'}

    this will probably not be enough in some cases because the theme uses two IDs and a class for most headings, like this: #top #wrap_all .main_color h3 so the specificity is much higher, if you find you are having trouble overwriting a style try adding more specificity

    Best regards,
    Mike

    Hi,
    Hopefully you will be able to sort this out with the plugin, or you could hire a freelancer. 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

    Hey AgenturLanzinger,
    As I understand your question this can be done with css display:none, if you can link to an example blog post where you want the date & author hidden and to a page where the blog element is used and you want the date & author to continue to be shown we can assist.

    Best regards,
    Mike

    in reply to: Using Magnific Popup modal make page scrolls up #1331371

    Hey Kyle,
    Thanks for the link to your site but the login didn’t work for me, nonetheless try this function in your functions.php instead:

    function popup_inline_with_no_scroll() { ?>
    <script>
    (function($) {
      $(window).on('load', function(){
        $('.open-popup-link').addClass('no-scroll');
        $('.open-popup-link').magnificPopup({
          type:'inline',
          midClick: true,
          callbacks: {
            beforeOpen: function () {
              $('body').css("overflow-y", "hidden");
            },
            close: function() {
              $('body').css("overflow-y", "auto");
            },
          },
        });
      });
    })(jQuery);
    </script>
    <?php }
    add_action("wp_head", "popup_inline_with_no_scroll");

    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: Change the color of menu button on hover #1331369

    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: Modify the background color and text for products #1331251

    Hi,
    Glad Ismael 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: Change the color of menu button on hover #1331250

    Hi,
    Please try this css instead:

    #top #header.header_color.av_header_transparency .av-main-nav > li#menu-item-42 > a:hover .avia-menu-text {
        color: #ffcc5e;
    }

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

    Best regards,
    Mike

    in reply to: Menu order #1331248

    Hi,
    Glad this helped, I was not able to view your new site because the password seems incorrect, but the gap around the cart is set by the padding in the css above, so you could try adjusting that, on the test site the spacing seemed good, perhaps you have some other css affecting the menu items?
    2021-11-27_021.jpg

    Best regards,
    Mike

    in reply to: Menu order #1331087

    Hi,
    Thanks for the login, I found that you had an ending PHP tag in your child theme functions.php, I removed it and was able to add the script. I removed it because your main menu doesn’t look the same as when I wrote the script, if you plan to restore it as it was you can now add the script again and test.

    Best regards,
    Mike

    in reply to: Advanced Layerslider #1331084

    Hi,
    Thanks for the feedback, I believe that I have achieved this on a test page for you, please check this page.
    I first made a copy of your page, and copied your slider to “test slider copy” then I removed the background image from the test slider:
    2021-11-30_001.jpg
    then I added this css to your Quick CSS:

    #top.page-id-2004 #main {
        background-repeat: no-repeat;
        background-image: url(https://nordicanalytics.dk/wp-content/uploads/2021/11/gbnm.png);
        background-position: 50% 50%;
        background-attachment: fixed;
    }
    
    #top.page-id-2004 #layer_slider_1 {
    	background: transparent;
        background-color: transparent;
    }
    

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Top of website too high, hidden behind header #1331077

    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: different start pages for mobile and PC #1331075

    Hi,
    Thanks for the login, the reason this didn’t work was because you are forcing jQuery to load in the footer so you were getting an error, to correct I removed the jQuery part of the script and now it works. Although it is disabled as you requested.
    This is the new script.

    function custom_mobile_homepage() {
        ?>
    	<script>
    		const mediaQuery = window.matchMedia('(max-width: 480px)');
    	if (window.location.pathname == '/' && mediaQuery) {
    	   window.location = "/startseite-mobil/";
    	}
    	</script>
        <?php
    }
    add_action( 'wp_head', 'custom_mobile_homepage', 10 );

    Best regards,
    Mike

    in reply to: Change shape and position for Dropdown menu #1331073

    Hi,
    Glad we were able to help, and thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Advanced Layerslider #1331007

    Hi,
    Sorry I don’t believe that I understand what you are trying to achieve, I see the fixed image behind the “Our values” time line, but I don’t understand how you want scroll applied to the layerslider, there is only one slide so your not using the scroll function to switch slides?
    Are you trying to have a transparent layerslider element and show the fixed body image behind it? I don’t believe that is possible because the layerslider would have to be placed inside of another element like a color section, but you can’t do that with the layerslider element.

    Best regards,
    Mike

    in reply to: Need help from support #1331004

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread instead of the contact form, and we will gladly try to help you.
    Thank you for using Enfold.
    Best regards,
    Mike

    in reply to: Top of website too high, hidden behind header #1331001

    Hi,
    Thank you for the login, to correct the logo interfering with the menu sub-menus I adjusted the script to this:

    
    function hide_lower_half_of_logo_on_scroll() { ?>
        <script>
    (function ($) { 
      $('.logo, .logo *').css({'max-height':'269px','height':'269px','width':'131px'});
      $(window).scroll(function() {
        var width = $(window).width(), height = $(window).height();    
        var scroll = $(window).scrollTop();
          if (scroll >= 90 && width >= 768) {
        $('.logo, .logo *').css({'clip-path':'inset(0 0 63% 0)'});
       } else {
        $('.logo, .logo *').css({'clip-path':'none'});
       }
      });
    })(jQuery); 
    </script>
        <?php
    }
    add_action('wp_footer', 'hide_lower_half_of_logo_on_scroll');

    Now the bottom half of the logo image is hidden with clip-path instead of overflow.

    For the anchors landing behind the header you had this function with a negative 50, I changed it to a positive 25 and now it works correctly:

    function avf_header_setting_filter_mod($header) {
    	$header['header_scroll_offset'] = $header['header_scroll_offset'] + 25;
    	return $header;
    }
    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Portfolio Thumb #1330994

    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: deformed images #1330993

    Hi,
    Glad to hear, for the button try this css:

    @media only screen and (max-width: 767px) { 
    #top.single-product form.cart {
        margin-top: 20px;
    }
    }

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

    Best regards,
    Mike

    in reply to: images on masonry not taking size #1330991

    Hi,
    Glad we were able to help, and thanks for the suggestion, 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: animation numbers bold #1330990

    Hi,
    Glad that helped, the plus & percentage signs are using opacity 0.5 so they look faded, to make them the same as the numbers try this css:

    #top .avia-no-number {
        opacity: 1;
    }

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

    Best regards,
    Mike

    in reply to: problem with preview my home page #1330848

    Hi,
    Does this only concern the “preview” of the page and not the actual page? Meaning that you only see the old version in preview, but if you save and publish your changes show on the actual published page? Perhaps try clearing the old revisions.

    Best regards,
    Mike

    in reply to: Menu order #1330847

    Hi,
    I couldn’t login with the password above to check, but testing the script on my test site didn’t give any errors, try copying the code again from the forum and not an email, or update the password you posted for us so we can try.

    Best regards,
    Mike

Viewing 30 posts - 13,471 through 13,500 (of 35,006 total)