Forum Replies Created

Viewing 30 posts - 16,291 through 16,320 (of 25,536 total)
  • Author
    Posts
  • Hey ctrimde,

    Try using this css code:

    #top.home .avia_ajax_form input.button {
        background-color: black;
    }

    Just change the black color.
    Hope it helps :)

    Best regards,
    Nikko

    in reply to: Blog image #958037

    Hi Mips,

    Glad that you have figured it out :)
    Feel free to comeback if you need further assistance.
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Very Urgent!: Menu Text Disappeared on iPad Pro #958036

    Hey mftonto2and3,

    I have checked your site and it does show on ipad pro or even in ipad.
    The hamburger icon only showed up on my mobile phone.
    Is this already fixed?

    Best regards,
    Nikko

    in reply to: Problem with datepicker in contact form #958030

    Hey Tagliax,

    Thanks for giving us a link to your site, however it looks messed up on my end.
    The styles doesn’t work properly and there are errors in the js console.
    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,
    Nikko

    in reply to: Caption / Text in Fullscreen Slider i Enfold #958027

    Hey Vibeke_Schmidt,

    After you have added images to your fullwidth easy slider, you should see images listed, click on the image and you should see another window popup.
    Go to Caption (tab), you should be able to see same settings as the screenshot: https://imgur.com/a/UrUkeRT
    Hope this helps :)

    Best regards,
    Nikko

    in reply to: Add extra link to mobile menu #958025

    Hey jeroenvandessel,

    In your Appearance > Menus, select your main menu and add all the links.
    Then on the upper right you should see Screen Options and check Css Classes
    For the menus to be shown only on mobile try adding this css class: for-mobile
    Save then go to Enfold > General Styling > Quick CSS, and add this css code:

    #top .for-mobile {
      display: none;
    }
    
    @media only screen and (max-width:959px) {
      #top .for-mobile {
        display: block;
      }
    }

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: Using advance layout editor in CPT #958020

    Hi dvalansi,

    Glad that you made it work. :)
    Let us know if you need further assistance or if we can close this thread.

    Best regards,
    Nikko

    in reply to: Enfold update (4.3.2) Error 500 #958018

    Hi nelninio,

    Glad that you have fixed it :)
    Though we apologize for the late response since there are a lot of queries lately.
    Thanks again for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: transparent header for mobile resolutions #958013

    Hi bruttougo,

    Glad to hear that :)
    Feel free to comeback if you need further assistance.
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Quick CSS vs Style.CSS #958012

    Hey slui,

    Try to check this also Delete old CSS and JS files? located at the bottom of Performance settings.
    Let us know if this helps.

    Best regards,
    Nikko

    in reply to: how to edit the sale bubble #958009

    Hey bakbek,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    #top .single-product-main-image.alpha {
        position: relative;
    }
    
    #top .single-product-main-image .onsale {
        right: 5% !important;
    }

    Hope it helps :)

    Best regards,
    Nikko

    in reply to: Text crossing into a picture #958003

    Hey carstenstrandvad,

    I think the layout can be done with Enfold but would need some css tweaks to do it.
    You need to enable first custom css class first by going to Enfold > Layout Builder > check Show element options for developers.
    Then create 2 1/2 column for the image and text, then give us a link to the page you created so we can check further.
    You can post the link in private content, so only the moderators can view it.

    Best regards,
    Nikko

    in reply to: Theme update breaks custom JS #958001

    Hey stedall,

    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,
    Nikko

    in reply to: Different settings for Flyout width? #957997

    Hi Roine,

    Can you try adding this css code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
      .html_av-overlay-side .av-burger-overlay-scroll {
        width: 70% !important;
      }
    }

    Hope this helps.

    Best regards,
    Nikko

    in reply to: alignment issues on product page #957994

    Hey DROR,

    Try adding this css code in Quick CSS (Located in Enfold > General Styling):

    #top .variations td.label {
        width: 100px;
    }
    
    form.cart .variations select {
        float: right;
    }
    
    #top .woocommerce-variation-add-to-cart.variations_button {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        width: 280px;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Some Design Fixes #957989

    Hi bakbek,

    To make it look like rtl layout, you can use this css code:

    #top #bbpress-forums div.bbp-forum-author, 
    #top #bbpress-forums div.bbp-topic-author, 
    #top #bbpress-forums div.bbp-reply-author {
        float: right !important;
        margin-right: 0 !important;
        margin-left: 30px !important;
    }
    
    .avia_transform #top .bbp-replies .bbp-reply-author::before, 
    .avia_transform #top .forum-search .bbp-reply-author::before, 
    .avia_transform #top .forum-search .bbp-topic-author::before {
        left: auto;
        right: 103px;
        transform: rotate(225deg);
    }

    Best regards,
    Nikko

    in reply to: center logo in mobile menu #957985

    Hi sitibus,

    Yes, can you try adding this css code in Quick CSS:

    @media only screen and (max-width: 767px) {
      .responsive #top #wrap_all .main_menu {
        position: absolute;
        left: auto;
        right: 0;
        text-align: right;
      }
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Lightbox not working #957982

    Hey johnosjourney,

    Can you try to go to Enfold > Performance > Disabling of template builder elements set to: Always load all elements.
    If that doesn’t help, 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,
    Nikko

    in reply to: Sidebar does not show up on mobile #957980

    Hi Andre,

    Try adding this css code in QUick CSS (located in Enfold > General Styling):

    @media only screen and (max-width: 990px) {
      #top #main main.content {
        width: 100%;
        border: 0;
        float: none;
      }
    
      #top #main .sidebar {
        border: 0;
        width: 100%;
      }
    
      #top #main .sidebar .inner_sidebar {
        margin-left: 0;
      }
    }

    Hope it helps :)

    Best regards,
    Nikko

    in reply to: Change meta infos on blog grid #957975

    Hey Andre,

    To remove the category, go to Enfold > General Styling > Quick CSS then add this css code:

    .html_modern-blog #top .post-entry .blog-categories {
        display: none;
    }

    As for showing the meta info format, here are the steps you need to do:
    1. Use a child theme: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#why-child-theme
    2. Follow the instructions in: https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#add-elements-to-alb
    3. Then on the shortcodes folder of your child theme create a file and name it: postslider.php and paste this code: https://pastebin.com/EFhzQb1X
    4. Go to Enfold > General Styling > Quick CSS then add this css code:

    #top .slide-meta-comments {
        display: block;
    }

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: Masonry Gallery Custom Links Open in New Tab #957965

    Hey alextornek,

    Can you try adding this code at the bottom of your functions.php:

    function masonry_newtab(){
    ?>
    <script>
    jQuery(window).load(function(){
      jQuery('.av-masonry-container a').attr('target', '_blank');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'masonry_newtab');

    Hope this helps :)

    Best regards,
    Nikko

    Hey wtechgr,

    The code should still work as long as the right id or class is used.
    There are lots of changes in 4.3.2, try to check for js errors as there might be some conflicts which causes your code not to work.

    Best regards,
    Nikko

    in reply to: Medical Demo massive responsive problems. #957949

    Hey 1979mark,

    Thanks for giving us the link to your site as well as screenshots.
    I have checked your site in my mobile phone and the responsive version was looking great.
    Is this already fixed?

    Best regards,
    Nikko

    in reply to: Header Widget not flowing on Mobile/responsive #957943

    Hi Fiona,

    Glad that you figured it out :)
    You should be able to make changes you’d like using some css codes.
    Let us know if you still need further assistance or if we can close this thread.

    Best regards,
    Nikko

    in reply to: 500 Error after Update and Downgrade #957942

    Hi nelninio,

    If you don’t have access to the files, then doing a backup first then switching the theme to a default wordpress theme, delete Enfold then install and activate the older version of Enfold should work.

    Best regards,
    Nikko

    in reply to: Cart page tables on mobile #957940

    Hi bakbek,

    Can you try replacing this code:

    @media only screen and (max-width:767px) {
      #top table {
        overflow: visible !important;
      }
    }

    to:

    @media only screen and (max-width:767px) {
      #top table {
        overflow: visible !important;
      }
    
      .responsive table.shop_table.cart td {
        border-left: 1px solid #e1e1e1;
      }
    
      div a.remove {
        margin: 0 auto;
      }
    }

    Hope it helps :)

    Best regards,
    Nikko

    in reply to: my account page on mobile is not looking good #957936

    Hi bakbek,

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

    Best regards,
    Nikko

    in reply to: alignment issues on forum profile pages #957934

    Hi DROR,

    Can you try adding this css code as well:

    #bbpress-forums #bbp-user-wrapper {
        width: 100%;
    }

    Hope it helps :)

    Best regards,
    Nikko

    in reply to: Next/Previous arrows gone after update #957623

    Hey christianichristiani,

    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,
    Nikko

    in reply to: Add button to next portfolio item in same category #957621

    Hey Duncan,

    I’ll be closing this thread since you have already posted a thread with similar topic/title.

    Best regards,
    Nikko

Viewing 30 posts - 16,291 through 16,320 (of 25,536 total)