Forum Replies Created

Viewing 30 posts - 14,401 through 14,430 (of 82,585 total)
  • Author
    Posts
  • in reply to: Header changes color on ipad mini in portrait mode #958578

    Hey Barb!

    I’m doing good too, thanks! :)

    By default, transparent header is disabled on mobile so it displays the header in body background color, in your case green :) I simply set it to white.

    You can add following code to Quick CSS to display each column full width on landscape mode

    @media only screen and (max-width: 768px) { 
    .responsive .flex_column {
        width: 100%;
        margin-left: 0;
    }}

    Cheers!
    Yigit

    in reply to: change log Enfold Version 4.3.2 #958569

    Hi!

    We have updated change log – https://kriesi.at/documentation/enfold/changelog/. Thanks again!

    Best regards,
    Yigit

    Hi Sophie,

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)

    Thanks, you too and enjoy your weekend!

    Best regards,
    Yigit

    in reply to: Where add javascript in Enfold? #958549

    Hi Rob,

    Please add following code to bottom of Functions.php file of your child theme

    //-------------------------------
    // Custom script in footer 
    //-------------------------------
    
    function custom_script_name(){
    ?>
    <script>
    jQuery(document).ready(function($) {
    $('#header_main > div.container.av-logo-container > div').delay(100).show(0);
    
    $(window).on('load resize', function(){
    var width = $(window).width(), height = $(window).height();
    if ((width <= 768)) {
    $('.logo img').css('height','71px');
    }
    if ((width <= 425)){
    $('#header_main > div.container.av-logo-container').css('line-height','inherit');
    $('.html_header_top.html_header_sticky #top #wrap_all #main').css({ 'padding-top': '180px'});
    } else {}
    
    if ((width <= 1025)){
    $('.html_header_top.html_header_sticky #top #wrap_all #main').css({ 'padding-top': '225px'});
    $(window).scroll(function() {
    if ($(this).scrollTop() > 150) {
    $('#header_main > div.container.av-logo-container > div > strong:nth-child(3)').css({ 'display': 'none' });
    $('#header_main > div.container.av-logo-container > div > strong:nth-child(1)').css({ 'float': 'left' });
    $('.html_header_top.html_header_topbar_active.html_header_sticky #top #main').css({ 'padding-top': '145px'});
    $('#header_main > div.container.av-logo-container > div > strong:nth-child(1) > a > img').css({ 'padding-top': '5px'});
    $('.html_header_top.html_header_sticky #top #wrap_all #main').css({ 'padding-top': '145px'});
    }
    });
    } else {}
    
    if ((width <= 768)){
    $('.html_header_top.html_header_sticky #top #wrap_all #main').css({ 'padding-top': '200px'});
    $(window).scroll(function() {
    if ($(this).scrollTop() > 150) {
    $('.html_header_top.html_header_topbar_active.html_header_sticky #top #main').css({ 'padding-top': '145px'});
    $('.html_header_top.html_header_sticky #top #wrap_all #main').css({ 'padding-top': '125px'});
    $('#header_main').css({ 'height': '120px'});
    }
    });
    } else {}
    
    if ((width <= 625)){
    $('.responsive #top #main').css({ 'padding-top': '200px'});
    $(window).scroll(function() {
    if ($(this).scrollTop() > 100) {
    $('.html_header_top.html_header_topbar_active.html_header_sticky #top #main').css({ 'padding-top': '125px'});
    $('#main').css({ 'padding-top': '125px'});
    $('#header_main').css({ 'height': '120px'});
    }
    });
    } else {}
    
    })
    
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script_name');

    Best regards,
    Yigit

    in reply to: Meet the team #958545

    Hi,

    Do you mean the images below “THE OFFICE” section? If so, add two 1/2 column elements and three 1/3 column elements to your page and place Image element into each column under Media Elements tab of Advanced Layout Builder :)

    Best regards,
    Yigit

    in reply to: Text not apprearing on page #958544

    Hey,

    Please create a user with administrator role and when we are done checking your website, you can delete that user. You can use (Email address hidden if logged out) for email but please post login credentials here privately so any available moderator can look into it :)

    Regards,
    Yigit

    in reply to: payment details #958526

    Hi,

    We replied to your thread here – https://kriesi.at/support/topic/text-not-apprearing-on-page/. Let us continue there :)

    Best regards,
    Yigit

    in reply to: Text not apprearing on page #958525

    Hey,

    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
      ( do 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 a admin user and post the login credentials in the “private data” field.

    Best regards,
    Yigit

    in reply to: Header changes color on ipad mini in portrait mode #958524

    Hi Barb!

    Hope you are doing well :)

    I added following code to bottom of Style.css file of your child theme

    .responsive.html_mobile_menu_tablet #top #wrap_all #header.av_header_transparency {
        background-color: white;
    }
    @media only screen and (max-width: 990px) { 
    #inschrijven .flex_column_table_cell {
        display: block;
        width: 100%;
    }
    #inschrijven .flex_column_table {
        display: block;
    }}

    Please review your website :)

    Best regards,
    Yigit

    in reply to: Where add javascript in Enfold? #958340

    Hey Rob,

    Please refer to this post – https://kriesi.at/documentation/enfold/add-custom-js/

    Best regards,
    Yigit

    in reply to: Font Settings are not working. #958337

    Hi,

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Yigit

    in reply to: Falsch generierte URL "dynamic_avia" #958323

    Hallo Benny,

    Unfortunately, there is no coupon code option on ThemeForest so we are not able to provide any. Please subscribe to our newsletter – https://kriesi.at/newsletter to hear about discounts :)

    Best regards,
    Yigit

    in reply to: Hide Youtube Related Videos #958250

    Hey Rob,

    Glad you figured it out! :)


    @guenni007
    Thanks for your input! :)

    Cheers!
    Yigit

    in reply to: Masonry not showing after performance update #958249

    Hey,

    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
      ( do 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 a admin user and post the login credentials in the “private data” field.

    Best regards,
    Yigit

    in reply to: resizing problems with tab section #958246

    Hi,

    Could you please create login credentials once again? They did not work for me today.

    Best regards,
    Yigit

    in reply to: Page Content Element Underlining Text #958232

    Hey!

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Yigit

    Hey Paride!

    It is probably coming from bundled version of LayerSlider. If you are not using LayerSlider, you can go to Enfold theme options > Layout Builder tab and disable it :)

    Regards,
    Yigit

    in reply to: ENFOLD update version 4.2.6 crashed my site #958206

    Hi,

    Please try updating the theme to the latest version 4.3.2 via FTP – https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update. We have added backwards compatibility but we would still recommend you to use PHP version 5.6 or higher.

    Best regards,
    Yigit

    in reply to: LayerSlider not working after update to Enfold 4.3.2 #958178

    Hi,

    Glad you figured it out! :)

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Yigit

    in reply to: What Is The Usual Support Response Time #958174

    Hi,

    Normally we reply within up to 24 hours however forums get busy after updates and since we had many updates recently, it may take a little longer these days. We are sorry about it and working hard to reply each thread in a more timely manner.
    I replied to your existing thread and will follow up. Let us continue there :)

    Regards,
    Yigit

    in reply to: Page Content Element Underlining Text #958170

    Hi,

    Thanks for the info, i was able to login.

    I noticed you used A tag with name attribute for your anchor point and since you have following custom CSS code in Enfold theme options > General Styling > Quick CSS, text had underline

    /*Underline links*/
    .avia_textblock a {
    text-decoration: underline;
    }

    I changed your anchor point to following

    
    <div id="included" class="anchor-point"></div>

    and added following code to bottom of Style.css file of your child theme
    .anchor-point { clear: both; }
    Please review your website :)

    Best regards,
    Yigit

    • This reply was modified 6 years, 11 months ago by Yigit.

    Hey Anton,

    Thanks for contacting us!

    We would like to inform you that we only provide support to our registered users.

    You can register to our support forum here – and then start a new thread under Enfold sub forum.

    Please make sure to elaborate on the issue you are having/changes you would like to make on your thread. If you would like to include screenshots, you can upload them on http://imgur.com, https://snag.gy or Dropbox public folder and attach the links in your posts :)

    Best regards,
    Yigit

    Hi,

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    If you have any other questions or issues, feel free to start a new thread under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Yigit

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    CSS Snippet:

    
    /* CSS - Testimonial BG */
    
    .main_color .avia-testimonial-arrow-wrap .avia-arrow, .main_color .avia-slider-testimonials .avia-testimonial-content {
        background: #f2f2f2;
    }
    
    

    Best regards,
    Yigit

    in reply to: Menu one page #957833

    Hey,

    Please use this plugin – https://wordpress.org/plugins/zen-menu-logic/ and choose to display different menu for your inner pages :)

    Cheers!
    Yigit

    in reply to: Space under fullwidth slider #957761

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    CSS Snippet:

    
    .avia-builder-el-0.av-minimum-height-100 .container, .avia-builder-el-0.avia-fullscreen-slider .avia-slideshow, .avia-builder-el-0.av-cell-min-height-100 > .flex_cell {
        height: 80vh;
    }
    
    

    Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.

    Best regards,
    Yigit

    in reply to: Accordion icons not showing up #957755

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    CSS Snippet:

    
    .active_tc .toggle_content {
        border: none;
    }
    
    

    Best regards,
    Yigit

    in reply to: PHP Warning on iconlist.php #957743

    Hi,

    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
      ( do 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 a admin user and post the login credentials in the “private data” field.

    Best regards,
    Yigit

    Hi,

    I imported demo manually however images are missing. Please make sure that wp-content/uploads folder has correct permissions ( 755 ) – http://codex.wordpress.org/Changing_File_Permissions

    Best regards,
    Yigit

    in reply to: PHP Warning on iconlist.php #957651

    Hey zimbo,

    Which PHP version are you using? We would recommend PHP version 7.x.

    Best regards,
    Yigit

Viewing 30 posts - 14,401 through 14,430 (of 82,585 total)