Tagged: 

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1403925

    Hi Enfold Team,

    I would like to create a Gallery which is linked to a “Content Slider” the same as on this website https://supremeconcierge.pl/en/ at the “Custom Premium Services” section. Please can you let me know how I can achieve this with Enfold Theme by using which elements of the theme?

    Many thanks and looking forwad to your reply.
    kind regards,
    Darneson

    #1403999

    Hey darneson,

    Thank you for the inquiry.

    There is no option for this by default but you can try the Portfolio AJAX option, which is a gallery or a grid of images that opens a modal preview containing more images in a gallery or slider format and additional content. Please check the demo for reference.

    // https://kriesi.at/themes/enfold/portfolio/portfolio-ajax/

    Best regards,
    Ismael

    #1404012
    This reply has been marked as private.
    #1404295

    Hi,
    Thanks for your patience, to show the portfolio title on hover try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .grid-content {
        margin-top: -54px;
    }
    .grid-entry:hover .grid-content {
        opacity: 1;
    }
    .grid-content {
        opacity: 0;
    }

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

    Best regards,
    Mike

    #1404428
    This reply has been marked as private.
    #1404477

    Hi,
    For the down chevron icon I believe that you mean like this:
    Enfold_Support_1761.jpeg
    If so try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .portfolio-preview-title::before {
      content: "\e883";
      font-family: entypo-fontello;
      font-size: 40px;
      position: relative;
      top: 6px;
      display: inline-block;
      padding-right: 10px;
    }

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

    Best regards,
    Mike

    #1404786
    This reply has been marked as private.
    #1404863

    Hi,
    To move portfolio ajax preview container below the grid container, add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function move_portfolio_ajax_preview_container_below_the_grid_container() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
      $(function() {
    $( '.av-portfolio-grid-sorting-container' ).each(function() {
    $( this ).find( '.portfolio_preview_container' ).insertAfter( $(this).find('.grid-sort-container') );
    });
    });
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'move_portfolio_ajax_preview_container_below_the_grid_container');

    This is the expected results:
    Enfold_Support_1814.jpeg

    Best regards,
    Mike

    #1404900
    This reply has been marked as private.
    #1404971

    Hi,
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.

    Best regards,
    Mike

    #1405013
    This reply has been marked as private.
    #1405036

    Hi,
    Good catch, I corrected the code above for future readers.
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Gallery with Tabbed Content Slider’ is closed to new replies.