Viewing 30 results - 1 through 30 (of 142,619 total)
  • Author
    Search Results
  • #1492533
    mistermagoo8691
    Participant

    In the middle of the top menu bar on the mobile view, I’d like to place a “<=” button.
    This button should have a simple “javascript:history.back()” link so that the user can go back to the previous page.

    This is useful when the website is installed as a webapp and there is no browser around it.

    Could you please help me? I’ve seen some requests in the forum for a secondary menu in addition to the hamburger menu, but the PHP + CSS code mentioned seems quite complex for what I want to do.

    here what I’d like to achieve…

    Back button

    Thanks in advance!
    Bye,
    A.-

    #1492515

    btw. with your semi-transparent flacon at the bottom – maybe it is nice to have the burger overlay semi-transparent.

    .html_av-overlay-side #top .av-burger-overlay-scroll {
      background-color: rgba(255,255,255,0.7);
      backdrop-filter: blur(10px)
    }
    
    #av-burger-menu-ul .only_mobile img {
      filter: drop-shadow(1px 1px 2px #aaa)
    }
    #1492514

    there is still something wrong:

    I’ll try again – please read it carefully
    The menu you see above as a text menu and the menu you see in the hamburger menu have the same source but different selectors. So you don’t need to set up a media query to hide the logo in the top text menu. This is particularly advantageous in your case, as given the nature of your text menu, it would certainly be better to display the hamburger menu earlier (1085px) than would be possible at 768px. Your text menu overlaps the main logo long before it displays the hamburger icon.

    for having an earlier hamburger icon you only need here a media query setting:

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

    Remove all media query settings for your only_mobile logo from your Quick CSS, with the exception of the existing global rule.
    (This is why it already works for the footer area.)

    .only_mobile {
      display: none;
    }

    you now only have to show it again for the hamburger menue:

    #av-burger-menu-ul .only_mobile {
      display: block;
    }

    thats all.

    btw: here are the selectors for your logos inside your menues:
    top text menue: #avia-menu .only_mobile
    hamburger menue: #av-burger-menu-ul .only_mobile
    footer menue: #menu-main-menu .only_mobile

    #1492509

    Hi,

    Sorry for the delay. Since removing the br tags also removes the list items, we used this css in the style.css file to hide the line breaks and display the list as a standard bullet list.

    .av-masonry-entry-content ul br {
        display: none;
    }
    
    .av-masonry-entry-content ul li {
        padding-left: 10px;
    	position: relative;
    }
    
    .av-masonry-entry-content ul li:before {
        content: "•";
        position: absolute;
        left: 0;
        top: 5px;
        font-size: 1em;
        line-height: 1;
    }

    Please check the private field for the screenshot.

    faIfPXs.md.png

    Best regards,
    Ismael

    #1492504

    Hey photographie-tous-azimuts,
    Try adding this css:

    /* Disable touch/swipe on mobile */
    @media (max-width: 768px) {
        .slider-container,
        .slider-container * {
            touch-action: none !important;
            -webkit-user-drag: none !important;
            user-select: none !important;
        }
    }

    Then clear your cache and check. Unfortunately I can not test this on my end as desktop browser doesn’t show the swipe action, but this will likely work.
    If you are using a iPhone you may need to clear the history to fully clear the cache.

    Best regards,
    Mike

    #1492503

    On this page that I created with your very useful help, swiping on mobile devices changes the image, making it out-of-sync with the selected item in the ingredients list. How can I block user swiping? I cannot disable the Easy Slider navigation controls (set it to no user interaction) because the item selection code in the ingredient list needs them to display the corresponding image.

    Best regards,
    Serge Froment

    #1492500

    but – you can have both by css– let the animation stay at slide (slide sidewards or slide up/down)
    slides comes in by sliding – but buttons fade in: (maybe with delay)

    .avia_transform #top .av_fullscreen .avia-slideshow-button,
    .avia_transform #top .av_slideshow_full .avia-slideshow-button,
    .avia_transform #top .av_fullscreen .avia-slideshow-button-2, 
    .avia_transform #top .av_slideshow_full .avia-slideshow-button-2 {
      opacity: 0;
      transform: translate(0,0);
    }
    
    .avia_transform #top .av_fullscreen .active-slide .avia-slideshow-button,
    .avia_transform #top .av_slideshow_full .active-slide .avia-slideshow-button,
    .avia_transform #top .av_fullscreen .active-slide .avia-slideshow-button-2, 
    .avia_transform #top .av_slideshow_full .active-slide .avia-slideshow-button-2 {
      visibility: visible;
      animation: caption-top 1s linear 2s 1 forwards;
    }

    the shortform of animation means:

    animation:
    	animation-name: caption-top;
    	animation-duration: 1s;
    	animation-timing-function: linear;
    	animation-delay: 2s;
    	animation-iteration-count: 1;
    	animation-fill-mode: forwards;
    

    if you do not like the delay – just remove or change that value to your delay ( f.e. 1s)

    see: https://webers-testseite.de/slider-with-kenburns/
    PS: you see – you can even address them differently the first button can fade in – the second one comes sliding in …

    #1492492

    yes – the checked status is for having not a fixed header_meta (top bar)

    #1492485

    The logo is still showing in the footer navigation under the word “Explore”. I tried adding the suggested styling but that didn’t work. Please share a screen shot of what you are viewing to make sure we are looking at the same thing.

    This is not in my CSS, I dont know where you are seeing this:
    @media only screen and (max-width: 767px) {
    .responsive #top .av-main-nav .menu-item {
    display: none;
    }
    }
    I tried adding the suggested code but it didn’t work : (

    #1492483

    Hi,
    When I check it looks correct now on mobile & desktop, if this is solved please let us know so we can close this thread.

    Best regards,
    Mike

    Hey ti2media,
    Try this css in your child theme stylesheet:

    #top.home #av-masonry-1.av-masonry a.av-masonry-entry {
    	margin-bottom: 50px !important;
    }
    #top.home #av-masonry-1.av-masonry .av-inner-masonry {
    	overflow: visible;
    }
    #top.home #av-masonry-1.av-masonry .av-inner-masonry-content {
    	position: relative !important;
    	top: 100%;
    	width: auto;
    }

    Then clear your cache and check.

    Based on Guenni007’s solution.

    Best regards,
    Mike

    #1492471

    please do clear all cachings

    do not rule it by media query but only with the different selectors

    you have still this inside your css: – please remove it

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

    this works great on DEV Tools for your staging page – if you got different selectors or settings for the page itself – then you have to give us the final link

    #avia-menu .only_mobile {
      display: none;
    }
    #footer-page .only_mobile {
      display: none;
    } 
    #1492468

    Support topic 1:

    How do we limit shop filtering to a single subcategory and apply unique filtering to each category or subcategory?

    #1492459

    Ok thank you. Everything looks great on desktop, but on mobile the logo is still showing in the footer menu.

    In regards to your question, the only logo in the footer should be in column 1. There should not be a logo in the footer menu.

    #1492451

    Hey amyncuih,

    Thank you for the inquiry.

    You can use this css code to limit the tab section title row to a maximum of 6 items.

    #top .av-tab-section-tab-title-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    #top .av-tab-section-tab-title-container > * {
        flex: 0 0 calc((100% / 6) - (10px * 5 / 6));
        max-width: calc((1310px - (10px * 5)) / 6);
        box-sizing: border-box;
    }
    

    Best regards,
    Ismael

    #1492450

    and do not rule it by media query but only with the different selectors:

    #avia-menu .only_mobile {
      display: none;
    }

    and for the footer:

    #menu-main-menu .only_mobile {
      display: none;
    }
    / *** or ***/
    #footer-page .only_mobile {
      display: none;
    } 

    because the menu on desktop got an ID and the burger menu is inside .av-burger-overlay and got the id: av-burger-menu-ul

    by the way: I can understand it in the case of the hamburger menu, because here it is a copy of the main menu.
    But you must have created your footer menu as an extra menu. Why did you put the logo there?

    #1492439

    Hi,

    Thank you for the link.

    Did you add this css code?

    #top .fullsize .template-blog .post-title {
        text-align: left;
        font-size: 48px;
    }

    Try to override the font size with this code:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top .fullsize .template-blog .post-title {
        font-size: 16px;
      }
    }

    Best regards,
    Ismael

    #1492435

    The Demo: enfold-business-flat has on all pages a transparent header. !!!
    The transparency logo is shown then. So did you have inserted an alternate logo on :

    on the rest of your pages you do not see any logo because the default logo for transparency on that logo is white – and all pages of your page have a white color-section on top.

    #1492426

    Hey slikslok,

    Please try this instead:

    #top #wrap_all .header_color.av_header_transparency .avia-svg-icon svg:first-child {
      fill: #fff;
    }

    Best regards,
    Rikard

    #1492425

    In reply to: Theme update

    Hey Grace,

    Thanks for reaching out to us. I see that you are running an old version of the theme, 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/

    If you don’t own a license for the theme, then you can buy one here: https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990

    Best regards,
    Rikard

    #1492411

    Yes it is still there. In the burger menu it is showing correctly:
    https://q12.6af.myftpupload.com/wp-content/uploads/2025/12/IMG_9758.png

    But, in the main navigation on desktop it is showing like this:
    https://q12.6af.myftpupload.com/wp-content/uploads/2025/12/Screenshot-2025-12-11-at-12.17.58.png

    And all the pages on desktop and only some of the pages on mobile it is showing in the footer like this:
    https://q12.6af.myftpupload.com/wp-content/uploads/2025/12/IMG_D04AFBB70D96-1.jpeg

    I have tested on multiple devices and platforms and I am getting the same error. I have included a login for your review.
    Thank you so much. I’m very grateful for your help.

    #1492403

    Hi Ismael,

    I found a plugin called “Head, Footer and Post Injections” which contained the script, and I was able to fix it.
    The problem is that we were not the only ones working on this site for our client. A third party responsible for SEO has added various codes, plugins, and scripts over time — including ProvenExpert, which is no longer working.

    For the moment, I’d like to stop here. We need to talk to our client about who will be responsible for maintaining the site in the future and taking care of these issues.
    If possible, please keep the thread open. I might come back later. If not, feel free to close it for now.

    Thanks for your help!
    Best regards,
    Constanze

    #1492394

    Hey envisageiam,

    Thank you for the inquiry.

    Did you remove the logo menu item? We’re not seeing it at all on the front end, neither in the desktop nor the mobile menu. Please add the menu item again so we can check it properly.

    Best regards,
    Ismael

    Hey kurson,

    Thank you for the inquiry.

    The green color can be overridden using this css code:

    .main_color a, .main_color .widget_first, .main_color strong, .main_color b, .main_color b a, .main_color strong a, .main_color #js_sort_items a:hover, .main_color #js_sort_items a.active_sort, .main_color .av-sort-by-term a.active_sort, .main_color .special_amp, .main_color .taglist a.activeFilter, .main_color #commentform .required, #top .main_color .av-no-color.av-icon-style-border a.av-icon-char, .html_elegant-blog #top .main_color .blog-categories a, .html_elegant-blog #top .main_color .blog-categories a:hover {
        color: #555555;
    }

    This can also be adjusted in the Enfold > Advanced Styling panel — look for the strong tag and configure it.

    Best regards,
    Ismael

    #1492372
    bigtime32
    Participant

    Hello:

    Demo import: Import: Small Business – Flat Demo

    The Enfold Logo will not stop displaying. Have cleared all cache. Have deactivated all plugins. Upon inspection, it says my logo should be showing, but the enfold logo displays. Enfold logo image has been deleted.

    I have changed nothing on the demo except for the logo and some color in the general styling. My logo displayed perfectly in another demo import. Have no clue, but would appreciate help. Thank you.

    Tim

    #1492367

    In reply to: Enfold Version 3.8

    Hello Rikard,
    thank you for your reply. I have some concerns about updating my site. My website currently only works on PHP 7.0, and if I switch to PHP 7.1 or higher, the whole site breaks and I cannot access the WordPress dashboard.
    I want to update to the latest Enfold theme version (7.1), but I am unsure if it will work properly on PHP 7.0. I am worried that if I update the theme while still on PHP 7.0, the dashboard might stop working and I will lose access.
    If the new theme does not work on PHP 7.0 and the site breaks, how can I then fix it or finish the update if I cannot access the dashboard? Is there a safe way to update without risking losing access to WordPress?
    Thank you very much for your guidance.

    Best regards

    #1492347
    philipe
    Participant

    Hi all,

    We have been using Enfold with Polylang for around a year. It has worked well to translate pages from English into German and then Spanish. However it has recently been causing issues whereby the frontend layout was broken. After some investigation, it seems that during the translation process, code is inserted ‘custom_class=’ or even ‘custom_class’ in the section and column elements. This therefore stops the execution of the page rendering and requires a manual cleanup of layout elements. I note that if an element has already been assigned an ID or class, this doesn’t happen.

    I have tried the following to filter the outputs, but that hasn’t worked.

    Any ideas of what else I can look into, or why this might be happening?

    // Prevent Polylang from modifying Enfold shortcodes during duplication
    add_filter(‘pll_copy_post_metas’, ‘preserve_enfold_alb_data’, 10, 3);
    function preserve_enfold_alb_data($metas, $sync, $from) {
    // Remove _aviaLayoutBuilder_active from auto-sync to force manual handling
    $metas = array_diff($metas, array(‘_aviaLayoutBuilder_active’));
    return $metas;
    }

    // Clean up malformed custom_class parameters in shortcodes
    add_filter(‘the_content’, ‘fix_polylang_enfold_shortcodes’, 1);
    function fix_polylang_enfold_shortcodes($content) {
    // Remove empty custom_class parameters from sections and columns
    $content = preg_replace(‘/custom_class=[\'”]{2}/’, ”, $content);
    $content = preg_replace(‘/custom_class=[\'”][\s]*[\'”]/’, ”, $content);
    return $content;
    }

    // Clean up malformed HTML output
    add_filter(‘the_content’, ‘remove_custom_class_id_from_html’, 999);
    function remove_custom_class_id_from_html($content) {
    // Remove id=”custom_class=” (malformed with extra equals)
    $content = preg_replace(‘/\s+id=[“\’]custom_class=[“\’]?/i’, ‘ ‘, $content);

    // Remove id=”custom_class” (literal value only)
    $content = preg_replace(‘/\s+id=[“\’]custom_class[“\’]/i’, ‘ ‘, $content);

    return $content;
    }`

    #1492339

    Hi Ismael,

    I found this code already but the problem remains: Now my sticky posts from a CPT show up at the top –> BUT the rest of the posts is missing. Only the sticky posts are in the query, the remaining posts are not part of the masonry. I have one sticky post and without the code all posts are shown. With the code only the sticky one is visible. Same behaviour as with the code from my question …

    Kind regards,
    Daniel

    Hey Oriano,

    Thank you for the inquiry.

    Adding this css code should remove the sticky placeholder in the mobile view.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top .sticky_placeholder {
        display: none;
      }
    }
    

    Best regards,
    Ismael

    #1492315
    envisageiam
    Participant

    Hi – I am trying to center align the content in my footer widgets. I am able to get them to center on desktop, but I am unable to get them to center align on mobile. I am using this:
    #footer .widget {
    text-align: center;
    }
    Thank you for you help : )

Viewing 30 results - 1 through 30 (of 142,619 total)