Forum Replies Created

Viewing 30 posts - 10,861 through 10,890 (of 25,536 total)
  • Author
    Posts
  • Hi aintzerga,

    We’re glad to hear that.
    Let us know if you need further assistance or if we can close this thread.

    Best regards,
    Nikko

    in reply to: YouTube social icon missing with 4.7.1 #1173533

    Hey mchbeck,

    Can you give us a link to your site? so we can inspect it.
    You can post the link in private content, if you want the link to be shown only to the moderators.

    Best regards,
    Nikko

    in reply to: CSS help #1173532

    Hi Oscar,

    Try adding this CSS code in Quick CSS, located in Enfold > General Styling:

    @media only screen and (max-width:767px) {
      .home #av-layout-grid-1 .flex_cell_inner {
        margin-top: 180px !important;
      }
    }

    Hope it helps. :)

    Best regards,
    Nikko

    Hi Marcel,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Javascript opening problem #1173524

    Hey Ettore_94,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: REDUCING/REMOVING TEXT FROM SOCKET ON MOBILES #1173520

    Hi benhasler,

    Jordan’s code affects mobile phones only.
    I have checked on your site and the copyright is only hidden on phones.

    Best regards,
    Nikko

    in reply to: Button over image #1173516

    Hi Sebastian,

    You’re just missing the button where you’ll need to apply a custom CSS class attribute.

    Best regards,
    Nikko

    in reply to: Main Menu Sidebar don't show in mobile menu #1173511

    Hi,

    I apologize for the misunderstanding, please try to add this CSS code in Quick CSS, located in Enfold > General Styling:

    @media only screen and (max-width:767px) {
      .responsive.html_header_sidebar #header .avia-custom-sidebar-widget-area {
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        width: 120px;
      }
    }

    Best regards,
    Nikko

    in reply to: Previous/Next Portfolio post buttons #1173504

    Hi domchocolate,

    I apologize for the mistake, it should be this code:

    add_filter( 'avf_post_nav_settings', 'enfold_post_nav_settings', 10, 2);
    function enfold_post_nav_settings($settings)
    {
      if($settings['type'] == 'portfolio')
      {
    	$settings['same_category'] = true;
      }
      return $settings;
    }

    Best regards,
    Nikko

    in reply to: iPhone/Mobile view on iPad in portrait view #1173466

    Hi Thomas,

    Can you try adding this CSS code in Quick CSS, located in Enfold > General Styling:

    @media only screen and (max-width:959px) {
        .responsive #top .flex_column_table_cell {
            display: block;
        }
    
        .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
            margin: 0;
            margin-bottom: 20px;
            width: 100%;
        }
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Main Menu Sidebar don't show in mobile menu #1173460

    Hi tdutkowski,

    Thanks for giving us admin access.
    Upon checking the layout you are using as well as the current theme settings it is not ideal to show the side menu as it will block most of the screen on mobile that’s why by default on mobile it changes the layout with menu on top not on the sidebar.

    Best regards,
    Nikko

    in reply to: Add additional menu in header #1173457

    Hi wtek,

    For it to be clickable please replace this code:

    #nav_menu-2 {
        position: absolute;
        right: 130px;
    }

    to:

    #nav_menu-2 {
        position: absolute;
        right: 130px;
        z-index: 2;
    }

    As for positioning in wider screen, you can use this code:

    @media only screen and (min-width:2048px) {
      #nav_menu-2 {
        right: 160px;
      }
    }

    just replace min-width and right value.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Sticky Full width menu #1173452

    Hi adGroupMarketing,

    Can you try adding this CSS code:

    @media only screen and (max-width:767px) {
    .responsive #top.page-id-5629 #sub_menu1 {
        position: fixed !important;
        top: 116px !important;
      }
    }

    As for replacing menu for ‘Supermarket Shop’, we suggest using a child theme first since any modification will be lost in the parent theme during a theme update, here’s the link where you can download and find instructions on how to use the child theme: https://kriesi.at/documentation/enfold/child-theme/
    Then override the fullwidth submenu, by following the instructions in: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
    Next copy enfold > templatebuilder > avia-shortcodes > menu folder to the shortcodes folder of the child theme, then modify menu.php (enfold-child > shortcodes > menu > menu.php), in line 588 (Enfold 4.7.1) you will find this code:

    $mobile_button = $mobile == 'active' ? "<a href='#' class='mobile_menu_toggle' " . av_icon_string('mobile_menu') . "><span class='av-current-placeholder'>" . __( 'Menu', 'avia_framework' ) . '</span></a>' : '';

    replace Menu with Supermarket Shop.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Top bar with menu and logo not showing #1172670

    Hi AU5985,

    Can you change the role of the account you gave to Administrator? so we can check the backend as well as the settings.
    I tried to inspect the page but I could not see the header.

    Best regards,
    Nikko

    Hey plastolux,

    Can you give us ftp access and temporary admin access to your site? so we can try to debug it for you.
    Just post the credentials in private content.

    Best regards,
    Nikko

    in reply to: Sticky Full width menu #1172665

    Hi adGroupMarketing,

    It seems you have already done it using this code:

    @media only screen and (max-width:767px) {
      .responsive #top #wrap_all #header {
        position: fixed !important;
      }
    }

    Let us know if you still need further assistance.

    Best regards,
    Nikko

    in reply to: Sidebar Menu not working as expected #1172661

    Hey adGroupMarketing,

    Please add this CSS code in Enfold > General Styling > Quick CSS:

    #menu-supermarket-shop-1 .sub-menu {
        display: none;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Top bar with menu and logo not showing #1172659

    Hey AU5985,

    The link you gave returns:

    The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.

    If I remove wp-admin from the link you gave it goes to (link in private content).
    Please check.

    Best regards,
    Nikko

    in reply to: Not showing background image when png is used? #1172657

    Hi BrendaSarg,

    Glad that Mike could help :)
    Let us know if you need further assistance or if we can close this thread.

    Best regards,
    Nikko

    in reply to: New space under main menu #1172655

    Hi damon129,

    I have tested both pages mentioned using Windows 10, Chrome | Firefox | IE 11 and didn’t see any difference in the dropdown.

    Best regards,
    Nikko

    in reply to: iPhone/Mobile view on iPad in portrait view #1172650

    Hi Thomas,

    Do you want it only to affect a single page? multiple pages? or all pages?

    Best regards,
    Nikko

    in reply to: Height of footer #1172649

    Hey TScC,

    Please add this CSS code in Enfold > General Styling > Quick CSS:

    #footer {
        padding: 0;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Social Icons Not Showing Up #1172647

    Hi oil4,

    Please follow Rikard’s solution on this thread: https://kriesi.at/support/topic/missing-icons-after-updating-to-wordpress-5-3-1-and-maintenance-releases/
    We have tested this solution and it’s working properly.

    Best regards,
    Nikko

    in reply to: Normal text menu then burger on scroll #1172646

    Hi bobfurgo,

    I think that’s possible with the use of javascript and css.
    If you aren’t using a child theme, please use it first: https://kriesi.at/documentation/enfold/install-enfold-theme/

    Best regards,
    Nikko

    in reply to: Main Menu Sidebar don't show in mobile menu #1172645

    Hey tdutkowski,

    I’m not sure I get the whole picture, can we request for access to your site? so we can check the Theme Settings first.
    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: Modifications to Post Slider #1172643

    Hi daniejm,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Button over image #1172642

    Hey Misantaller,

    Are you referring on the images with instagram icon when hovered below ‘BE PART OF OUR JOURNEY’?
    It can be done through some css, try to do the following:
    – In the Color Section, go to Developer (tab) and on Custom CSS Class, put my-section.
    – In Enfold > General Styling > Quick CSS, add this CSS code:

    .my-section .avia-button-wrap {
        position: absolute;
        top: 50%;
        left: 0;
        margin-top: -19px;
        text-align: center;
        width: 100%;
    }
    
    .my-section .avia-button {
        display: inline-block;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Background Video of color section not displaying #1172634

    Hi mirotck,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Add additional menu in header #1172632

    Hi wtek,

    Please try to replace this code in your child theme’s functions.php from:

    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
      dynamic_sidebar( 'header' );
    }

    to:

    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
      if( is_page( 3777 ) ) {
        dynamic_sidebar( 'header' );
      }
    }

    Let us know if this helps.

    Best regards,
    Nikko

    in reply to: When is the update being released to fix the recent bugs? #1172630

    Hi mct2ok,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 30 posts - 10,861 through 10,890 (of 25,536 total)