Forum Replies Created

Viewing 30 posts - 11,761 through 11,790 (of 34,988 total)
  • Author
    Posts
  • in reply to: Track clicks in Layerslides #1353782

    Hi,
    Glad to hear this is working for you, you could change the pattern if it suits your needs in Google Analytics, I imagine you will want it descriptive enough that you understand where the click came from.
    Unfortunately, I can’t edit the title but the Topic Tags and thread content should be enough that other users will find this helpful, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    Hi,
    Thanks for the feedback, as you see on my test page I’m using your layerslider on a copy of your page with the footer correct, so with this in mind, I tried deactivating some of your plugins and found that
    wp-Typography was causing a conflict, once it is deactivated your footer is correct again. Please check.

    Best regards,
    Mike

    in reply to: image instead of icon #1353750

    Hi,
    Thanks for the screenshots, and adding the custom class, the element you are using is the Icon instead of the Icon Box, for this element try this css instead:

    .sngmng .av-icon-char {
    background-image: url(//leagrowingpeople.com/wp-content/uploads/2022/04/consciousuncoupling.png);
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    }
    .sngmng .av-icon-char:before { opacity: 0; }

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

    Best regards,
    Mike

    Hi,
    Thank you for the link to your site, I found that your layerslider is causing the page div <strong style=’color:#000′>wrap_all to close with the footer outside
    2022-05-31_082107.jpg
    I tried to make a copy of your layerslider and remove the <div id="myRandomText">Wir sind Indianer</div> so the script would not run, but the script still ran and the footer error was still there.
    I made a copy for your site, linked below, without the script and the footer is correct, so I don’t think it’s any other elements or the theme, please check.

    Best regards,
    Mike

    in reply to: Track clicks in Layerslides #1353577

    Hi,
    Very Good

    Best regards,
    Mike

    in reply to: Seeing 2 favicons! #1353507

    Hi,
    I believe that this file TSS_112x112-36×36.jpg is linked somewhere else, I don’t think this is standard.
    I can’t really tell from the outside, but if you include admin login in the Private Content area I could check for you.
    As for the time, it is loading in 171ms it’s just last in the waterfall.

    Best regards,
    Mike

    in reply to: button row alignment #1353379

    Hi,
    True this button-row has the correct/same margins for both buttons
    2022-05-29_005.jpg
    I’m not sure why your iPhone is doing this, does it also occur in landscape mode?
    Try removing the HR before the button-row, perhaps that has something to do with it?

    Best regards,
    Mike

    in reply to: Image oddities #1353377

    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: sorting order lightbox gallery #1353375

    Hi,
    Thank you for your patience and for the link to your site, I found that the reason this was happening is because the script that opens the hidden gallery targets the thumbnail class first_thumb but this class is added to the first thumbnail in each row and by default 5 columns are used for each row, so since you have 15 images in the gallery several will have this class and the default action of JQuery is to land on the last one.
    One way to correct this is to change the number of columns used for the thumbnails, but the largest option is 12 so this doesn’t help you.
    The other option is to change your script to target the :first thumbnail with the class first_thumb which is what I did for you, your script is now like this:

    function text_link_to_gallery_lightbox() {
    ?>
    <script type="text/javascript">
    (function($) {
        $(document).on('click', '.text_to_lightbox a', function(event) { 
            event.preventDefault(); 
            var linkTarget = $(this).attr('href');
            $(linkTarget).find("a.first_thumb:first").click(); 
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'text_link_to_gallery_lightbox');

    Now the lightbox does starts with the first image of the gallery order.

    Best regards,
    Mike

    in reply to: Buttons in header above menu #1353371

    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: button row alignment #1353370

    Hi,
    Thanks for the feedback, I don’t have an iPhone but I do see that the first button that is not in the button-row doesn’t have the left & right 3px margin that the button-row has, try adding this css for the first button:

    .avia-button-wrap.avia-builder-el-12 > .avia-button {
    	margin: 3px;
    }

    Please note that testing with Safari 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.
    Please also try this.

    Best regards,
    Mike

    in reply to: button row alignment #1353367

    Hi,
    Thanks for the screenshot but I’m not seeing this on my Android device (360px) or in Chrome Dev Tools mobile emulation 375px – 425px
    2022-05-29_004.jpg
    what screen resolution and device are you seeing this at?

    Best regards,
    Mike

    Hey aboderc,
    Thank you for the link to your site, I tested your page on my Android device and the video plays in landscape mode for me without having to reload the page, it doesn’t show in portrait mode at all. Perhaps your mobile screen size is smaller or you are using an iPhone?
    This is expected because browsers such as Safari & Chrome block auto playing background videos on mobile, thus you should use a fallback image for mobile and don’t expect a video to load. This is why the color section background video option says: Most mobile devices can’t autoplay videos
    2022-05-29_003.jpg
    There are some plugins and sliders such as the layerslider, that try to work around this limitation but Safari & Chrome continue to block this with each update.

    Best regards,
    Mike

    in reply to: Move Fullwidth Easy Slider caption down on mobile #1353364

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

    @media only screen and (max-width: 767px) { 
    	#top.home .slideshow_align_caption {
        vertical-align: bottom;
    	}
    }
    

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

    Best regards,
    Mike

    in reply to: Space between 2nd and 3rd post on mobile #1353363

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

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #main .flex_column.slide-entry.slide-parity-even {
        margin-bottom: 20px;
    }
    }

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

    Best regards,
    Mike

    in reply to: GA4 Analytics does not work #1353362

    Hey Veronika,
    In the theme option Google Dienste ▸ Google Analytics I believe that it only is active after the front-end cookies are accepted, I moved your code to your functions.php to test if your account can connect to it now.
    Please try clearing your browser cache and load your site and then in another browser tab check Google Analytics Real Time Visitors to see if you show. As I recall Google Analytics says that it can take up to 24 hrs to connect, if you see this message in your Google Analytics panel then please give it some time.

    Best regards,
    Mike

    in reply to: Show Secondary Menu in Header on Mobile #1353358

    Hi,
    Thanks for the feedback, try adding this css:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .main_menu {
        z-index: 1010;
    }
    .headerMenuItem a {
    	font-size: 12px;
    }
    .responsive #top #wrap_all #header_meta .social_bookmarks li a {
        color: #fff;
    }
    }

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

    Best regards,
    Mike

    in reply to: google maps api won't work #1353354

    Hi,
    Yes, please try this and wait a little while before trying again, if this doesn’t help please include an admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    in reply to: spacing footer #1353353

    Hey schweg33,
    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:

    #wrap_all #footer {
        padding: 0;
    }

    if you want the space even less try adding this also:

    #wrap_all #footer .widget {
        margin: 10px 0;
    }

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

    Best regards,
    Mike

    in reply to: Relaunch Website #1353350

    Hey Mabludo,
    There should not be anything special that you need to do, your license should not be registered to a specific domain, but it can’t be checking for updates from multiple domains, so as long as you only have it installed on one domain you will be fine.
    If you have built a site for a client on your domain with your license, you can import it to your client’s domain and remove your license token from Enfold Theme Options ▸ Theme Update ▸ Enter a valid Envato private token then have your client purchase a license and enter their license token instead.

    Best regards,
    Mike

    in reply to: Show Secondary Menu in Header on Mobile #1353349

    Hey navindesigns,

    Thank you for the link to your site, to put the two links between the logo and burger menu try this css:

    @media screen and (max-width: 767px) {
    #top #header #header_main #text-3.widget {
        position: absolute;
        left: 80px;
        right: 0;
        top: -3px;
    }
    #top #header #header_main .homeHeaderContact {
        gap: 5px;
    }
    #top #header #header_main .headerMenu li:first-of-type {
        padding-right: 5px !important;
    }
    #top #text-3.widget ul.homeHeaderContact {
        width: 90%;
        float: right;
        margin: auto;
    }
    }

    2022-05-29_001.jpg
    while this looks ok for larger mobile (425px) it’s not good for smaller mobiles like iPhones, but you have the empty blue area why not use it and allow your social icons to show:

    @media screen and (max-width: 767px) {
    #top #header #header_meta {
        background-color: transparent;
    }
    #top #header #header_main #text-3.widget {
        position: absolute;
        left: 0;
        right: 0;
        top: -44px;
    }
    
    #top #header #header_main .headerMenu li:first-of-type {
        padding-right: 8px !important;
    }
    #top #text-3.widget ul.homeHeaderContact {
        width: 100%;
        justify-content: center;
    }
    }
    

    2022-05-29_002.jpg
    try each of these add see which you like best, after applying the css, please clear your browser cache.

    Best regards,
    Mike

    in reply to: font-weight not working #1353346

    Hi,
    Thank you for the link to your site, please try this css:
    1):

    #top #header .av-main-nav > li#menu-item-489:hover > a .avia-menu-text,
    #top #header .av-main-nav > li#menu-item-490:hover > a .avia-menu-text {
    	color: #000;
    }

    2):

    #top #wrap_all #header_main > .container .main_menu .av-main-nav > li > a,
    #top #wrap_all #header_main > .container .main_menu .av-main-nav > li {
        height: 50px;
        line-height: 50px;
    }
    #top #wrap_all #header_main > .container .main_menu .av-main-nav-wrap {
    	margin: 50px 0;
    }

    3):

    #top #header .av-main-nav > li.current_page_item > a .avia-menu-text {
    	text-decoration:underline;
    }

    4):

    #footer .textwidget a.widgetbtn:hover {
        color: #000 !important;
    }

    5):

    #top #wrap_all #header_main > .container .main_menu .av-main-nav > li ul li a {
    	font-weight: 600;
    }

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

    Best regards,
    Mike

    in reply to: Image oddities #1353338

    Hi,
    Glad this helped, the third section is for tablets 768px to 1440px, it was just some minor adjustment I noticed when I was testing your site, if it looks good to you then it’s working :)
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: blog page not working regularly #1353306

    Hey Elena,
    The Division by zero error you are getting is because you have an empty accordion slider on the page, please remove the second accordion slider or add an image to it.
    I don’t understand the first issue, please include an admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    in reply to: Seeing 2 favicons! #1353305

    Hey Shari,
    Thanks for your question, it seems that the default your-domain.com/favicon.ico that browsers look for is pointing to /wp-content/uploads/TSS_112x112-36×36.jpg
    which is the one on the right.
    What image do you have in your Enfold Theme Options ▸ Favicon?
    Do you have an actual favicon.ico in your root directory?
    Try removing the Enfold Theme Options ▸ Favicon image and add the correct favicon.ico in your root directory.
    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: Adding TikTok for social profiles the correct way #1353304

    Hi,
    Glad to hear that Guenni007 has helped you this sort this out, thanks Guenni007!
    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: H1 title responsive mood #1353303

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

    #main .slideshow_inner_caption {
        height: 70%;
    }

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

    Best regards,
    Mike

    Hi,
    For your footer page the reason the background image had a gray color above and below it was because the color section was set to 100% of the page height (100vh) where it should have been set to “No minimum height, use content in article to set section height” I adjusted this for you, please clear your browser cache and check.

    Best regards,
    Mike

    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

    Hi,
    Thank you for your patience, I examined your logo in the header compared to the footer and the header was a different scaled down image that on it’s own was not as crisp as the footer image so I changed the header logo to the same image.
    Please clear your browser cache and check.

    Best regards,
    Mike

Viewing 30 posts - 11,761 through 11,790 (of 34,988 total)