Forum Replies Created

Viewing 30 posts - 12,241 through 12,270 (of 34,910 total)
  • Author
    Posts
  • 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

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

    .single-product .av-woo-purchase-button > .product_meta {
    	display: none;
    }

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

    Best regards,
    Mike

    in reply to: Table headline #1347010

    Hi,
    Thanks for the link to your site and the screenshot, please try this code in the General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    .avia-table-1 td:nth-of-type(1):before {
        color: #d20a11;
    }
    }

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

    Best regards,
    Mike

    in reply to: How to display portfolio items in modal box #1347008

    Hi,
    Thank you for sharing your solution, hopefully this will help other users.
    If you have any further solutions or questions please feel free to create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Google Chrome #1347007

    Hi,
    Thanks for the links and screenshots but I’m not able to reproduce this on the latest versions:
    Windows Chrome v100.0.4896.60 (Official Build) (64-bit)
    Mac Chrome v100.0.4896.60 (Official Build) (x86_64)

    I’m not sure why your version number is different, are you sure you’re not using version 99.0.4844.84?

    Best regards,
    Mike

    Hi,
    Please try as I have described above.

    Best regards,
    Mike

    Hi,
    How did you move it, did you overwrite the live site (v4.8.6.2) with the staging site (v4.9.2)?
    This can cause errors, try removing the v4.8.6.2 directory via ftp and then add the v4.9.2 directory.

    Best regards,
    Mike

    Hey ryhan,
    I have compared your staging site and your live site and I don’t see any difference, but I do note that your live site is not up-to-date, it is using Version: 4.8.6.2
    so if you moved the header from your staging site which is using Version: 4.9.2 to your live site that could be the issue, please update your live site.

    Best regards,
    Mike

    in reply to: Help with position of cart icon and search icon #1346999

    Hi,
    On your temp site that you originally linked to the cart is moved just before the social icons as your request, please see the screenshots above.
    On your new domain you have this added css that moves the cart to the other side of the page:

    .html_cart_at_menu.html_bottom_nav_header #menu-item-shop {
        right: 750px;
    }

    please remove this css and it will be like in the screenshot above.
    On your original site the cart icon clicks to the cart, but on your new domain you have mixed content warnings so try the plugin Really Simple SSL to correct.

    Best regards,
    Mike

    in reply to: inline_popup_enabler #1346997

    Hey nicoletaenache00,o
    Thanks for the login, you had the Disable jQuery Migrate option disabled in Enfold Theme Options ▸ Performance ▸ Change WordPress defaults jQuery Migrate needs to be active, I enabled, please check.

    Best regards,
    Mike

    in reply to: video controls #1346991

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

    #mep_0 .mejs-controls * {
        background: transparent !important;
        opacity: 0 !important;
    }

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

    Best regards,
    Mike

    in reply to: YouTube video and audio autoplay #1346987

    Hey Marco,
    Thank you for your question, you can not have an auto-playing video with sound, the video must have the sound off or not auto-play. This rule has been put in place by the major browsers, Safari & Chrome, and we follow it.
    Some plugins try to hack around this and the browsers try to break these with each update, so you could try one of these, but it is outside our support.
    You could also try using the layerslider with a video in it, at one time this worked, but note that eventually it will not.

    Best regards,
    Mike

    in reply to: put logo hover a video on home page #1346986

    Hey caledoman,
    Thanks for the link to your site, but I’m not sure that I understand what you want to do. I see that at the top you have a background video, and over it you have a text block and an image (logo), so do you want this logo to only show on hover?
    If so try this code in the General Styling ▸ Quick CSS field:

    .home .wp-image-1194 {
    	opacity: 0;
    }
    .home #full_slider_1:hover ~ #after_grid_row_1 .flex_column_table.sc-av_one_full .wp-image-1194,
    .home .flex_column_table.sc-av_one_full:hover .wp-image-1194 {
    	opacity: 1;
    }

    Best regards,
    Mike

    in reply to: Help with position of cart icon and search icon #1346984

    Hi,
    Thank you for the link to your site, to move the cart to the topbar Try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
        <script>
    (function($){
      $( ".cart_dropdown" ).appendTo( "#header_meta .container" );
      $( ".cart_dropdown_link" ).css({'line-height':'unset'});
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    the expected result for desktop is:
    2022-04-02_003.jpg
    and for mobile is:
    2022-04-02_004.jpg
    to hide the search icon for mobile try this code in the General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    	#header_main #menu-item-search {
    		opacity: 0;
    	}
    }

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

    Best regards,
    Mike

    in reply to: Absolute Sticky Sub Menu on Mobile Devices #1346983

    Hi,
    Thank you for your patience, I have checked the full-width sub-menu on these two pages in Windows in Chrome, Firefox, & Edge for mobile < 425px (your css is set to max-width: 620px) and it works in all browsers.

    page 1 – https://qc.pizza/menu/
    page 2 – https://qc.pizza/qc-pizza-minneapolis-menu/

    I also checked on an actual Android device with Chrome and on a Mac with Safari, Chrome, & Firefox.
    So I’m not able to duplicate your error of the non-sticky sub-menu in Chrome mobile, can you explain how you are testing and what device to are testing on?

    Best regards,
    Mike

    in reply to: WooCommerce Brands overview page #1346982

    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: Formatting Issue #1346981

    Hey anristudio,
    Thank you for the screenshots and login, this is a result of your Animate It! plugin Custom CSS field contains this rule:

    p {
        display: inline !important;
    }

    2022-04-02_002.jpg
    making all paragraph tags on your site inline instead of block
    If you have a specific paragraph that you want to force into inline then you need to add the parent class to this rule so to not disrupt all of the other paragraphs on your site. For example:

    .parent p {
        display: inline !important;
    }

    If you need help adjusting this please point to the specific paragraph you want inline

    Best regards,
    Mike

    in reply to: Make Upper Header Stick on Scroll #1346980

    Hi,
    The script above should work correctly for mobile only, just use this css instead of the css above:

    @media only screen and (max-width: 767px) { 
    #header_meta.sticky-top {
    	position:fixed!important;
    	top:0!important;
    	z-index:10000!important;
    	width: 100%;
    }
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Header Issues #1346978

    Hi,
    I just found another one of your threads for a different site where the social icons are not showing, could you be referring to this site linked below?

    Best regards,
    Mike

    in reply to: Header Issues #1346977

    Hi,
    Thanks for the screenshot, but when I checked on Windows in Chrome, Firefox, & Edge the icons showed for me, try clearing your browser cache, if you are using Safari follow these steps for Safari and note step 4 where you will Clear the History.
    2022-04-02_001.jpg

    Best regards,
    Mike

    in reply to: put Infos in a flyoutbox ?? #1346869

    Hi,
    Please see our documentation for Adding a header widget area.

    Best regards,
    Mike

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

    Hi,
    To make the background images full height add height: 100%; to the .image-main img rule.
    For mobile the original site changed the orintaion from vertical to horizontal to add this to your example replace the css above to this:

    @media (max-width:989px) {
    	.nav-mainarea {
    		max-height: 100vh;
    	}
        .nav-mainarea .nav-mainarea-item {
            width:100%;
            max-height: 25vh;
            padding-left: 30px
        }
        .nav-mainarea .nav-mainarea-item:hover .nav-mainarea-text {
            transform: translateX(15vw)
        }
    }
    @media (min-width: 990px) {
    	.nav-mainarea .nav-mainarea-item {
        width: 25%;
        height: 100%;
        padding: 30px;
    	}
    	.nav-mainarea .nav-mainarea-item:hover .nav-mainarea-text {
        transform: translateY(-45vh);
        
    }
    }
    .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;
        border-right: 1px solid rgba(255,255,255,.5);
        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 {
        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%;
        height: 100%;
    }
    .image-main img.is-visible {
        opacity: 1;
        z-index: 1;
        display:block;
    }
    .fade-in-image {
      animation: fadeIn 3s;
      -webkit-animation: fadeIn 3s;
      -moz-animation: fadeIn 3s;
      -o-animation: fadeIn 3s;
      -ms-animation: fadeIn 3s;
    }
    @keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }
    
    @-moz-keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }
    
    @-webkit-keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }
    
    @-o-keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }
    
    @-ms-keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }
    

    Best regards,
    Mike

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

    Hi,
    In the css above find this rule:

    .nav-mainarea .nav-mainarea-item:hover {
        text-decoration: none;
    }

    and change to this:

    .nav-mainarea .nav-mainarea-item:hover {
        text-decoration: none;
        background-color: rgb(128 128 128 / 45%);
    }
    

    adjust the color to suit.

    Best regards,
    Mike

    in reply to: Image Flip Box #1346784

    Hi,
    Glad Guenni007 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: Testimonial link element #1346782

    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: Vertical Slider/Grid with changing background image #1346740

    Hi,
    Thanks for the feedback I added a fadeIn keyframe set to 3 seconds to the code below, please give this a try.

    <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;
    }
    .fade-in-image {
      animation: fadeIn 3s;
      -webkit-animation: fadeIn 3s;
      -moz-animation: fadeIn 3s;
      -o-animation: fadeIn 3s;
      -ms-animation: fadeIn 3s;
    }
    @keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }
    
    @-moz-keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }
    
    @-webkit-keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }
    
    @-o-keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }
    
    @-ms-keyframes fadeIn {
      0% {opacity:0;}
      100% {opacity:1;}
    }
    </style>
    
    <div class="image-main">
    <img class="nav fade-in-image is-visible" data-img="1" src="../wp-content/uploads/2022/03/PhotoRag_Metallic_Mood.jpg">
    <img class="nav fade-in-image" data-img="2" src="../wp-content/uploads/2022/03/RS171_Hahnemuehle__3_-lpr.jpg">
    <img class="nav fade-in-image" data-img="3" src="../wp-content/uploads/2022/03/Hahnemuehle_Notebook_Iconic_A5_Schwarz-black_and_taupe_mood_web.jpg">
    <img class="nav fade-in-image" 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>

    Best regards,
    Mike

    in reply to: Blog posts disappeared #1346737

    Hi,
    Thanks for your feedback, but I have checked with the Events Calendar activated and Events Calendar Pro along with your woocommerce plugins and your six AIOSEO plugins and the post slider does show, so this points to one of the 12 “Give” plugins causing the conflict, please check your site and try enabling each of the 12 “Give” plugins individually to determine the conflict.

    Best regards,
    Mike

    in reply to: License key #1346678

    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: Unable to use wordpress admin #1346675

    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

    in reply to: Active menu / menu hover indicator dotted line #1346673

    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

Viewing 30 posts - 12,241 through 12,270 (of 34,910 total)