Forum Replies Created

Viewing 30 posts - 10,021 through 10,050 (of 34,919 total)
  • Author
    Posts
  • in reply to: Background color side menu #1372832

    Hey gdsconcepts,
    Thanks for the link to your page, it looks like you have added custom css to set the footer as fixed to the bottom of the screen, as I understand your question you actually want the footer at the bottom of the page so it will scroll into view. So please remove your custom css for this.
    Now the issue that the sidebar header doesn’t reach the bottom can be solved with this function added to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_sidebar_header_min_height() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
      (function($){
        $('.html_header_sidebar #top #header').each(function() {
          var pageHeight = $('body').height();
          $(this).css({'min-height': pageHeight })
      });
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_sidebar_header_min_height');

    Best regards,
    Mike

    in reply to: Delete efffect in masonry gallery #1372828

    Hey rixi,
    Thank you for your patience and the link to your page, I assume to mean the image scaling on hover, to remove this please add this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .avia_desktop #top .av-masonry-entry:hover .av-masonry-image-container {
        -webkit-transform: unset;
        transform: unset;
    }

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

    Best regards,
    Mike

    in reply to: Slow loading, both backend and frontend #1372827

    Hi,
    Thanks for sharing the feedback.

    Best regards,
    Mike

    in reply to: Emojis suddenly gone #1372769

    Hi,
    If you want to continue to use the emojis in the title fields just keep in mind to check them each time you update the page, at some point your page will be finished and you won’t be updating it anymore and at that point you won’t be losing the emojis anymore.
    Another option would be to add the emojis via CSS with the :before / :after selector see the example in this article.

    Best regards,
    Mike

    in reply to: Footer Widget won't appear in Footer #1372766

    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,
    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: diagonal section breaks on wide screens #1372760

    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 Dropdown being cutoff #1372758

    Hi,
    Thanks for the login to your staging site, I’m not sure why this is occurring, but I added this css to correct:

    .av-main-nav #menu-item-86 ul.sub-menu {
        right: 0;
        left: unset;
    }

    Please clear your browser cache and check and see the screenshot in the Private Content area.
    This should also work on your live site since the menu item has the same ID.

    Best regards,
    Mike

    in reply to: Highlight menu item #1372754

    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: Shop category thumbnail images are suddenly the wrong size #1372753

    Hi,
    You should use the PHP Snippet and ensure that you have it set to Active
    2022-11-16_001.png
    Then make sure to purge the cache and do a hard refresh after adding the filter.

    Best regards,
    Mike

    in reply to: Calalog image size #1372750

    Hi,
    Glad to hear that this helped, I’m not sure what the cause of this is since only a few installs have this error, but the team has looked into it.
    Anyways, glad we were able to help and 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: Dropdown Menus #1372744

    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: avia_custom_query_extension #1372730

    Hi,
    I see, thanks.

    Best regards,
    Mike

    in reply to: Menu with app feel and look, at the bottom of the viewport #1372721

    Hey Frans,
    Try using the full width submenu element and add the custom class sticky-bottom and don’t use the sticky option, then add this css to your child theme stylesheet or the theme option Quick CSS

    @media only screen and (max-width: 767px) { 
    	.sticky-bottom {
    	position: fixed!important;
        bottom: 0;
    }
    }

    If you want to use icons in the submenu see our documentation here.

    Best regards,
    Mike

    in reply to: Calalog image size #1372719

    Hi,
    Try following the suggestion in this thread to see if it corrects.

    Best regards,
    Mike

    in reply to: Logo should be shown by scrolling down the page #1372717

    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: Menu Dropdown being cutoff #1372716

    Hi,
    I’m pretty sure we could fix it with some css, but I would need to see the error to examine.
    I imagine that the error is caused by some customization or a plugin because this is not something we normally see, I would recommend restoring the menu to the standard menu and then disable all of your plugins if solves enable your plugins one at a time until the error occurs again and then you will know the one causing the conflict.
    If this doesn’t help try removing all of your custom css and save it to a text document on your computer, if this solves the add your css back a little at a time until the error occurs to find the conflict.
    If this doesn’t help then let us know so we can investigate. An admin login in the Private Content area may help us investigate.

    Best regards,
    Mike

    in reply to: Table design #1372714

    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: Logo should be shown by scrolling down the page #1372705

    Hey rixi,
    Thanks for the link to your page, as I understand you only want your logo to show when you scroll down on your homepage.
    You are using a transparent header with this custom css:

    .home .logo {
        display: none!important;
    }

    So please remove this css and add this css instead:

    #top.home #header.av_header_transparency .logo {
    	display: none;
    }

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

    Best regards,
    Mike

    in reply to: Menu Dropdown being cutoff #1372702

    Hi,
    Thanks for the screenshot, when I check the submenu is opening to the left so it is not off the screen, please see the screenshot in the Private Content area.
    Have you already solved this with some css?
    I see this on Windows with Chrome, if you are still seeing this issue what browser are you using, and what is the screen resolution?

    Best regards,
    Mike

    in reply to: White Screen #1372701

    Hi,
    Guenni007 I’m not sure if you realized that this thread is almost 20 months old so this user is probably not watching this thread anymore, but in my experience anyone using the web host Strato had a lot of issues and I don’t recall any of them being resolved, in the ones I recall the users switched to a different host.
    I don’t know why, but most users also had a poor experience with the Strato support when trying to find solutions.
    Sorry that I don’t have any good news for you.

    Best regards,
    Mike

    in reply to: Video background doesn't work #1372699

    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: Table design #1372697

    Hi,

    Please add this css:

    .main_color tr.avia-heading-row th {
    	 color: #000;
    }

    Best regards,
    Mike

    in reply to: Shop category thumbnail images are suddenly the wrong size #1372649

    Hi,
    Thank you for the FTP login, I checked and it looks ok, so I asked the rest of the team for any further ideas, Thank you for your patience

    Best regards,
    Mike

    in reply to: Dropdown Menus #1372648

    Hi,
    Thanks for the login, I made the change for you:
    2022-11-15_003.png
    Please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Glad Guenni007 could help, thank you 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: Table design #1372645

    Hi,
    I believe this is what you are asking for:
    2022-11-15_002.png

    #top .avia-table.avia-data-table tbody > tr {
    	color: #fff;
    }
    #top .main_color th,
    #top .main_color td {
    	border-color: #f0eeed;
    }
    .main_color tr.avia-heading-row {
    	 background: transparent;
    }
    .main_color tr:not(.avia-heading-row) {
    	 background: #254189;
    }

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

    Best regards,
    Mike

    in reply to: Highlight menu item #1372644

    Hi,
    Thank you for your patience, this is trickier but I added this css and it seems to help:

    #top #header #avia-menu #menu-item-3181 .avia-menu-text {
    	margin-right:-5px;
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Items hidden using responsive are still being downloaded #1372637

    Hi,
    Glad we were able to help, I thought that I should explain a little further, the reason the elements are hidden with CSS is because the Responsive option is based on the users screen size and WordPress can not determine the users screen size on the server side, the only way to determine the screen size is on the client side after the user has downloaded the source code.
    Then the user’s browser will use the CSS, or JS could be used, to hide the element. I hope this helps explain the limitation better.
    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 Guenni007, so it was this WordPress setting that was affecting the number of search results showing:
    2022-11-15_001.png
    ColinWalton, I assume we can close this now?

    Best regards,
    Mike

Viewing 30 posts - 10,021 through 10,050 (of 34,919 total)