Forum Replies Created

Viewing 30 posts - 14,971 through 15,000 (of 25,536 total)
  • Author
    Posts
  • in reply to: Color Section Diagonal Border #1035162

    Hi Stephanie,

    I couldn’t see this on my end.
    Can you tell us the height and width of your screen? so we may try to adjust our screens the same with what you have.

    Best regards,
    Nikko

    in reply to: You tube video embed problem #1035160

    Hey madmanbean,

    This won’t work as only background images can only fill that column, if there’s a background video option that would also cover it unfortunately, we don’t have that option.
    I would suggest instead to using a color section and have a background video however it’s not applicable for the layout you wanted.

    Best regards,
    Nikko

    in reply to: function remove_title_attr #1035153

    Hi czar,

    I have modified your code in Remove title attributes which you added in Snippets to:

    function remove_title_attr(){
    	?>
    	<script>
    	document.addEventListener("DOMContentLoaded", function(event) {
    		var links = document.querySelectorAll("#wrap_all a"),
    			images = document.querySelectorAll("#wrap_all img");
    
    		[].forEach.call(images, function(image) {
    			image.removeAttribute('title');
    		});
    
    		[].forEach.call(links, function(link) {
    			link.removeAttribute('title');
    		});
    
    
        });
    	</script>
    	<?php
    }
    add_action('wp_footer', 'remove_title_attr');

    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: CSS customizations #1035142

    Hey P3T3R_0ne,

    1. Can you give us an example? probably a screenshot that also shows the web inspector where we can see the custom css class being applied then tell us some elements you add and another screenshot which shows that the custom css class isn’t working anymore.
    2. Quick CSS is an internal stylesheet while child theme css is an external stylesheet, browsers caches external stylesheets so when you access the same site it’s much faster since the css that are loaded are from browser cache, while it has its positive effects, the negative thing is that if there are changes in these css files it isn’t fetched. You can use hard refresh to force the browser to fetch the new css, this is done by pressing ctrl + f5.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Mobile header image size #1035137

    Hi,

    Try adding this code at the bottom of your functions.php:

    function add_menu_text(){
    ?>
    <script>
    $( document ).ready(function() {
    	var el = $( "#avia-menu .av-burger-menu-main a" ),
    		text = '<span class="av-burger-text">Menu</span>';
    
    		el.prepend(text);
    });
    </script>
    <?php
    }
    
    add_action('wp_head', 'add_menu_text');

    Then in Quick CSS, located in the WP Dashboard, Enfold > General Styling add this css code:

    #avia-menu .av-burger-menu-main span.av-burger-text {
        font-size: 24px;
    }
    
    .html_av-overlay-side #top #header .avia-menu.av-main-nav-wrap {
        text-align: right;
    }

    Just adjust the font size as you see fit.

    Best regards,
    Nikko

    in reply to: Avia Advanced Editor Loading Screen Error #1035131

    Hi ilkerkabadayi,

    Can you create a test page? where we can see it.
    Also try switching to a default wordpress theme and try if it works, if it does try also to use default editor with Enfold and check if it also works there or probably through widgets.

    Best regards,
    Nikko

    in reply to: Advanced Layer Slider Line Height Not Working #1035124

    Hey Stephanie,

    Thanks for giving us admin access, unfortunately the line-height isn’t working properly in layerslider.
    I have added an id for that layer/text: layerslider-subheading.
    In Quick CSS, located in Enfold > General Styling I have added this css code:

    #top .avia-layerslider #layerslider-subheading .line {
        line-height: 1.4;
    }

    Just adjust the line-height property as you see fit :)

    Best regards,
    Nikko

    Hi Rgrant74,

    Can you create a separate thread? and give us admin access on your site on that thread and post the credentials in Private Content, so it’s only visible to the thread creator and the moderators.
    Also please post a link to this thread on the thread you will create, so we can use as a reference.

    Best regards,
    Nikko

    in reply to: Plugin conflict??? #1035116

    Hi Nora,

    I have checked this both on Chrome and Firefox.
    Seems good on chrome but not on firefox.
    Also I have modified your links from http://yoursite.com/#vision to just /#vision since you have a one page website, so clicking the link doesn’t refresh the page but just scrolls to the proper section.
    I also added a page preloader since there are a lot of things on your homepage, after doing these things in firefox it seems to be working properly on my end.

    Best regards,
    Nikko

    in reply to: LayerSlider #1035109

    Hi Nora,

    Glad to hear that. :)
    Will be checking out your other thread if it isn’t answered yet.

    Best regards,
    Nikko

    in reply to: Regarding reducing margin padding for custom footer page #1035108

    Hi ragu5,

    Thanks for giving us admin access.
    I have added this css code in Quick CSS (located in Enfold > General Styling):

    #top #main > .container_wrap:nth-last-child(2) .content {
      padding-top: 10px;
      padding-bottom: 10px;
    }

    which works on all pages.
    Also I have disabled css merging and compression in Enfold > Performance, since changes I made doesn’t seem to take effect or probably cached.

    Best regards,
    Nikko

    in reply to: LayerSlider #1035097

    Hi NoraGTS,

    Where can we see this? I see 2 layersliders on your homepage and there are no spaces, have you fixed it already?
    I think the space might be from after_layer_slider content that follows after the layerslider.
    It is important since it wraps any element you put after layerslider if it’s not wrapped in some Layout Element.
    If it’s causing unecessary spaces, you can try adding this in Quick CSS:

    #after_layer_slider_1 {
        display: none;
    }

    Best regards,
    Nikko

    in reply to: Image Hover effect not working #1035089

    Hi VizuallElisa,

    Thanks, I have tested this on my end and get the same results, glad that you found this minor bug, I’ll be reporting this to Kriesi and our devs.
    For now as a temporary solution, I have added this css code in Quick CSS (located in Enfold > General Styling):

    .av-hover-grow {
        overflow: hidden;
    }
    
    .av-hover-grow img {
        -webkit-transition: all 1.7s cubic-bezier(0.230,1.000,0.320,1.000);
        transition: all 1.7s cubic-bezier(0.230,1.000,0.320,1.000)
    }
    
    .av-hover-grow:hover img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    Also I have disabled css merging and compression in Enfold > Performance as the changes isn’t taking effect on your end if it’s enabled though it still works on my end.

    Best regards,
    Nikko

    in reply to: Huge, Massive, UX problem with Custom Footer Page #1034507

    Hey Heathcliffe,

    Can you give us a link to your site? showing the issue so we can take a closer look.

    Best regards,
    Nikko

    in reply to: H1 not showing properly in IE #1034505

    Hey whdsolutions,

    What IE version are you using? and can you give us a screenshot?

    Best regards,
    Nikko

    in reply to: Centering Product Purchase Button #1034504

    Hi jbassino,

    I have checked Show element options for developers in Enfold > Layout Builder.
    Then added 1/1 Column and in Custom CSS Class, I added this value: .center-section then added a Product Purchase button inside the column.
    Then in Quick CSS located in Enfold > General Styling, I added:

    #top .center-section form.cart,
    #top .center-section .av-woo-purchase-button {
        text-align: center;
    }
    
    #top .center-section form.cart .button {
        float: none;
    }

    Let us know if this helps.

    Best regards,
    Nikko

    in reply to: Page Template breaks normal layout… #1034500

    Hi 5ivecanons,

    Can you give us a link to your site? so we can take a closer look and try to inspect it.
    You can post the link in private content if you want it to be visible only to the moderators.

    Best regards,
    Nikko

    in reply to: Masonry Gallery Lightbox Not Working #1034403

    Hi abparenteau,

    Glad that Rikard helped you :)
    Updates doesn’t really change your settings since it’s saved in the database, and updates only touches the files but not settings.
    Let us know if you need further assistance or if we can close this thread.

    Best regards,
    Nikko

    in reply to: Can't update from older version #1034401

    Hey marcusk77,

    Can you give us admin and ftp access?
    Just post the credentials in private content, so it’s only visible to the moderators.

    Best regards,
    Nikko

    in reply to: Enfold 4.5 sale price not showing or being used #1034399

    Hi pathaug,

    Glad to hear that :)
    Feel free to comeback if you need further assistance.
    Thanks for using Enfold and have a great weekend!

    Best regards,
    Nikko

    in reply to: check out page-state code tax problem #1034397

    Hi pathaug,

    Glad to you have figured out what causes the issue.
    Feel free to comeback if you need further assistance.
    Thanks for using Enfold and have a great weekend!

    Best regards,
    Nikko

    in reply to: Lightbox not working #1034396

    Hey codecreative,

    I have checked your site and it seems you are using a child theme.
    If you have a customized header.php, try updating it to the header.php of Enfold (parent theme) since there are lots of changes there in the new version.

    Best regards,
    Nikko

    in reply to: Image Hover effect not working #1034391

    Hey VizuallElisa,

    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: Regarding reducing margin padding for custom footer page #1034390

    Hey ragu5,

    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: LayerSlider #1034388

    Hi NoraGTS,

    That’s because you have used a shortcode and inserted it in a Text Block.
    Try using Layerslider under Media Elements: https://imgur.com/a/kKCjTEP
    Let us know if this helps.

    Best regards,
    Nikko

    in reply to: Logo Icon (hamburger) left, logo center #1034377

    Hi grafixstudio,

    Glad that we could help you :)
    Feel free to comeback if you need further assistance.
    Thanks for using Enfold and have a great weekend!

    Best regards,
    Nikko

    in reply to: Images open in new tab instead of lightbox #1034376

    Hi michaelH,

    Glad to hear that it works :)

    Regards,
    Nikko

    in reply to: Lightbox is not working anymore #1034374

    Hi michaelH,

    Glad that we could help :)
    Maybe it was just caching that’s why it didn’t work in the first checking.

    Best regards,
    Nikko

    in reply to: Enfold Custom Post Type and Masonry/blog elements #1034372

    Hi acscreativenew,

    Thanks, I see it now, however since the elements you are using requires custom category/taxonomy I can only say the easiest way to do this is to create a taxonomy/category so that you can use it.
    Another way to do this is to create your own Advanced Layout Builder Element, basically you just copy from the element that you want to use then modify it to remove taxonomy/category, however this is a bit complicated and would require some time to do and testing, which is outside the scope of our support, the only thing we can do for now is to point you on the right direction, you can find the instructions on how to do this in the documentation: https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#add-elements-to-alb

    Best regards,
    Nikko

    in reply to: Mobile Breakting Point #1034366

    Hi Esther,

    I see, that option only works for Top Header and not for Left Sidebar and Right Sidebar.
    Try to place the code I gave you with:

    @media only screen and (max-width: 1366px) and (min-width: 768px) {
        html.html_header_sidebar #wrap_all {
            background-color: white;
        }
    
        .responsive.html_header_left #main {
            margin-left: 0;
        }
    
        .responsive #top #wrap_all #header {
            position: relative;
            width: 100%;
            float: none;
            height: auto;
            margin: 0 !important;
            opacity: 1;
            min-height: 0;
        }
    
        .responsive #top #wrap_all .av-logo-container {
            padding: 0;
        }
    
        .responsive #top #header_main > .container .main_menu .av-main-nav > li > a, .responsive #top #wrap_all .av-logo-container {
            height: 80px;
            line-height: 80px;
        }
    
        .responsive #top #wrap_all .container {
            width: 85%;
            max-width: 85%;
            margin: 0 auto;
            padding-left: 0;
            padding-right: 0;
            float: none;
        }
    
        .responsive #header_main .container {
            height: auto !important;
        }
    
        .responsive #top .logo {
            position: static;
            display: table;
            height: 80px !important;
            float: none;
            padding: 0;
            border: none;
            width: 80%;
        }
    
        .responsive .logo a {
            display: table-cell;
            vertical-align: middle;
        }
    
        .responsive .logo img {
            height: auto !important;
            width: auto;
            max-width: 100%;
            display: block;
            max-height: 80px;
            margin: 0;
        }
    
        .responsive #top #wrap_all .main_menu {
            top: 0;
            height: 80px;
            left: auto;
            right: 0;
            display: block;
            position: absolute;
        }
    
        .responsive #top .av-logo-container .avia-menu {
            height: 100%;
        }
    
        .responsive #top .av-main-nav .menu-item {
            display: none;
        }
    
        .responsive #top .av-main-nav .menu-item-avia-special {
            display: block;
        }
    }

    I have tested this on my end, it should work on yours as well if there’s no conflict in css code.
    Let us know if this helps.

    Best regards,
    Nikko

Viewing 30 posts - 14,971 through 15,000 (of 25,536 total)