Viewing 30 results - 6,481 through 6,510 (of 142,909 total)
  • Author
    Search Results
  • #1431769

    Hi Ismael
    When we want to select an image size in the shop on the desktop, it looks fine.
    But when we want to select an image size in the shop on the tablet (landscape) it looks strange. The image size dropdown then goes to the middle of the screen and on the right side there is a red area.
    See screenshots.
    Best regards
    Mike

    Hi,

    Great, I’m glad that @guenni007 could help you out. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1431766

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1431765

    Hi,

    Great, I’m glad to hear that you got it working again. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1431764

    In reply to: Import Demo

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1431737

    Hi,

    Thank you for the screenshot.

    We don’t get any errors when we add the code in the functions.php file. Please revert the changes, re-open the functions.php file or refresh the dashboard, then make sure to copy the code directly from forum before pasting it to the functions.php file.

    function custom_sticky_sub_menu()
    { ?>
        <script>
      (function($){
        var width = $(window).width();
        var $stickyTop = $('#sub_menu1');
        if (width <= 767) {
            $stickyTop.waypoint(function(direction) {
                if (direction === 'down') {
                    $stickyTop.addClass('sticky-top');
                }
                if (direction === 'up') {
                    $stickyTop.removeClass('sticky-top');
                }
            }, {
                offset: '0%'
            });
        }
        })(jQuery);
      </script>
        <?php
    }
    add_action( 'wp_footer', 'custom_sticky_sub_menu', 99 );
    

    Best regards,
    Ismael

    #1431731

    Hey Michael,

    Thank you for the inquiry.

    You can add the following css code to adjust the fullwidth breakpoint of the columns. Make sure to select the On Tablets (989 Pixels) option in the Fullwidth Break Point settings.

    @media only screen and (max-width: 1400px) {
    
      .responsive #top #wrap_all .flex_column.av-break-at-tablet,
      .responsive #top #wrap_all .av-break-at-tablet .flex_cell {
        margin: 0;
        margin-bottom: 20px;
        width: 100%;
        display: block;
      }
    }
    

    Best regards,
    Ismael

    #1431727

    Hi bonsaimedia,

    I have added this CSS code in your Quick CSS, please check if this helps fix the problem:

    @media only screen and (max-width:767px) {
      #top .single_toggle {
        float: none;
      }
    }

    Best regards,
    Nikko

    #1431701

    Hi
    We have a WooCommerce shop with Enfold.
    There we can choose the size of the images.
    When we select a size on the desktop, it looks normal.
    When we select a size on tablets (landscape), it looks very special.
    How we can fix this?
    Thanks very much.
    Best regards
    Mike

    Loveronika
    Participant

    Hi,
    I need help with the menu.
    It looks good on desktop and on mobile (where it has changed to burger menu). It doesn’t look good on iPad (the menu is overlapping the logo).
    How can I change the breaking point from normal menu to burger menu?
    Kind regards,
    Veronika

    #1431681
    frb1
    Participant

    Hi,

    The content in my columns aligns to top, and are not middle aligning horizontally when the mobile break stacks my columns? Is this due to wrong setting or? I need my text and graphic content to always be middle positioned in the columns, also on mobile, so it does not stick to the top in a column with a background image. Can you help me with this issue?

    #1431673

    In reply to: Import Demo

    Hi,

    I saw in an other post that you can import the demo via FTP, can you do it for me : https://kriesi.at/support/topic/unable-to-import-a-demo-3/
    I need to import the construction demo

    Many thanks for your help,

    #1431664

    off-topic

    btw. @yigit – on masonry gallery (see last code ) there is that one (4th) option missing to have “fixed manually”. Is there a reason for not having it on masonry_gallery ?
    i think it would be nice to have on masonry gallery too!

    to have tags for media-library images is easy to obtain:

    function add_tags_for_attachments() {
        register_taxonomy_for_object_type( 'post_tag', 'attachment' );
    }
    add_action( 'init' , 'add_tags_for_attachments' );

    so we could use landscape, portrait, landscape-large, portrait-large, square for them.

    ludgerf
    Participant

    Hallo, das Thema “Startseite” im Menü umbenennen hattet ihr schon mal (https://kriesi.at/support/topic/startseite-im-menu-umbenennen/). Ich sehe wahrscheinlich den Wald vor Bäumen nicht. Ich möchtre im Menü “Startseite” umbennen. Lösung lt. Thema oben “Du musst das Menü auch noch einer Position zuweisen (siehe Link im Private Content Feld). Es gibt noch weitere Positionen, zB im Socket/Fußbereich.” Das mit der Position zuweisen und dem privaten Content Feld habe ich noch nicht gefunden (begriffen).
    Danke

    #1431647

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #sub_menu1 .container {
        width: 100%;
        max-width: 100%;
    }
    #av-custom-submenu-1 span {
    	font-size: 12px;
    }
    #top #av-custom-submenu-1.av-subnav-menu > li > a {
        padding: 0px 5px 0px 5px;
    }
    #top #sub_menu1 .av-submenu-pos-right {
        text-align: center;
    }
    .sticky-top {
    	position:fixed!important;
    	top:0!important;
    	z-index:600!important;
    }
    }

    Then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_sticky_sub_menu() { ?>
      <script>
    (function($){
      var width = $(window).width();
    var $stickyTop = $('#sub_menu1');
    if (width <= 767) {
    $stickyTop.waypoint(function(direction) {
      if (direction === 'down') {
         $stickyTop.addClass('sticky-top');
      }
      if (direction === 'up') {
         $stickyTop.removeClass('sticky-top');
      }
    }, {
      offset: '0%'
    });
    }
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_sticky_sub_menu', 99 );

    Then clear your caching plugin and browser, please note that testing with iPads & iPhones 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.
    In my test with makes the sub-menu sticky on mobile ans reduces the size of the menu itme so they fit better, feel free to adjust to suit.
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    #1431646

    Hi,
    To adjust the main font size for different screen sizes please go to Enfold Theme Options ▸ General Styling ▸ Typography ▸ Advanced Options: Customize Typography Settings you will see a option for four screen sizes:
    Enfold_Support_4559.jpeg
    After selecting these ensure that you clear your cache and caching plugins, and if your server is using a object-oriented cache such as Memcached, Redis, Varnish, Litespeed, etc. you may need to also clear it.
    Please note that we ask that each thread stays on a specific topic, this helps other users find solutions based on the opening subject line quicker. For further questions please open a new thread

    Best regards,
    Mike

    #1431644
    purmar
    Participant

    Hello,
    Recently I noticed that the lightbox stopped working. The image opens directly, and the YouTube video redirects to YouTube. It appears that during the YT video, it opens the lightbox, but immediately redirects to YT. Do others experience this as well? Link in private content.

    #1431634

    Thank you :) I stick with “scroll” then.

    Other questions on this theme:
    1. How can I ajust the main font size to a respnsive size. It don’t want to make it 20px, but variable on desktop, mobile and tablet. Is this possible?
    2. On the iPad is a space at the top and at the bottom of the pictures on the main page. How to get rod of them?
    3: How to force the mobile version on iPad portrait mode (I want this on my other pages as well)
    4. The color of the date on a timeline won’t change. It stays the heading-color

    Best regards

    #1431629
    macika
    Participant

    Hello.

    Please i need to have the submenu sticky on mobile.

    I found this code, but it is not so stable. the menu with scrolling disappear on mobile. Is it possible to fix it, make it more stable? And also is it possible to make my submenu on PC on right and centered on moble? And make it little bit more compact on mobile?

    <?php

    function mobile_sub_menu_sticky() { ?>
    <script>
    window.addEventListener(‘DOMContentLoaded’, function() {
    (function($){
    var width = $(window).width();
    var $stickyTop = $(‘#sub_menu1’);
    if (width <= 767) {
    $stickyTop.waypoint(function(direction) {
    if (direction === ‘down’) {
    $stickyTop.addClass(‘sticky-top’);
    }
    if (direction === ‘up’) {
    $stickyTop.removeClass(‘sticky-top’);
    }
    }, {
    offset: ‘0%’
    });
    }
    })(jQuery);
    });
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘mobile_sub_menu_sticky’);

    Thanks you

    #1431625

    In reply to: Accordion bug

    Hi,
    Thank you for your patience and the link to your staging site, as Rikard had noted above if the parent theme is activated then the error with the accordion jumping to the top of the page when clicked doesn’t occur. I don’t know why this is, but I created a new child theme for you and enabled it and the error doesn’t occur, please check the /motorcykel-testside/ page linked below. I checked on Windows in Chrome, Firefox, & Edge

    Best regards,
    Mike

    #1431623

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.home #av-layout-grid-1 .flex_cell .flex_column_table:nth-child(2) {
    position: absolute;
    bottom: -900px;
    }

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

    Best regards,
    Mike

    patrick_gilles
    Participant

    Hello

    Is it possible to center the header main in boxed site width like the other content?
    And also center without the background full width the submenu in content width?

    look at topmenu here
    developement page

    Is it possible to remove the space between slides in content slider?
    content slider

    look at content slider middle of startpage here
    developement page

    thanks for your time
    greetings P. Gilles

    #1431602

    Hey William,
    To show dual sidebars you can try this customization, first set your sidebar on your post to a “right sidebar” then in your child theme add this custom “sidebar.php”

    <?php
    if ( ! defined( 'ABSPATH' ) )	{ die(); }
    
    // Display both left and right sidebars
    echo "<aside class='sidebar sidebar_left' " . avia_markup_helper( array( 'context' => 'sidebar', 'echo' => false ) ) . '>';
    echo '<div class="inner_sidebar extralight-border">';
    
    // Display the subnavigation for pages
    $av_sidebar_menu = avia_sidebar_menu( false );
    if( $av_sidebar_menu )
    {
        echo $av_sidebar_menu;
    }
    
    $the_id = @get_the_ID();
    
    $custom_sidebar = '';
    if( ! empty( $the_id ) && is_singular() )
    {
        $custom_sidebar = get_post_meta( $the_id, 'sidebar', true );
    }
    
    /**
     * @param string $custom_sidebar
     * @return string
     */
    $custom_sidebar = apply_filters( 'avf_custom_sidebar', $custom_sidebar );
    
    if( $custom_sidebar )
    {
        dynamic_sidebar( $custom_sidebar );
    }
    else
    {
        if( empty( $avia_config['currently_viewing'] ) )
        {
            $avia_config['currently_viewing'] = 'page';
        }
    
        // general shop sidebars
        if( $avia_config['currently_viewing'] == 'shop' && dynamic_sidebar( 'Shop Overview Page' ) )
        {
            // Do nothing here
        }
    
        // single shop sidebars
        if( $avia_config['currently_viewing'] == 'shop_single' )
        {
            // Do nothing here
        }
    
        if( $avia_config['currently_viewing'] == 'shop_single' && dynamic_sidebar( 'Single Product Pages' ) )
        {
            // Do nothing here
        }
    
        // general blog sidebars
        if( $avia_config['currently_viewing'] == 'blog' && dynamic_sidebar('Sidebar Blog') )
        {
            // Do nothing here
        }
    	// custom left sidebar
        if( $avia_config['currently_viewing'] == 'page' && dynamic_sidebar('left-sidebar') )
        {
            // Do nothing here
        }
    
        // general archive sidebars
        if( avia_get_option( 'archive_sidebar' ) == 'archive_sidebar_separate' )
        {
            if( $avia_config['currently_viewing'] == 'archive' && dynamic_sidebar( 'Sidebar Archives' ) )
            {
                // Do nothing here
            }
        }
    
        // general pages sidebars
        if( $avia_config['currently_viewing'] == 'page' && dynamic_sidebar( 'Sidebar Pages' ) )
        {
            // Do nothing here
        }
    
        // forum pages sidebars
        if( $avia_config['currently_viewing'] == 'forum' && dynamic_sidebar( 'Forum' ) )
        {
            // Do nothing here
        }
    
        // global sidebar
        if( dynamic_sidebar( 'Displayed Everywhere' ) )
        {
            // Do nothing here
        }
    
        /**
         * Filter to show default dummy sidebar
         *
         * @param false|string $default_sidebar
         * @return false|string
         */
        if( apply_filters( 'avf_show_default_sidebars', $default_sidebar ) )
        {
             if( apply_filters( 'avf_show_default_sidebar_pages', true ) )
             {
                 avia_dummy_widget(2);
             }
    
             if( apply_filters( 'avf_show_default_sidebar_categories', true ) )
             {
                 avia_dummy_widget(3);
             }
    
             if( apply_filters( 'avf_show_default_sidebar_archiv', true ) )
             {
                 avia_dummy_widget(4);
             }
    
            //	customize default sidebar and add your sidebars
            do_action ( 'ava_add_custom_default_sidebars' );
        }
    }
    
    echo '</div>';
    echo '</aside>';
    
    // Right sidebar
    echo "<aside class='sidebar sidebar_right' " . avia_markup_helper( array( 'context' => 'sidebar', 'echo' => false ) ) . '>';
    echo '<div class="inner_sidebar extralight-border">';
    
    // Display the subnavigation for pages
    $av_sidebar_menu = avia_sidebar_menu( false );
    if( $av_sidebar_menu )
    {
        echo $av_sidebar_menu;
    }
    
    $the_id = @get_the_ID();
    
    $custom_sidebar = '';
    if( ! empty( $the_id ) && is_singular() )
    {
        $custom_sidebar = get_post_meta( $the_id, 'sidebar', true );
    }
    
    /**
     * @param string $custom_sidebar
     * @return string
     */
    $custom_sidebar = apply_filters( 'avf_custom_sidebar', $custom_sidebar );
    
    if( $custom_sidebar )
    {
        dynamic_sidebar( $custom_sidebar );
    }
    else
    {
        if( empty( $avia_config['currently_viewing'] ) )
        {
            $avia_config['currently_viewing'] = 'page';
        }
    
        // general shop sidebars
        if( $avia_config['currently_viewing'] == 'shop' && dynamic_sidebar( 'Shop Overview Page' ) )
        {
            // Do nothing here
        }
    
        // single shop sidebars
        if( $avia_config['currently_viewing'] == 'shop_single' )
        {
            // Do nothing here
        }
    
        if( $avia_config['currently_viewing'] == 'shop_single' && dynamic_sidebar( 'Single Product Pages' ) )
        {
            // Do nothing here
        }
    
        // general blog sidebars
        if( $avia_config['currently_viewing'] == 'blog' && dynamic_sidebar('Sidebar Blog') )
        {
            // Do nothing here
        }
    	// custom right sidebar
        if( $avia_config['currently_viewing'] == 'page' && dynamic_sidebar('right-sidebar') )
        {
            // Do nothing here
        }
    
        // general archive sidebars
        if( avia_get_option( 'archive_sidebar' ) == 'archive_sidebar_separate' )
        {
            if( $avia_config['currently_viewing'] == 'archive' && dynamic_sidebar( 'Sidebar Archives' ) )
            {
                // Do nothing here
            }
        }
    
        // general pages sidebars
        if( $avia_config['currently_viewing'] == 'page' && dynamic_sidebar( 'Sidebar Pages' ) )
        {
            // Do nothing here
        }
    
        // forum pages sidebars
        if( $avia_config['currently_viewing'] == 'forum' && dynamic_sidebar( 'Forum' ) )
        {
            // Do nothing here
        }
    
        // global sidebar
        if( dynamic_sidebar( 'Displayed Everywhere' ) )
        {
            // Do nothing here
        }
    
        /**
         * Filter to show default dummy sidebar
         *
         * @param false|string $default_sidebar
         * @return false|string
         */
        if( apply_filters( 'avf_show_default_sidebars', $default_sidebar ) )
        {
             if( apply_filters( 'avf_show_default_sidebar_pages', true ) )
             {
                 avia_dummy_widget(2);
             }
    
             if( apply_filters( 'avf_show_default_sidebar_categories', true ) )
             {
                 avia_dummy_widget(3);
             }
    
             if( apply_filters( 'avf_show_default_sidebar_archiv', true ) )
             {
                 avia_dummy_widget(4);
             }
    
            //	customize default sidebar and add your sidebars
            do_action ( 'ava_add_custom_default_sidebars' );
        }
    }
    
    echo '</div>';
    echo '</aside>';
    ?>
    

    then in your child theme functions.php add this function:

    function custom_theme_widgets_init() {
        register_sidebar( array(
            'name'          => esc_html__( 'Left Sidebar', 'text-domain' ),
            'id'            => 'left-sidebar',
            'description'   => esc_html__( 'Add widgets here to appear in the left sidebar.', 'text-domain' ),
            'before_widget' => '<div id="%1$s" class="widget %2$s">',
            'after_widget'  => '</div>',
            'before_title'  => '<h4 class="widget-title">',
            'after_title'   => '</h4>',
        ) );
        register_sidebar( array(
            'name'          => esc_html__( 'Right Sidebar', 'text-domain' ),
            'id'            => 'right-sidebar',
            'description'   => esc_html__( 'Add widgets here to appear in the right sidebar.', 'text-domain' ),
            'before_widget' => '<div id="%1$s" class="widget %2$s">',
            'after_widget'  => '</div>',
            'before_title'  => '<h4 class="widget-title">',
            'after_title'   => '</h4>',
        ) );
    }
    add_action( 'widgets_init', 'custom_theme_widgets_init' );
    function custom_left_sidebar() { ?>
      <script>
    (function($) {
         $('.single-post .sidebar_left').detach().insertBefore('.single-post .content.av-main-single');
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_left_sidebar', 99 );

    then add this custom CSS:

    .responsive .single-post .container {
        max-width: 98%;
    }
    #top.single-post #main .sidebar {
        display: inline-block;
        width: 20%;
        border: none;
    }
    #top.single-post .content.units.alpha.av-main-single {
    	width: 58%;
    	clear: none;
    	border:none;
    }
    #top.single-post #main .sidebar.sidebar_left {
    	float: left;
    }

    Now you will have two new sidebars:
    Enfold_Support_4527.jpeg
    the other widget areas will also still work for the default sidebar position if you wish.
    You will now have dual sidebars:
    Enfold_Support_4529.jpeg
    Please note that for there to be room for the second sidebar we used the css to change the width of the page and the main content and the sidebars, you can tinker with the css above to suit your needs.

    Best regards,
    Mike

    #1431592

    Well this is odd. There is so much Custom CSS on my site (fixing various issues) that I have logo stuff in both the functions.php AND iin the custom CSS field. Changing the functions.php to <p></p> tags fixed the header issue . . . thank you for that. Now I am trying to get the font black (and to stay black vs having a hover color) AND for it to the first and second lines (Line 1: Jonathan F. Anderson, LPC-S Line 2: Gate Healing, PLLC) to look right next to the compass logo in terms of size and line spacing . . . it basically did this before, but the h2 tag had to go and that screwed it up.

    Thanks a bunch for any guidance here.
    jon

    PS I tried adding color: black; to the custom CSS subtext styling code to no avail. I also tried going into functions.php and changing the Logo subtext section to:
    /* Logo Subtext regular text */
    add_filter(‘avf_logo_subtext’, ‘kriesi_logo_addition’);

    function kriesi_logo_addition($sub) {
    $sub .= ‘<p style=”color: black;”><b>Jonathan F. Anderson, LPC-s</b></p>’;
    $sub .= ‘<p style=”color: black;”><b>Gate Healing, PLLC</b></p>’;
    return $sub;
    }

    Also to no avail. I’m going to stop trying now before I break something.

    • This reply was modified 2 years, 2 months ago by gatehealing.
    #1431591

    Hi,
    Thank you for your patience, I believe you are referring to this text:
    Enfold_Support_4513.jpeg
    this is in the manually excerpt for the portfolio post, if you are using the Block Editor look in the sidebar:
    Enfold_Support_4515.jpeg
    if you don’t see the option you may need to enable it in the three dots and then preferences:
    Enfold_Support_4517.jpeg
    the panels and excerpt:
    Enfold_Support_4519.jpeg
    if you are using the Classic Editor look below the post:
    Enfold_Support_4521.jpeg
    if you don’t see the option you may need to enable it in the screen options at the top of the page:
    Enfold_Support_4523.jpeg

    Best regards,
    Mike

    #1431590

    Please attach the links to this thread in the Private Content area or in the message area
    but what about private content or discussion, there is no way to attach anything here!

    It looks like you may have started this thread via the contact form instead of the support forum
    The discussion was started here: https://kriesi.at/support/topic/color-sectiom-on-tablets-problem-2/ but was closed by Ismael

    Honestly, I’m starting to get nervous. After paying $40 to renew support, no one has taken my issue seriously for two days. Upload here, attach from here…read my first post carefully (links included) and you’ll see that everything is very clear.

    #1431564

    In reply to: ENFOLD Theme Fonts

    Hey Francesco,
    Thanks when I check your main menu links they are using your custom font:
    Enfold_Support_4494.jpeg
    I note that you have used the Advanced Styling Main Menu Option 4 times and some set the font as Supera Gothic Light and others are Supera Gothic Book, so perhaps this is the issue that you are referring to.
    Enfold_Support_4498.jpeg
    The setting at the bottom will be the one to take preference, not the ones at the top in your screenshot, try removing the unnecessary duplicates and use one setting, you can click the red X to remove the extra ones.
    Enfold_Support_4500.jpeg

    Best regards,
    Mike

    #1431559

    You can close this topic. Thank you.

    #1431539

    Hi,

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

    Best regards,
    Rikard

    #1431534

    Hi,

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

    Best regards,
    Rikard

Viewing 30 results - 6,481 through 6,510 (of 142,909 total)