Forum Replies Created

Viewing 30 posts - 12,361 through 12,390 (of 34,867 total)
  • Author
    Posts
  • in reply to: Dropdown menu #1344859

    Hi,
    Sorry I see now that it displays as a list and not a dropdown, please try the plugin: Navigation menu as dropdown Widget

    Best regards,
    Mike

    in reply to: Completely remove entypo-fontello #1344811

    Hi,
    I tested with the function above and installed a new font with the Custom Font Manager with no issues. Try extracting your custom font zip file and rezip only the font file with no inner directories and extra files. For example, some custom fonts place the file in a zip inside the zip.

    Best regards,
    Mike

    in reply to: Favicon not showing up #1344809

    Hi,
    In this case your page is loading as https but the favicon is loading as http so the browser is blocking it as insecure (not https)
    if your whole site was loading as http it would be fine, so the solution was to place an “s” in your url
    2022-03-16_001.jpg
    I did this for you, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: header on the mobile horizontally #1344730

    Hi,
    Glad we were able to help with your issue in this thread. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Completely remove entypo-fontello #1344728

    Hi,
    I tested this filter at the top of my child theme functions.php and it worked correctly with no error in v4.9 in a new install

    // disable entypo-fontello 
    add_filter('avf_default_iconfont', function($icon_font) {
        return null;
    }, 10, 1);

    perhaps you have another customization causing a conflict.
    Please note that if you use this function you will not be able to use the Iconfont Manager in the theme options.

    Best regards,
    Mike

    in reply to: Horizontal gallery image caption #1344666

    Hi,
    It looks like someone enabled the Enlarge Active Image option that you didn’t want to use, so I disabled it and I added this css:

    @media only screen and (max-width: 767px){
    .responsive .av-horizontal-gallery-inner {
        position: static;
        min-height: 300px;
    }
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    I didn’t check if you can create the forms in other languages, but if you are not able to use it in your language I would recommend asking Mailchimp about this.
    I will put in a feature request to the Dev Team for adding a Tag integration, and reply here when I hear back from them.

    Best regards,
    Mike

    in reply to: Add Buttons to Top Bar #1344565

    Hi,
    Thanks for the login, I added a span around your phone number and this css:

    #header_meta .phone-info .phone {
    	line-height: 3em;
    }
    #top #wrap_all #header_meta .phone-info .top-right .avia-button {
    	margin-bottom: 0;
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: custom icons #1344561

    Hi,
    It depends on where you want to use them, for these buttons it was 30px, but the 1/3 column icons on your frontpage are 90px, you can make them larger and scale them down by setting the height & width in the css.

    Best regards,
    Mike

    Hi,
    Thanks for the link to the StackOverflow solution, but I don’t see a way to integrate this into our MailChimp element.
    I recommend creating a form on the MailChimp site using the Embedded form option from the dashboard and placing it in a code block element.
    To start click the Create icon at the top of the menu
    2022-03-15_001.jpg
    then the Embedded form option
    2022-03-15_002.jpg
    in the wizard you will see the Tags option
    2022-03-15_070815.jpg
    then complete your form and copy the code
    2022-03-15_005.jpg
    and add it to a code block element
    2022-03-15_006.jpg
    and when it is used the contact will be added to your list with the Tag
    2022-03-15_007.jpg
    Please give this a try.

    Best regards,
    Mike

    in reply to: Enfold portfolio question #1344548

    Hi,
    Please login to the support forum and open a new thread for help with these questions, you are using the Pre Sale Questions which is not the correct place for support questions.
    Please see our documentation about the Copyrights field

    Best regards,
    Mike

    in reply to: spacing between the texts in the list of icons #1344534

    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: Menu desktop problem with too many items. #1344391

    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: custom icons #1344390

    Hey sitibus,
    I assume that you have read our documentation about Adding your own Fontello or Flaticon Icons, you can create your own icons in SVG format single color only (black) and upload them to fontello which will convert them to a icon font which then can be imported to the Iconfont Manager.
    Your other option would be to create an image icon and use css to replace the current icon font in the button, like this:

    #top.page-id-1152 .avia_button_icon_left:before {
      content: url(https://img.icons8.com/fluency/30/000000/idea.png)!important;
    }
    #top.page-id-1152 .avia_iconbox_title {
    	top: -8px;
    }

    2022-03-14_001.jpg

    Best regards,
    Mike

    in reply to: spacing between the texts in the list of icons #1344388

    Hey sitibus,
    Thanks for the link to your site, for the icon list under VANTAGGI DELL’UTILIZZO DEL SISTEMA this css will give enough space for the icon animation, but you can adjust to suit.
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top.page-id-1141 .avia-icon-list-container.avia-builder-el-18 .av-iconlist-small li {
    	    min-height: 62px;
    }

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

    Best regards,
    Mike

    in reply to: Menu desktop problem with too many items. #1344387

    Hey orianos,
    Thanks for the link to your site, to force the mobile menu below 1300px, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    @media only screen and (max-width: 1300px) {
      #top #header .av-main-nav > li.menu-item  {
          display: none!important;
      }
      #top #header .av-burger-menu-main {
          cursor: pointer;
          display: block!important;
      }
    }

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

    Best regards,
    Mike

    in reply to: Different navigation on special page #1344382

    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: Search only in products #1344380

    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: Importing Demo #1344379

    Hi,
    Glad to hear that you have this sorted out, 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 portfolio question #1344325

    Hi,
    Sorry, the Image List doesn’t display the captions, please use the Gallery option.

    Best regards,
    Mike

    in reply to: Page titles now showing #1344324

    Hi,
    ok

    Best regards,
    Mike

    in reply to: CSS for EmbedPlus YouTube Plugin #1344323

    Hey Julio,
    Sorry that I was not clear how the page ID works, each page & post on your site has a page-id- or postid- in the body tag, which has the ID of Top, this is what the “scroll to the top” arrow points to, so this was not a custom class, when you want to make a css rule for a specific page or post you will want to use a page-id- or postid-
    Your new post ID is: postid-3940 so the new css would be:
    #top.postid-3940 .epyt-gallery-list {display:none;}
    Here is a good tutorial if you want to read more about this: How to Find Your WordPress Page ID and Post ID

    Best regards,
    Mike

    in reply to: Page titles now showing #1344320

    Hi,
    Ok, shall we close this then?

    Best regards,
    Mike

    in reply to: twitter feed via widget #1344318

    Hi,
    Thank you for your patience, your tweets are displayed for me when I disable my ad-blocker, I can post a screenshot if you wish.
    Try disabling any browser ad-blocker, cookie-blocker, or “don’t track me” options, if you are using Safari then this is built-in and on by default, Safari also blocks FB by default now.

    Best regards,
    Mike

    in reply to: Page titles now showing #1344316

    Hi,
    Glad we were able to help, did you sort out the directory structure for the child theme?
    Shall we close this then?

    Best regards,
    Mike

    in reply to: SIDEBAR ISSUE #1344312

    Hi,
    Sorry to hear that, but hopefully you will hear back from them soon. 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: Page titles now showing #1344310

    Hi,
    I see that your child theme directory structure is: sabai-directory/assets/templates/directory_listing_single_full.html.php but I believe it needs to be:
    /sabai/assets/templates/directory_listing_single_full.html.php
    As your title is right now it is in a text node and it would be better if it was in a div, so I changed your line 23 (in all places) to this: <div class="listing-title"><?php Sabai::_h($entity->getTitle());?></div> and now you can style the title like this:

    .listing-title {
    font-weight: 600;
    }

    Best regards,
    Mike

    in reply to: Vertical Slider/Grid with changing background image #1344308

    Hey Steffen,
    Thanks for the link to the demo, but I was not able to create this in the layerslider, I’m not that good with it. But I was able to get pretty close with html, css, & jQuery, I linked to an example in the Private Content area. To create this I used a color section with the min height set to 100% on a page with no sidebar and a transparent header, I then added a code block in the color section with this code in it:

    <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
    $('.image-main .nav-mainarea-item').bind('mouseover', function(){
        var myEm = $(this).attr('data-img');
        $('.image-main img').removeClass('is-visible');
        $('.image-main img[data-img = '+myEm+']').addClass('is-visible');
    });
    })(jQuery);
     });
    </script>
    <style>
    .nav-mainarea {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-wrap: wrap;
        z-index: 100;
    }
    .nav-mainarea .nav-mainarea-item {
    display: flex;
        transition: all .3s ease-out;
        width: 25%;
        height: 100%;
        border-right: 1px solid rgba(255,255,255,.5);
        padding: 30px;
        text-decoration: none;
    }
    .nav-mainarea .nav-mainarea-item .nav-mainarea-text {
        margin-top: auto;
        color: #000;
        transition: all .3s ease-out;
    }
    .nav-mainarea .nav-mainarea-item h2 {
        margin: 0;
        line-height: 1.6;
        color: #ca0202;
    }
    .nav-mainarea .nav-mainarea-item:hover .nav-mainarea-text {
        transform: translateY(-45vh);
        
    }
    .nav-mainarea .nav-mainarea-item:hover {
        text-decoration: none;
    }
    
    #top.page-id-3157 #av_section_1 > .container {
    	max-width: 2500px;
    	width: 100%;
    	padding: 0;
    }
    .image-main img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: none;
        opacity: 0;
        z-index: 1;
        object-fit: cover;
        object-position: center;
        width: 100%;
    }
    .image-main img.is-visible {
        opacity: 1;
        z-index: 1;
        display:block;
    }
    </style>
    
    <div class="image-main">
    <img class="nav is-visible" data-img="1" src="../wp-content/uploads/2022/03/PhotoRag_Metallic_Mood.jpg">
    <img class="nav" data-img="2" src="../wp-content/uploads/2022/03/RS171_Hahnemuehle__3_-lpr.jpg">
    <img class="nav" data-img="3" src="../wp-content/uploads/2022/03/Hahnemuehle_Notebook_Iconic_A5_Schwarz-black_and_taupe_mood_web.jpg">
    <img class="nav" data-img="4" src="../wp-content/uploads/2022/03/hfa_filtration.jpg">
    
    <div class="nav-mainarea">                                 
        <a class="nav-mainarea-item nav" data-img="1" href="#">
            <div class="nav-mainarea-text">
                
                        <h2>Digital FineArt</h2>
                    
                Turning images into Art
            </div>
        </a>
    
        <a class="nav-mainarea-item nav" data-img="2" href="#">
            <div class="nav-mainarea-text">
                
                        <h2>Artist Papers</h2>
                    
                The Art of Expression
            </div>
        </a>
    
        <a class="nav-mainarea-item nav" data-img="3" href="#">
            <div class="nav-mainarea-text">
                
                        <h2>Stationery</h2>
                    
                Notebooks & Writing Instruments
            </div>
        </a>
    
        <a class="nav-mainarea-item nav" data-img="4" href="#">
            <div class="nav-mainarea-text">
                
                        <h2>Filtration</h2>
                    
                Technical Applications
            </div>
        </a>             
    </div>
    </div>

    This code includes the html, css, & jQuery one in one, you will need to adjust the image urls to your images and if you want to add links. The background image changes on mouse-over.

    Best regards,
    Mike

    Hey Jason,
    Thanks for the links and the screenshots, I tested both sites in Chrome, Firefox, & Edge on Windows, and found in all cases the titles and video controls show up in all browsers. Please see the screenshot in the Private Content area.
    I also found that in both cases once the iframe for the individual videos were smaller than about 300×168 the titles and video controls are hidden, this is triggered by the media query @media (max-height: 119px),(max-width:79px) in the stylesheet https://f.vimeocdn.com/p/3.49.19/css/player.css from inside the iframe.
    I’m not sure if your client used different devices with different screen sizes or widow sizes, my test finds that these are the same across browsers when on the same device, and this is controlled by the stylesheet from inside the iframe that can not be overwritten, so we couldn’t change this even if we wanted to.
    I hope that I explained this well and will help you explain it to your client.

    Best regards,
    Mike

    in reply to: How to reduce with of images to 80%? #1344294

    Hi,
    To make the above solution work on the one page only please adjust to this:

    @media only screen and (max-width:767px) {
      #top.page-id-600 .av_one_third .avia-video {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 80%;
      }
    }

    Best regards,
    Mike

Viewing 30 posts - 12,361 through 12,390 (of 34,867 total)