Forum Replies Created

Viewing 30 posts - 11,551 through 11,580 (of 34,910 total)
  • Author
    Posts
  • in reply to: Image names appearing on hover #1355003

    Hey HulaSlim,
    Thanks for your question I assume that your are referring to the “title” attribute for the images
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_remove_title_script() { ?>
      <script>
    (function($){
      $("*").hover(function(){
        $(this).removeAttr("title");
      });  
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_remove_title_script');

    Best regards,
    Mike

    Hi,
    Glad that Guenni007 & Günter could 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

    Hi,
    Glad Ismael could 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

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

    in reply to: Image with hotspots that open image in lightbox #1354995

    Hey Ueli,
    Thanks for your question, the lightbox has an empty title field for your hotspot images, please try adding your text in the image title field in the media library, or if the hotspot image links were added as html you could add the title attribute title="your title text"

    Best regards,
    Mike

    in reply to: landing page still showing header area with lines #1354994

    Hey virtualbis,
    Thanks for your question, in the admin sidebar of the page under Header visibility and transparency choose Hide Header on this page
    2022-06-12_005.jpg
    and in the color section choose At least 100% of Browser Window height and the Background Attachment should be Fixed because “Parallax” adds space for the Parallax effect.
    And lastly you had an empty column above the color section which added a white space, I removed this, now the color section and background is covering the full page, please clear your browser cache and check.

    Best regards,
    Mike

    Hey Eleina,
    Thanks for your question, for this example I created long team member descriptions and used css to make them hidden (the borders are only for reference):
    2022-06-12_003.jpg
    this is the css for the lightbox popup and to hide the team member descriptions:

    .white-popup {
        position: relative;
        background: #FFF;
        padding: 20px;
        width: auto;
        max-width: 500px;
        margin: 20px auto;
    }
    .white-popup .team-social {
        border: 7px solid rgba(0, 0, 0, 0.1);
        position: absolute;
        font-size: 19px;
        background: #fff;
        background: rgba(255, 255, 255, 0.7);
        opacity: 0;
        visibility: hidden;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        text-align: center;
        border-radius: 3px;
    }
    .avia-team-member .team-member-description {
    	visibility:hidden;
    }

    Then I added this code to the end of my child theme functions.php file in Appearance ▸ Editor:

    function clone_team_member_to_lightbox_popup() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
       $('.avia-team-member').each(function () {
            var copyTeam = $(this).clone().html();
    $(this).magnificPopup({
        items: {
            src: $('<div class="white-popup">'+copyTeam+'</div>'),
        },
        type: 'inline'
    });
    });
    })(jQuery);
    });
      </script>
      <?php
    }
    add_action('wp_footer', 'clone_team_member_to_lightbox_popup');

    Then on click the team member element opens in a lightbox with the team member description showing.
    2022-06-12_004.jpg
    *recommended css thanks to Guenni007 to have the team member image to the left and content to the right instead of below

    .mfp-content {
      display: inline-flex !important;
    }
    
    .white-popup {
      position: relative;
      background: #FFF;
      padding: 20px;
      width: auto;
      max-width: 800px;
      margin: 20px auto;
    }
    
    .white-popup .team-img-container {
      max-width: 300px;
      float: left;
      margin: 0 20px 10px 0
    }
    
    .white-popup .team-member-name,
    .white-popup .team-member-job-title,
    .white-popup .team-member-description  {
      width: 100%;
    }

    2022-08-17_001.jpg

    Best regards,
    Mike

    • This reply was modified 3 years, 3 months ago by Mike.
    in reply to: Newely added social icon not showing up #1354982

    Hey rootbranch,
    Thank you for your patience, I don’t think that your icon code is correct “uf1a0” because your page source code doesn’t have a “data-av_icon” for that one, please include an admin login in the Private Content area so we can examine the icon zip file that you uploaded and adjust the function, did you download the file from fontello?

    Best regards,
    Mike

    in reply to: How to make full-screen height element with imagemap #1354980

    Hey mackfoyt,
    Thank you for your patience, the ImageMapPro uses absolute position on the background container, so you will be limited because too much styling makes the map shapes move out of place.
    Please try this css in your Quick CSS:

    #domov > .container {
    	padding: 0;
    	display: block;
    }
    .imp-zoom-wrap {
        width: 90%;
        margin: auto;
    }

    After applying the css, please clear your browser cache and check.
    This is the expected results:
    2022-06-12_002.jpg

    Best regards,
    Mike

    in reply to: Broken buy product box #1354978

    Hi,
    Please link to your page so I can adjust for you, my shop demo is not showing this:
    2022-06-11_013.jpg

    Best regards,
    Mike

    Hi,
    This is the Enfold ▸ General Styling ▸ Quick CSS field that I spoke of, I add the css for you:
    2022-06-12_001.jpg
    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Disable paging for second blog element #1354971

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

    in reply to: Scrollable page, sideways #1354970

    Hi,
    For that page try this css:

    #top.page-id-38 .flex_column.avia-builder-el-2 {
    	 overflow: auto;
    }

    but on that page the color section that the table is in is hidden on mobile.
    If you have multiple tables on multiple pages then I recommend add a custom class to the column that the table is in, if you use the custom class “scroll-table” then you could use this css instead:

    #top .scroll-table {
    	 overflow: auto;
    }

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

    Best regards,
    Mike

    in reply to: Slide show image cut at the edge #1354950

    Hi,
    Unfortunately, it’s going to be cropped at some screen sizes if you want the image to be 100% height & width for all screen sizes.

    Best regards,
    Mike

    in reply to: blog page not working regularly #1354948

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

    in reply to: Enfold update crashes site #1354942

    Hi,
    Glad Rikard could 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

    in reply to: Link circle diameter smaller #1354940

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

    in reply to: blog page not working regularly #1354939

    Hi,
    Ok, I added this script to your functions.php for your blog page masonry items on mouse-over:

    function custom_script() { ?>
      <script>
    (function($){
      $("#top.page-id-259 .av-masonry-entry,#top.page-id-259 .av-masonry-entry img").hover(function(){
        $(this).removeAttr("title");
      });  
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_script');

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Link circle diameter smaller #1354935

    Hey schweg33,
    Thank you for the link to your site, Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #main .image-overlay.overlay-type-extern .image-overlay-inside:before {
        content: '\E832';
        font-family: 'entypo-fontello';
        height: 30px;
        width: 30px;
        line-height: 30px;
        margin: -15px 0 0 -15px;
    }

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

    Best regards,
    Mike

    in reply to: blog page not working regularly #1354934

    Hi,
    I have adjusted the metadata block and the “continua a leggere” text, but the mouse-over text is from the image title because the grid element is a link, we can not change the text but we can remove it, please let us know if you want to do this and check the other elements.

    Best regards,
    Mike

    in reply to: Broken buy product box #1354933

    Hey PonzioPilato,
    Thanks for your question, the background color and button color is dependent on your theme General Styling ▸ Color Scheme, the border and width of the variation label is because the table elements have changed in woocommerce after version 6.0.1
    2022-06-11_130622.jpg
    our Shop Demo site is still using woocommerce v3.1.1
    anyways try this css to adjust

    #top .variations th {
        padding: 4px 10px;
        border: none;
        vertical-align: top;
    }
    
    #top .variations th.label {
        width: 77px;
        text-align: center;
        text-transform: capitalize;
    }

    2022-06-11_013.jpg
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Scrollable page, sideways #1354928

    Hey DesignLena,
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    .flex_column.el_before_av_table {
    	 overflow: auto;
    }

    Best regards,
    Mike

    in reply to: distance top video and photo same #1354926

    Hi,
    Glad Nikko was 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

    in reply to: Support License #1354924

    Hi,
    Glad Yigit could 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

    in reply to: Cannot edit any pages #1354922

    Hi,
    Glad Nikko was 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

    in reply to: just installed Enfold – getting demo data error #1354921

    Hi,
    Your site seems down right now, please check:
    2022-06-11_009.jpg
    Are you using OVH Hosting?
    You can not FTP demo files they will not install, the demo files need to be imported with the WordPress import feature for .xml files
    Please see our documentation: How to manually import a theme demo
    But if you are using OVH Hosting see this post, note that he says:

    I tried several times, some tries were partially successful. In the end, it worked

    I recommend importing your demo on a localhost install and using the Duplicator plugin to migrate/clone it to your OVH host.

    Best regards,
    Mike

    in reply to: Disable paging for second blog element #1354919

    Hey onlylettersandnumbers,
    Thank you for your patience, I tried to recreate your issue with our latest version (v5), with a single item showing in a blog element with no pagination in a 1/3 column and 3 items showing in a 2/3 column with pagination.
    2022-06-11_005.jpg
    2022-06-11_006.jpg
    2022-06-11_007.jpg
    2022-06-11_0084a938f774c9bbd7c.jpg
    please check if your settings are the same and if so try updating to v5, I linked to my test page below.

    Best regards,
    Mike

    in reply to: blog page not working regularly #1354918

    Hi,
    I changed the css to this:

    .custom-masonry-cat,
    .av-post-metadata-category-link a {
    	 color: #719430;
    	 font-family: 'caveat';
    	 font-size: 16px;
    	 text-align: center;
         display: block;
         font-weight: 700;
         text-transform: uppercase;
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: function.php customization does not work after update #1354915

    Hey snorlachs,
    Thank you for the login, your script is looking to replace the source url of .logo > a > img
    but when you use a SVG logo there is no img tag it is a SVG tag and thre is no url it is a clippath because it has already been rendered:
    2022-06-11_004.jpg
    Try using png images instead of svg

    Best regards,
    Mike

    Hi,
    Glad to hear that you have this sorted out, and thanks for sharing your solution.
    Sorry for our delayed response, but 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 30 posts - 11,551 through 11,580 (of 34,910 total)