Viewing 30 results - 181 through 210 (of 141,771 total)
  • Author
    Search Results
  • #1485020

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 767px) {
    #top .fullsize .template-blog .post .entry-content-wrapper {
      text-align: left;
    }
    }

    Best regards,
    Rikard

    #1485017
    slikslok
    Participant

    Hi,

    while trying different methods to implement shortcodes (as text, html block-type shortcode and content-elment “code”, in the main site , the footer or the widget) the shortcode is not rendererd and always occurs literally as shortcode.

    So, for e.g. [pagelist] doesn’t show a list of all pager but “[pagelist]”.

    Due to every shortcode I tried.

    I found in an very old topic from 2013 that there was a problem in the functions.php, but this seems not to be the case here.

    How to troubleshoot this problem?

    A link of example in the private area.

    #1485016

    Good morning, the page https://easyzanzibar.com/dove-alloggiare-a-zanzibar/ loads a large image even when opened on mobile. In your test, you show me that it should use a 218 Kb image in the desktop slide, while my optimized image is 141 kb. If it then always uses the large image on mobile, what kind of optimization is that?

    The technical programmers who are trying to solve the problem of a very slow site and CPU that exceeds the limit have sent me reports stating: ‘Enfold is a heavy and outdated theme for a site like yours.’

    If this is the case, I have to eliminate Enfold from all four of my websites and completely redo them.

    Does it turn out that Enfold creates problems with slow loading and high CPU demand for sites like ours?

    AI answers:
    Regarding your question about Enfold:
    Yes, it is a known issue that the Enfold theme can sometimes cause slow loading times and high CPU usage for some websites. This can be due to several factors:
    Theme Features: Enfold is a feature-rich theme, and while this offers a lot of flexibility, it can also lead to more code and assets that need to be loaded, potentially slowing down the site. Some of these features, if not used, can still contribute to the load.
    Image Handling: As you’ve noticed, how the theme handles images across different devices can impact performance. If the theme isn’t correctly serving optimized images for mobile, it can significantly slow down loading times on those devices.

    I would like to understand from you if there is anything that can be done to avoid redoing everything

    #1485012

    If you use more specific selectors, you can style “strong” differently.

    if you want it only on some words in a textblock you had to use the way above from Rikard.
    for example if you like to have a different color for them only on one page – use the page ID :

    #top.page-id-12345 strong {
      color: black;
    }

    sometimes it might be necessary to have an !important on the value. (black !important;)

    PS: if you are editing text-blocks the editor could do that for you
    this will create an inline-style:
    <span style="color: #ff0000;"><strong>Important</strong></span>

    #1485004

    see here on very small screens: https://webers-web.info/datenschutz/
    that sidebar menu on the left goes to a hamburger on top right on small screen width.

    you see on the link above (https://jonsuh.com/hamburgers/) – and (on enfold main burger DOM ) what are the class names – i used them too – because then a predefined look is allready present.:
    and the script to manage the burger is allready loaded

    (page-id-3 – is my privacy page)

    add_action('ava_after_main_menu', function() {
    	if ( is_page(3)){
    		echo '<nav class="datenschutz-menu" role="navigation">';
    		echo '<div class="container av-menu-mobile-active">';
    		echo '<a href="#" class="mobile_menu_toggle no-scroll" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"><span class="av-current-placeholder">Datenschutz</span>';
    		echo '<span class="subnav-hamburger subnav-hamburger--spin-r"><span class="subnav-hamburger-box"><span class="subnav-hamburger-inner"></span></span></span>';
    		echo '</a>';
    		echo do_shortcode('[menu name="datenschutz"]');	
    	 	echo '</div>';
    		echo '</nav>';
    	}
    });

    on that line: echo do_shortcode('[menu name="datenschutz"]'); you see the usage of that menu shortcode

    now i got that extra subnav-hamburger (this name is set by me – it only reminds me that this is subnavigation on privacy page )
    now i have to have the same behaviour on that second burger menu:

    function subnav_hamburger_first(){
    if(is_page(array( 3))){ 
    ?>
    <script>
    (function($){
        var $subham = $(".mobile_menu_toggle");
        $subham.on("click", function(a) {
    		$subham.find(".subnav-hamburger").toggleClass("is-active");
    		$subham.next(".menu-datenschutz-container").find('#menu-datenschutz').toggleClass("av-open-submenu");
        });
    	$('#menu-datenschutz li').on("click", function(b) {
    		$(this).addClass('selected').siblings().removeClass('selected');
    		$(this).parents('#menu-datenschutz').toggleClass('av-open-submenu');
    		$(this).parents('.av-menu-mobile-active').find('.subnav-hamburger').toggleClass('is-active');
    	});
    })(jQuery);
    </script>
    <?php
    }}
    add_action('wp_footer', 'subnav_hamburger_first');

    This is not a trivial request, which is why there are several paid plugins available. To grasp the complexity of a multilevel burger menu, take a look at the avia-snippet-hamburger-menu.js code.

    #1485002

    Hi,

    The other sorting items are displayed because some portfolio items belong to multiple categories. For example, the item Harrisonburg Innovation Hub is assigned to “Commercial and Retail”, which is a selected category, but it also belongs to three additional categories, Anthony Barone’s Projects, Ben Reid’s Projects, and Kevin Gabel’s Projects.

    Please note that all categories associated with the items will display as sorting options. The “Which Entries Should Be Used” option only controls which items are shown in the masonry element, but it does not control or limit the sorting/filter categories.

    If you need to hide the other categories and only display the selected ones, try adding this css code:

    #top .av-sort-by-term a, #top .av-sort-by-term .text-sep {
        display: none;
    }
    
    #top .av-sort-by-term .commercial-retail_sort_button, #top .av-sort-by-term .education_sort_button, #top .av-sort-by-term .healthcare_sort_button, #top .av-sort-by-term .industrial_sort_button, #top .av-sort-by-term .municipal-civic_sort_button, #top .av-sort-by-term .religious_sort_button {
        display: inline-block;
    }

    Best regards,
    Ismael

    #1484995

    Hey Alan,

    Thank you for the inquiry.

    There is no option for this in the Color section by default, but you can add a custom class name (e.g., av-section-border-radius) to the element under Advanced > Developer Settings > Custom CSS Class field, then add the following css to apply the border radius.

    #top #wrap_all .av-section-border-radius {
        border-bottom-right-radius: 100px;
        border-bottom-left-radius: 100px;
    }

    Another option is the Layout > SVG Divider settings.

    View post on imgur.com

    Best regards,
    Ismael

    #1484978

    Topic: Enfold theme issue

    in forum Enfold
    updcreative
    Participant

    Hi,

    We are trying to load a backup version of one of our sites into a dev environment. When we loaded it, we received the same error as this thread discusses: https://kriesi.at/support/topic/magister10/

    To try and fix it, we updated Enfold via FTP, but there are still some issues. I’ve added the dev URL in the private section along with FTP login details.

    Any help would be great.

    Thanks

    #1484974

    i did it this way with the edited child-theme files
    (just erased the && ! isMobile ):

    function wp_change_sticky_header_script() {
      wp_deregister_script( 'avia-sticky-header' );
    
      $vn = avia_get_theme_version();
      $options = avia_get_option();
      $child_theme_url = get_stylesheet_directory_uri();
    
      $min_js = avia_minify_extension( 'js' );
      //  $min_css = avia_minify_extension( 'css' );  for that js - file not needed to mention here
    
      $condition  = ( isset( $options['header_position'] ) && $options['header_position'] == 'header_top' );
      $condition2 = ( isset( $options['header_sticky'] ) && $options['header_sticky'] == 'header_sticky' ) && $condition;
      avia_enqueue_script_conditionally( $condition2 , 'avia-sticky-header-child', "{$child_theme_url}/js/avia-snippet-sticky-header{$min_js}.js", array('avia-default'), $vn, true);
    }
    add_action( 'wp_enqueue_scripts', 'wp_change_sticky_header_script', 100 );

    but allways to do this on all pages where i like to have a shrinking header on mobile devices too – and to generate allways the minified file from the actual avia-snippet-sticky-header.js file – is a lot of work.

    A filter set by you would be a great time saver here
    using something like this :
    add_filter('avf_shrinking_header_on_mobile', '__return_true');
    😉​ I am of course aware that a filter has no place in a script file. But maybe there is a trick that could regulate it differently.

    #1484966

    Hi,

    You have to remove the width property from this css code to keep the logo from being distorted:

    .logo, .logo a {
        overflow: visible;
        height: 100px;
        background-color: #075195;
        border-bottom-right-radius: .3125rem;
        border-bottom-left-radius: .3125rem;
        width: 12.5rem;
    }
    

    And to replace the dashes with bullets, add this css code:

    .html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet {
        height: 3px;
        opacity: 1;
        border: none!important;
        width: 3px;
        border-radius: 100%;
    }

    Best regards,
    Ismael

    #1484957

    Hi,

    If you’re using the Posts Slider element or the Blog Posts element in Grid Layout, you can use the avia_post_grid_query filter to modify the query or adjust the item sorting.

    Example:

    https://kriesi.at/support/topic/remove-current-portfolio-post-from-related-portfolio-grid/#post-836906
    https://kriesi.at/support/topic/sort-blog-posts-element-ascending/#post-1001791
    https://kriesi.at/support/topic/add-a-order-by-attribute-on-portfolio-grid/#post-1015617
    https://kriesi.at/support/topic/add-event-date-to-portfolio/#post-1479828

    Best regards,
    Ismael

    #1484955
    minhndq
    Participant

    👉 I would like to adjust the position of the logo as in website’s logo below
    https://globalhealth.duke.edu/

    👉 Replace the “-” in the mobile submenu with a “.”

    #1484949

    Hey Mike,

    We have some good progress. I changed the text padding-left from pixel to percentage. Now no matter how I change the shape of the page the text keeps the creative indentation I want. Thank you for showing me that. I also added some line breaks to the end of my text to allow the background image more room to show.

    Still struggling with the background image. Your test page looked like this..
    /Users/j-birdteching/Desktop/Contact-test-desktop.jpg

    This is what I am hoping to achieve.
    /Users/j-birdteching/Desktop/Jkos-contact.jpg
    I know some people like a more vertical window and some like a more horizontal window so, fit, distort, stretch, fill, whatever you call it, I would like to always see the entire background image. The image is abstract enough to be able to handle considerable distortion.
    /Users/j-birdteching/Desktop/contact-vert.jpg

    /Users/j-birdteching/Desktop/contact-horizontal.jpg

    The next challenge is getting this page to look good on a phone. Is having a separate contact page just for phones something we should be considering?

    Doing the left margin by percentage did work for the phone but, I think having 50-60% margin padding on a phone is unrealistic.
    The font would have to be a micro font. lol
    /Users/j-birdteching/Desktop/contact-phone-2.jpg

    The test page you made looks like this on my phone. I could live without the text having the creative indentation and just being uniformly left, right or center justified but, the page didn’t scroll down to see the rest of the text.
    /Users/j-birdteching/Desktop/test-contact-phone.jpg

    We’ll see what the background image looks like on the phone after we make adjustments to the desktop.

    Thank you,
    Jason

    #1484943

    In reply to: Timeline mobile

    Hey rixi,
    I notice that on mobile not all of the dates show, only every other one, so to correct try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor, if you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    use wpcode php snippet and activate
    and ensure that it is activated, then add the bellow code and save.

    function custom_timeline_script_for_mobile() { ?>
      <script>
    document.addEventListener('DOMContentLoaded', () => {
      // Check if there are any .av-milestone-even elements
      const milestones = document.querySelectorAll('.av-milestone-even');
      if (milestones.length === 0) return; // Exit if no milestones found
    
      // Define the media query for screens smaller than 989px
      const mediaQuery = window.matchMedia('(max-width: 989px)');
    
      // Function to reorder elements
      const reorderMilestones = () => {
        if (mediaQuery.matches) {
          milestones.forEach(milestone => {
            const date = milestone.querySelector('.av-milestone-date');
            const icon = milestone.querySelector('.av-milestone-icon-wrap');
            const content = milestone.querySelector('.av-milestone-content-wrap');
    
            // Ensure all elements exist before reordering
            if (date && icon && content) {
              milestone.innerHTML = '';
              milestone.appendChild(date);
              milestone.appendChild(icon);
              milestone.appendChild(content);
            }
          });
        }
      };
    
      reorderMilestones();
        mediaQuery.addEventListener('change', reorderMilestones);
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_timeline_script_for_mobile', 99 );

    Then I notice that one of your content boxes has too much padding for the list:
    Screen Shot 2025 06 01 at 1.16.43 PM
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 989px) {
        .av-no-preview ul.avia-timeline-vertical .av-milestone-content li {
            padding: 0;
        }
    }

    Screen Shot 2025 06 01 at 1.21.45 PM
    Changing the content padding and font size of the title and content may also help:

    @media only screen and (max-width: 989px) {
        .avia-timeline-boxshadow .av-milestone-contentbox {
        padding: 1em;
        }
        #top #wrap_all .all_colors h4.av-milestone-title {
        font-size: 20px;
        }
        .av-milestone-content p,
        .av-milestone-content li {
        font-size: 12px;
        line-height: 18px;
        }
    }

    Screen Shot 2025 06 01 at 1.32.50 PM
    Try this and adjust to suit.

    Best regards,
    Mike

    #1484940

    Hey jkos,
    When you set the background image to Scale to fit it scales image, so the whole image is always visible, this includes the height. Which is why the image does not reach the sides.
    At Stretch to fit it stretches the image width to cover the page, less the 50px padding that the page has by default.
    The height of your column is not set so the content is determining the height, but you have little content so the whole background image is not shown. If you set the column height to 150% then it will show.
    But I recommend trying the color section instead because the background image will then be full width. I created a test page linked below to demonstrate.
    Since the color section wants to vertically center the content, I added this css to the bottom of the page so your content will be higher:

    .responsive #top #wrap_all .avia-section.av-minimum-height-99vw .container {
        display: flex;
        justify-content: center;
        margin-top: 15%;
        max-width: fit-content;
    }

    The reason your text is off the screen for mobile is because your text has 800px padding, which is larger than a mobile screen:
    Screen Shot 2025 06 01 at 12.06.32 PM
    to correct this you could change it to a percentage, or for this I created a css grid for two columns to achieve the layout without padding, and on mobile the grid is stacked. See the test page below.
    For others, this is the HTML for the two columns:

    <div class="parent">
    <div class="div1"> first column text </div>
    <div class="div2"> second column text </div>
    </div>

    and this is the css:

    @media screen and (max-width: 789px) {
      .parent{
          grid-template-columns: 1fr;
          grid-template-rows: 1fr;
       }
    }
    @media screen and (min-width: 790px) {
    .parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    }
    
    .div1 { grid-area: 1 / 1 / 2 / 2; }
    .div2 { grid-area: 1 / 2 / 2 / 3; }
    }

    Best regards,
    Mike

    #1484899

    Hey syberknight-tb,
    Unfortunately, we don’t have an element that will achieve this for you in the theme, while there are many plugins that may work for you, when I check some of them they don’t quite match, but if you spend more time testing each one you may find one.
    I was able to create something that may work for you using javascript and HTML in a shortcode, on mobile it shows 1 1/2 team member cards with prev & next arrows and loop when you click to the end:
    Screen Shot 2025 05 31 at 9.41.31 AM
    on tablet it shows 2 1/2 cards:
    Screen Shot 2025 05 31 at 9.43.47 AM
    and on desktop it shows 3 1/2 cards:
    Screen Shot 2025 05 31 at 9.45.40 AM
    As is it holds 8 cards, you can add more or have less, you will need to edit the HTML to add your images and text, hopefully you will be able to do this:
    Screen Shot 2025 05 31 at 9.50.45 AM
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor, If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    use wpcode php snippet and activate
    and ensure that it is activated, then add the code below and save.

    function team_carousel_shortcode() {
        ob_start(); ?>
        
        <div class="carousel-container">
            <button id="prevBtn">←</button>
            <div class="carousel">
                <div class="carousel-track">
                    <!-- START: Team Members -->
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 1"><p>Member 1<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 2"><p>Member 2<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 3"><p>Member 3<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 4"><p>Member 4<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 5"><p>Member 5<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 6"><p>Member 6<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 7"><p>Member 7<br>A short bio for the team member</p></div>
            <div class="card"> <img src="/people-2-2-300x300.jpg" alt="Member 8"><p>Member 8<br>A short bio for the team member</p></div>
            <!-- END: Team Members -->
                </div>
            </div>
            <button id="nextBtn">→</button>
        </div>
    
        <style>
        .carousel-container {
            position: relative;
            width: 80%;
            overflow: visible;
            margin: auto;
        }
    
        .carousel {
            overflow: hidden;
            width: 100%;
        }
    
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
    
        .card {
            box-sizing: border-box;
            padding: 10px;
            background: #e8e8e8;
            margin: 5px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
    
        @media only screen and (max-width: 767px) { 
            .card { flex: 0 0 62%; }
        }
    
        @media only screen and (min-width: 768px) and (max-width: 1800px) { 
            .card { flex: 0 0 38%; }
        }
    
        @media only screen and (min-width: 1801px) { 
            .card { flex: 0 0 28%; }
        }
    
        .card p {
            color: #000;
         }
    	.card img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 100%;
        }
    
        #nextBtn, #prevBtn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #000;
            border: 2px solid #000;
            padding: 10px;
            cursor: pointer;
            z-index: 10;
        }
    
        #prevBtn { left: -50px; }
        #nextBtn { right: -50px; }
        </style>
    
        <script>
        document.addEventListener('DOMContentLoaded', function () {
            const track = document.querySelector('.carousel-track');
            const cards = document.querySelectorAll('.card');
            const prevBtn = document.getElementById('prevBtn');
            const nextBtn = document.getElementById('nextBtn');
    
            let currentIndex = 0;
            let cardWidth = cards[0].offsetWidth + 20;
    
            function updateCarousel() {
                const shift = currentIndex * cardWidth;
                track.style.transform = translateX(-${shift}px);
            }
    
            function moveToNext() {
                currentIndex++;
                if (currentIndex >= cards.length) {
                    currentIndex = 0;
                }
                updateCarousel();
            }
    
            function moveToPrev() {
                currentIndex--;
                if (currentIndex < 0) {
                    currentIndex = cards.length - 1;
                }
                updateCarousel();
            }
    
            nextBtn.addEventListener('click', moveToNext);
            prevBtn.addEventListener('click', moveToPrev);
    
            window.addEventListener('resize', () => {
                cardWidth = cards[0].offsetWidth + 20;
                updateCarousel();
            });
        });
        </script>
    
        <?php
        return do_shortcode(ob_get_clean());
    }
    add_shortcode('team_carousel', 'team_carousel_shortcode');

    Then add this shortcode in a code block element on your page: [team_carousel]
    Feel free to adjust the colors in the css in the code.

    Best regards,
    Mike

    #1484892
    This reply has been marked as private.
    #1484885
    jkos
    Participant

    Bear with me, I am new to using background images. Having several issues.

    I am using a background image in the 1/1 element on my Contact page. The image matches the horizontal px of my site. I would love for the background image to go all the way to the edge of the page on theft and right – to stretch horizontally as needed to match page.
    The left & right padding for desktop is set to 0px.
    The background image is set: Stretch to fit.
    When I expand my page to the right the background image does not ‘stretch’ to fit, it zooms in to fit. Resulting in the top and bottom of the image to be cut off. I would rather the image distort horizontally to fit.

    In addition, the text box on this page seems to be in a fixed position. I would love for it to stay proportional to the background image, if possible.

    Lastly, this page on my phone is not even close. lol

    Help, please! :)

    #1484884

    Hi,
    Go to each setting then enable it and choose “select page” so none will be selected. See this post.

    Best regards,
    Mike

    #1484876
    Ventsislav Krastev
    Guest

    Hi,

    to my #post-1484859 , please look at this:

    BR
    Venty

    Hi,

    Thanks for the update. I’ve imported the top level pages for you, please let us know if you should need anything else. Note that images are not included, but I’m guessing that you will replace them with your own anyway? If not, then you can download them from the demo pages by right clicking on the image and select to save them on your local machine.

    Best regards,
    Rikard

    Hello Ismael

    Thank you for the help. It is working but i wonder how i can also disable the top row of icons which seems to be duplicate of icons which are already there.
    Its called:
    Iconfont: Entypo Fontello Enfold (Default)
    and contains like 12-15 icons

    #1484839

    Ok, what did I do wrong? :) I couldn’t find the code that you suggested to remove and added the one that you suggested to add and nothing changed.

    This is the current CSS code that I have for the the sliders:

    #top .avia-slideshow-arrows.avia-slideshow-controls a {
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    background:#transparent;
    width: 45px;
    height: 30px;
    }

    I also tried to change background from #transparent to #a6a6a6 !important but still nothing.

    Thanks again!

    #1484832

    Hey extraeyes,
    The old version 5.6.6 will not automatically update, to update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg
    For your other issue see this post.

    Best regards,
    Mike

    #1484823

    Hi Ismael,

    thank you for your help! :) I suspected it had something to do with Ninja after reading this threat: https://kriesi.at/support/topic/theme-editor-option-under-appearance-has-disappeared-in-enfold-4-8-2/. But perhaps there is a completely different reason for this. I provide login data and a screenshot in the private field.

    Kind regards,
    ebenanders

    ExperienceDNA2019
    Participant

    Hello, I have a transparent header, with a colour section on my page with a fulll size image set to align with the top.
    The image however only goes partially behind the header, there is a black area at the top of the header.

    When i scroll the page you can see the image moves up.

    How can i make the Colur Section start at the top of the page inline with the top of the header

    #1484816

    Hey Shari,

    Thank you for the inquiry.

    The arrows are there but they are barely visible because the background is transparent due to this css code.

    #top .avia-slideshow-arrows.avia-slideshow-controls a {
        background: #fff0 !important;
    }

    You can either remove the modification or add this code in the Enfold > General Styling > Quick CSS field.

    #top .avia-slideshow-arrows.avia-slideshow-controls a {
        background: #a6a6a6 !important;
    }

    Best regards,
    Ismael

    #1484767

    Hi,

    Great, I’m glad that you found a solution. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1484745

    Hi,

    If you have questions outside the current topic, then please open a new thread.

    Best regards,
    Rikard

    #1484724
    slikslok
    Participant

    Hi,

    how can I use the Burger-Menu in a widget or in the footer or anywhere on the site? Is there a shortcode to implement it?

    “Different menu for different pages” isn’t helpful because its site-specific.

    I need a solution to show the Burger-Menu (and/or the Desktop-Menu!) within the footer and/(!)/or sidebars ((optional within a accordeon). Therefore I need a general solution I can use flexible…

    Thanks

Viewing 30 results - 181 through 210 (of 141,771 total)