Forum Replies Created

Viewing 30 posts - 13,591 through 13,620 (of 25,536 total)
  • Author
    Posts
  • in reply to: increase container size #1066723

    Hi diefleischerei,

    Yes, please use the Custom Css Class, you can put mysection in that field then on Quick CSS use this:

    @media only screen and (max-width:767px) {
      .responsive .mysection > .container {
        padding-left: 0 !important; 
        padding-right: 0 !important; 
        width: 100% !important;
        min-width: 100% !important;
        margin: 0px !important;
      }
    }

    Best regards,
    Nikko

    in reply to: Error message on wp-admin after upgrade to Enfold 4.5 #1066721

    Hi Klaasbaas1983,

    Glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Adjust Velocity Fullscreen slider #1066719

    Hi TomasOliva,

    Glad that we are able to help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    Hi tonydobrevski,

    Glad that we could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: ALL DEMO IMAGES ARE MISSING #1066520

    Hi Adrien,

    Thanks, is the link in private content the right login page?
    I tried to login using the credentials you gave however it didn’t work, please check.

    Best regards,
    Nikko

    in reply to: Strange Comments Bug #1066515

    Hi riffster21,

    Glad that we are able to help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Move mediaelement "picture" individually (per CSS ?) #1066438

    Hi gestaltraeume,

    Glad that are able to help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: ALL DEMO IMAGES ARE MISSING #1066410

    Hi Adrien,

    There’s no admin login details in Private Content in this thread.
    Please post it in private content so we can check.

    Best regards,
    Nikko

    in reply to: Logo Menu Position #1066407

    Hi Eric Marks,

    Would it be okay if we try to make changes on your site? it might take several minutes to test.
    Though we do understand that your site is live, if you want to lessen the risk, please create a stage site: https://themeisle.com/blog/wordpress-staging-site/

    Best regards,
    Nikko

    in reply to: Update 4.5.2 to 4.5.3) doesn't work #1066402

    Hi,

    @Axel I understand that it didn’t work for you, but restoring your backup and updating again worked for you and we’re glad to hear that and it may also give others ideas that the solution you made works for other people as well.

    @benjaminmeier
    glad to hear that Alex’s solution worked for you :)

    Best regards,
    Nikko

    in reply to: Logo in transparent header #1066399

    Hi fta-edfc,

    The header is a bit transparent that’s why everything inside it is also semi-transparent.
    To fix this go to Enfold > General Styling > Quick CSS then add this code:

    #top .header_color.av_header_transparency {
        background-color: rgba(255,255,255,0.8) !important;
        opacity: 1 !important;
    }

    Best regards,
    Nikko

    Hi Anton,

    Try using this one instead:

    #top #av_section_1 .avia-mailchimp-form .av_form_privacy_check label, 
    #top #av_section_1 .avia-mailchimp-form .av_form_privacy_check label a {
        color: white;
    }

    Best regards,
    Nikko

    in reply to: Contactform Margin between Labels #1066393

    Hi breezemedia,

    Glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Tab-Control not aligning top #1066389

    Hi fta-edfc,

    Glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Search icon not appearing in mobile version #1066387

    Hi carmentvaalba,

    Please add this css code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:1024px) {
      #top #header .av-main-nav #menu-item-search {
        display: block !important;
      }
    }

    You may need to flush out the page cache to fetch the newly added css codes.

    Best regards,
    Nikko

    in reply to: Mobile menu doesn't collapse after click #1066384

    Hi ThomSchu,

    Am I referring to the right link? the hamburger menu (the one with 3 lines)?
    Can you tell us what device you’re using and what browser?

    Best regards,
    Nikko

    in reply to: Move mediaelement "picture" individually (per CSS ?) #1066381

    Hi JS,

    We apologize for the late response.
    You can use Custom Css Class for that, in the WordPress Dashboard go to Enfold > Layout Builder > check Show element options for developers then save.
    Then each element should have a Custom Css Class field. For the first cross you can put cross1 then for the 2nd cross cross2
    In Quick CSS (located in Enfold > General Styling), add this css code:

    #top .cross1 img.avia_image {
        position: relative;
        top: -10px;
        left: 30px;
    }
    
    #top .cross2 img.avia_image {
        position: relative;
        top: 10px;
        left: -20px;
    }

    Just adjust the top and left values (you can use negative values).
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Fullwidth Easy Slider – no fade on first image #1066372

    Hey jancecile,

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

    .js_active .avia-slideshow li:first-child {
        visibility: visible !important;
        opacity: 1 !important;
    }

    Best regards,
    Nikko

    in reply to: Missing "toogle toolbar" @ textblock editor #1066370

    Hi Chris,

    Can you try to create a staging site first? basically it’s just a duplicate of your site placed on your subdomain, so this can be used for testing purposes instead of risking your live site.
    Here is a tutorial on how to do it: https://themeisle.com/blog/wordpress-staging-site/
    Maybe the first thing to try is to disable all plugins and check if this fixes the issue.

    Best regards,
    Nikko

    in reply to: Strange Comments Bug #1066359

    Hi riffster21,

    Just add this css code in Quick CSS (located in Enfold > General Styling):

    #top .commentlist .comment-meta.commentmetadata {
        display: none;
    }

    Best regards,
    Nikko

    in reply to: template page Archive #1066354

    Hey Maryb,

    Can you try to use a child theme, then copy archive.php to your child theme.
    Then rename archive.php (in child theme) to category.php then replace all instances of

    get_template_part( 'includes/loop', 'index' );

    in the file to:

    The_Grid ('My Grid Name', true);

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Adjust Velocity Fullscreen slider #1066349

    Hi Tomas,

    You can adjust it using Quick CSS, located in Enfold > General Styling, just add this code:

    .avia_transform .av_slideshow_full .active-slide .avia-caption-title, 
    .avia_transform .av_fullscreen .active-slide .avia-caption-title {
        visibility: visible;
        -webkit-animation: caption-left 1s 1 cubic-bezier(0.985,0.005,0.265,1);
        animation: caption-left 1s 1 cubic-bezier(0.985,0.005,0.265,1);
    }
    
    .avia_transform .av_slideshow_full .active-slide .avia-caption-content, 
    .avia_transform .av_fullscreen .active-slide .avia-caption-content {
        visibility: visible;
        -webkit-animation: caption-right 1s 1 cubic-bezier(0.985,0.005,0.265,1);
        animation: caption-right 1s 1 cubic-bezier(0.985,0.005,0.265,1);
    }
    
    .avia_transform .av_slideshow_full .active-slide .avia-slideshow-button, 
    .avia_transform .av_fullscreen .active-slide .avia-slideshow-button {
        visibility: visible;
        -webkit-animation: caption-left 1.2s 1 cubic-bezier(0.985,0.005,0.265,1);
        animation: caption-left 1.2s 1 cubic-bezier(0.985,0.005,0.265,1);
    }

    You’ll find the 1s which indicates the number of seconds just change it into something like 2s or 0.5s
    Hope it helps.

    Best regards,
    Nikko

    in reply to: Toggle in Content slider not working #1066347

    Hey zerodotnine,

    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: Vertical Alignment of Gallery Images #1066343

    Hey galpinr,

    Try adding this code in functions.php and upload the tall image again and use it:

    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    
    function enfold_customization_modify_thumb_size( $size ) {
      $size['portfolio'] = array('width'=>495, 'height'=>400, 'crop'=>array( 'center', 'top' ));
      return $size;
    }

    Best regards,
    Nikko

    in reply to: Search icon not appearing in mobile version #1066337

    Hi Carmen,

    I have checked the three websites you posted and it’s the same for the three of them.
    The only difference I see is that on faceclinic the search icon is hidden on smaller devices.

    Best regards,
    Nikko

    in reply to: update theme AVIA pagebuilder #1066333

    Hi Anneke,

    Glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    Hi Greg,

    Glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Submenu is not visible #1066327

    Hi hjlubriDK,

    Glad that we could help :)
    Thanks for posting the plugin that caused the conflict and thanks also for using Enfold.
    Have a great day!

    Best regards,
    Nikko

    Hey GregDunn,

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

    #top .avia-button-fullwidth .avia_iconbox_title {
        -webkit-backface-visibility: visible !important;
    }

    Best regards,
    Nikko

    in reply to: Social and Search Icons #1066283

    Hi szimmerdesign76,

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

    Best regards,
    Nikko

Viewing 30 posts - 13,591 through 13,620 (of 25,536 total)