Viewing 30 results - 181 through 210 (of 142,530 total)
  • Author
    Search Results
  • #1490615

    @ismael – i guess that this rule belongs to the ruleset that should show the burger menu on larger screens than the settings of 768px or 990px :

    @media only screen and (max-width: 1295px) {
        #top #header .av-main-nav > li.menu-item  {
            display: none!important;
        }
        #top #header .av-burger-menu-main {
            cursor: pointer;
            display: block!important;
        }
    }

    so i guess that amyedwards misses the icon in between that 990px and her 1295px
    try:

    @media only screen and (max-width: 1285px) {
      .responsive #top  .av-main-nav #menu-item-search.menu-item-avia-special {
        display: block;
      }
    }
    #1490599

    Hey jerry,

    I see that you are running an old version of the theme, could you try to update to the latest version (7.1.3) to see if that helps please? The update to 7.1.3 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
    You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
    If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
    Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1490596

    Hello, I have a similar problem where the search icon is not showing on my mobile page. Under the “Main Menu” on my child theme, I have the switch on for “if enabled a search icon will be appended to the main menu that allows the user to perform an “AJAX” search.”

    There is a mention that this will only be available when the “General Layout > Logo And Main Menu > Top Header” option is selected.

    When I go to the above “General Layout” I have it set to “Left Sidebar” so not sure if this is the reason on the mobile, it is not showing at the top? On the desktop site I have the search as in the same “General Layout” there is an option for the “Main Menu Sidebar” and this is set to “Search”.

    I am not using any special search tool and as I said on the Desktop version, it works correctly, just not on mobile.

    #1490562

    In reply to: Video on home page

    Hi,

    Thank you for the update.

    Try adding this css code to remove the black bars and extend the video so that it goes underneath the header.

    #top .av-video-slide embed, #top .av-video-slide iframe, #top .av-video-slide object, #top .av-video-slide video {
        object-fit: cover;
    }

    Screenshot-2025-10-24-at-1-04-34-PM

    Best regards,
    Ismael

    #1490557

    In reply to: Video on home page

    Hi Ismael,

    The video shouldn’t have black bars at the top or bottom. The video should also display with a transparent header.
    The original video I uploaded doesn’t include them, these only appear on WordPress. Could you advise how to remove them?

    I’ve tried viewing it on two laptops, one plays the video with the black bars, while the other just shows a black screen, which is odd.

    #1490552

    Topic: Video on home page

    in forum Enfold
    lara666
    Participant

    Hi Kresi team,

    I’m experiencing an issue with the video uploaded to the top section of our homepage. On my end, the video appears completely black, while my coworker can see it but with black bars at the top and bottom, these bars aren’t part of the original video and seem to appear unexpectedly.

    Please see the screenshots below for reference.

    #1490546

    Hi,

    This CSS is hiding it:

    @media only screen and (max-width: 1295px) {
      #top #header .av-main-nav > li.menu-item {
        display: none !important;
      }
    }

    Maybe you have added it under Appearance->Customise?

    Best regards,
    Rikard

    #1490535

    Hi Ismael,

    That css doesn’t seem to work. I had injected custom code into the function.php file to get the search bar to appear above the mobile menu but I’m looking for the icon to appear in the header, I’ve removed the custom code to ensure there’s no conflicts but it’s still not working. The plugin used is Fibosearch which is set up to use Enfold’s search bars which works great on desktop but I can’t get the default one to appear on mobile. I’ve had this problem previously with other sites and have had to use custom code but I need the Enfold default one to be visible here because of Fibosearch. I have tried to add their shortcode to the top bar but it really messes with the styling of the layout, it would be much better to have the icon in the space to the left of the logo.

    #1490529

    In reply to: Image Title on Hover

    Hi, I cleared my cache and also tried in an incognito window and another laptop that hasn’t visited the site before but I still see the hover text

    #1490527

    Hey svweb,

    Thank you for the inquiry.

    Did you add this css code? It shifts the main container upward, causing it to overlap with the header.

    #main {
        margin-top: -150px!important;
    }
    

    This is how it should look normally without the css modification.

    Screenshot-2025-10-23-at-1-37-59-PM

    Try to replace it with this css code:

    @media only screen and (min-width: 768px) {
    
      /* Add your Desktop Styles here */
      #main {
          margin-top: -150px!important;
      }
    }
    

    Best regards,
    Ismael

    #1490526

    Hi,

    Thank you for the update.

    Looks like the script is working, but the isotope script still re-arranges the masonry items, placing the 4th item at the very end of the set. The isotope script is responsible for the masonry effect and sorting. Have you tried deleting that particular post (date August 13, 2025) and recreating it from scratch? You could try rephrasing the title a bit and adjust the image size.

    Best regards,
    Ismael

    #1490525

    Hey AmyEdwards,

    Thank you for the inquiry.

    You can add the following css code to display the account and search icons on mobile view, but you’ll need additional style adjustments for the search field since you’re using a custom search option. We recommend reaching out to the script or plugin authors for additional assistance.

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
    
      #top #header .av-main-nav>#menu-item-wc-account-icon {
        display: block !important;
      }
    
      #top #header .av-main-nav>.menu-item.menu-item-search-dropdown {
        display: block !important;
      }
    }
    

    Best regards,
    Ismael

    #1490485

    Hi,

    Thank you for the update.

    Try to include this css code inside the css media query above:

    #top .av_header_glassy.av_header_transparency #header_main {
        background-image: none;
        background-color: black;
    }

    This will disable the gradient background and replace it with a solid black color.

    Screenshot-2025-10-22-at-12-26-56-PM

    Best regards,
    Ismael

    #1490479

    This worked great on the logo. The transparent header though is problematic because for some reason the image gets pushed below it. Is there a way to keep it over the top part of the image like the desktop view or remove it altogether for mobile only?

    Hey Michael,

    Thanks for reaching out to us. The update to 7.1.3 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
    You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
    If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
    Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1490455
    Deepak Amarnani
    Guest

    Hello,

    I hope this message finds you well!

    I came across your website and wanted to reach out regarding your SEO strategy.

    Upon reviewing your site, I noticed it currently lacks significant visibility on Google for your targeted keywords.

    As you may already be aware, this means potential customers are unable to find you when searching for suppliers in your industry.

    I specialize in helping websites achieve first-page rankings on Google, which can significantly boost your leads and sales.

    Our team has the capability to drive hundreds, if not thousands, of visitors to your site.

    If you’re interested, I would be happy to provide you with our pricing details, company information, and a competitive quote tailored to your needs.

    Best regards,
    Deepak Amarnani

    aintzerga
    Participant

    Hello.
    We’ve created a portfolio filter on a long content homepage. We’re using the Filter Everything PRO plugin to create the filter.
    When selecting a category from the filter, the page reloads to the top of the homepage.
    See the homepage at this link: https://limousin.eus/website2025/

    How can we make it so that every time we interact with the filter, the page loads in the same place, without returning to the top of the homepage?
    The plugin has an Ajax option. I’ve activated it and created an ID (product-results) for the section of the page where the filter appears. It works, but the images don’t load.
    I’ve disabled Lazy Load in the preferences, but the images still aren’t displayed.

    What can we do?

    Thank you.

    #1490446

    Hi,

    Thank you for the inquiry.

    You can try this css code to force the mobile menu to display on tablet view and smaller screens.

    @media only screen and (max-width: 1366px) {
    
      /* Add your Mobile Styles here */
      .responsive #top .av-main-nav .menu-item-avia-special {
        display: block;
      }
    
      .responsive #top .av-main-nav .menu-item {
        display: none;
      }
    }

    Let us know the result.

    Best regards,
    Ismael

    #1490444

    Hi,

    Thank you for the inquiry.

    You can add this css code to hide the default logo and display the alternate one on mobile view:

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      .responsive #top .av_header_transparency.av_alternate_logo_active .logo a>img,
      .responsive #top .av_header_transparency.av_alternate_logo_active .logo a>svg {
        opacity: 0;
        display: none;
      }
    
      .responsive #top .av_header_transparency .logo .subtext.avia-svg-logo-sub,
      .responsive #top .av_header_transparency .logo img.alternate {
        display: block;
      }
    }

    Result:

    Screenshot-2025-10-21-at-1-45-30-PM

    Best regards,
    Ismael

    #1490439

    Hi,

    Thank you for the screenshots.

    That is normal since the Styling > Appearance > Button Position of the buttons is set to Align Left. If you want the buttons to stack on top of each other, set it to the default Align Center.

    Best regards,
    Ismael

    #1490436

    Hey rixi,

    Thank you for the inquiry.

    You can try this code in the Quick CSS field to make the header fixed and move the first section below it.

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all #header {
        position: fixed;
      }
    
      #top #wrap_all .header_color.av_header_transparency+#main>div.av-1a7rg49-0361ab150500a4dbf4236ca5f8b54140 {
        padding-top: 90px;
      }
    }

    Screenshot-2025-10-21-at-12-55-26-PM

    Best regards,
    Ismael

    Hi,

    Thank you for following up.

    For #3, please continue on this thread: https://kriesi.at/support/topic/alignment-issues-with-image-overlay-overlay-type-external-on-hover/

    Another solution for your category pages is to use redirection. You can create a custom page using the Advanced Layout Builder, then set up a 301 redirect from the category page to that custom page. Please check any of these plugins.

    https://wordpress.org/plugins/eps-301-redirects/
    https://wordpress.org/plugins/redirection/

    Let us know if you need more info.

    Best regards,
    Ismael

    #1490432

    the only thing that is strange is that on my real mobile device (an iPhone) the fallbackimage is shown – but the link will not open. But thats only on a real mobile device.
    Next if you let yout fingers on that button a few seconds (on iPhone) a context menu will open and on open in new tab will work. ???
    on all browsers i can test on my OSX ( Firefox, Chrome, Safari, Opera) Desktop all is ok.

    milkrow
    Participant

    On the category page generated automatically for the custom post type “Portfolio Items”, I’m seeing an alignment issue with the “image-overlay overlay-type-external” when I hover on any of the images.

    I’m seeing this issue at https://libbiemark.com/artworks/1960s/. I have provided these screenshots:

    In the first, you can see the hover state only appears over the top portion of the image:
    https://drive.google.com/file/d/16M-TseQhrTgN4r80EhDiQEB9XeSGWSp0/view?usp=sharing

    In the second, I”m showing how that image-overlay is “stuck” above the image.
    https://drive.google.com/file/d/1BYkm9Zx5jV1DN8lB9q22mbqYTeXb0aIS/view?usp=sharing
    The styles for “image-overlay overlay-type-extern” appear to be inline. I don’t believe I’ve introduced any css that is altering this.

    Lastly, if I re-enter the image area, THEN the image-overlay aligns correctly:
    https://drive.google.com/file/d/17eRA_cLr9kE9SeA9_GWZ1czNcBjmQRBD/view?usp=sharing

    Thank you for any assistance.

    Hi Ismael,
    Thank you for all the assistance with my questions.

    I understand the concern about long threads. However, I believe all of these topics are directly relevant to the subject, “How to edit the Portfolio Items Category/Archive Template and Sidebar Settings”. In fact, on the whole, most subjects and language in these support threads are less verbose. I often get “no results” when I search this forum. “How to…” articles that have more details would be helpful.

    It’s unfortunate that the theme provides facility for a custom post type, but no controls for the layout of the category page similar to the blog, particularly with regard to the category template.

    In #3 above, you asked for a screenshot of the issue seen at https://libbiemark.com/artworks/1960s/. I created a new thread per your request.

    Thank you again for your assistance.

    • This reply was modified 1 month, 1 week ago by milkrow.
    #1490406
    rixi
    Participant

    Hi again,
    could you help me how i can get a photo/image, that is already in the background of the logo area, on top of the mobile version (Handy), so that it is right behind the logo? That would be perfect :) Looks a little bit grey now.

    Thanks for help,
    rixi

    #1490404

    Hey Rikard,
    Screenshot functions Enfold Child
    Done, always the same warning.
    I have again:
    – deleted cookies,
    – disabled all extensions,
    nothing changes.

    I have implemented this feature in other websites that work with Enfold :
    My tests website : https://web-13-tests.fr (Identifiers on https://kriesi.at/support/topic/avia-text-block-no-longer-works/)
    Mine : https://web-13.com (identifiers on https://kriesi.at/support/topic/comment-form-for-an-article-on-mobile-is-not-displaying-correctly/)
    and I don’t get the same error!?

    What more can I do on my side?

    Best regards
    Rolland

    #1490403
    kelsangkunden
    Participant

    A recent update to Enfold stopped all our custom CSS from loading. How do I override the override?

    #1490395

    @guenni: stimmt, danke :-)

    @team: topic can can be closed

Viewing 30 results - 181 through 210 (of 142,530 total)