Forum Replies Created

Viewing 30 posts - 9,481 through 9,510 (of 10,428 total)
  • Author
    Posts
  • in reply to: theme Enfold: every side different background? #584041

    Hey!

    Glad you got the slider issue resolved :)
    Please provide a link to your site so we can inspect the element in question it will be easier to tell you what is causing the blur in the logo.

    Best regards,
    Vinay Kashyap

    • This reply was modified 8 years, 8 months ago by Vinay.
    in reply to: Separators size #584035

    Hi!

    Yes you can create custom separators and use it at a later stage.

    The result will look like the screenshot below

    To do so you need to enable custom class support for the theme as mentioned in this link http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    After you enable it you can add different class names such as separator-1, separator-2, separator-3 and separator-4 to the short separator in Advance Layout builder.

    
    /*Separator Styles*/
    .separator-1 .hr-inner-style {
        border: 1px solid #bab3ba!important;
        background: #fff!important;
    }
     
    .separator-2 .hr-inner-style {
        border: 1px solid #bab3ba!important;
        background: #fff!important;    
    }
    .separator-2  .hr-inner {
        width: 50%!important;
        left: 50%;
        margin-left: 0!important;
        transform:translateX(-50%);
    }
     
    .separator-2 .hr-inner-style {
        border: 1px solid #bab3ba!important;
        background: #fff!important;    
    }
    .separator-3  .hr-inner {
        width: 100%!important;
        left: 50%;
        margin-left: 0!important;
        transform:translateX(-50%);
    }
     
    .separator-4 .hr-inner-style {
        border: 1px solid #bab3ba!important;
        background: #fff!important;
        width:20px;
        height:20px;
        top:-5px;
    }

    Cheers!
    Vinay Kashyap

    • This reply was modified 8 years, 8 months ago by Vinay.
    in reply to: Enfold – drop down menu #583972

    Hey!

    You don’t need to do anything apart from adding the submenus in Appearance > menu and the submenu will show up like it is in your example link.

    Best regards,
    Vinay Kashyap

    Hey!

    The code works! We added it in quick CSS :)

    Regards,
    Vinay Kashyap

    in reply to: I need a Portfolio for Media Library Elements #583951

    Hi!

    Currently you can do that with a 3rd party plugin but if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/

    Cheers!
    Vinay Kashyap

    Hi!

    Great! Please add the below code for space after the © symbol add it 2 or 3 times if you like more space

    
     
    

    Cheers!
    Vinay Kashyap

    in reply to: Masonry Gallery Loads after scrolling past it #583941

    Hey!

    Glad we could help :)

    Best regards,
    Vinay Kashyap

    in reply to: upload font #583940

    Hey!

    Not quite sure what is causing this… please use the plugin mentioned earlier and let us know if it works with the plugin fine.

    Best regards,
    Vinay Kashyap

    in reply to: Footer menu #583939

    Hey!

    We have added the below code to quick css and centered the footer. Since you have another ticket open for the product details we will close this ticket. Let us know if everything is fine now :)

    /*Center the footer */
    .menu-footer-container {
        display: inline-block!important;
        position:relative;
        left:50%;
        transform:translateX(-50%);
    }

    Cheers!
    Vinay Kashyap

    in reply to: Urgent: No More Transparent Header #583931

    Hi!

    If you like to edit the js for the header please goto wp-content\themes\enfold\js\avia.js and search for .av_header_transparency
    and you can find most of the css in wp-content\themes\enfold\css\layout.css

    Cheers!
    Vinay Kashyap

    in reply to: Ajax portfolio hover to view #583905

    Hi!

    Please check the link now everything look good on my end :)

    Best regards,
    Vinay Kashyap

    in reply to: On the menu, how can I add two different colored buttons? #583818

    Hi M|C!

    It can be done from Appearance > Menu > Expand the menu item and select an option from “Menu Style”

    Cheers!
    Vinay Kashyap

    in reply to: Icons not showing (data-av_icon empty) #583812

    Hi!

    Glad this issue is sorted :)
    If you have more questions please feel free to get in touch with us.

    Regards,
    Vinay Kashyap

    in reply to: Disable author and category links below posts #583809

    Hi!

    Sure, what is the link to the page where we can see the element in question :)

    Regards,
    Vinay Kashyap

    in reply to: Theme Enfold: logo in slider should stay in the same size #583806

    Hi web4youberlin!

    Please share the link to your site so we can inspect the element in question and let you know the best suggestions to resolve the issue.

    Best regards,
    Vinay Kashyap

    in reply to: Footer menu #583805

    Hey!

    We need to take a closer look to see what is causing the footer to float left always please create a temporary user with ‘administrator’ role and share in private content with permission to deactivate all plugins and add custom code if necessary to help you better.

    Regards,
    Vinay Kashyap

    in reply to: How to embed a gumroad product in a table buy button? #583800

    Hey DROR!

    Please share the link to the page where you want to insert the gumroad product link.

    Regards,
    Vinay Kashyap

    in reply to: Current Menu Item in Full Width Sub Menu #583796

    Hi!

    To highlight the fullwidth submenu on same page while scrolling please add the below code to functions.php file

    
    //One page nav highlight
     
    function activateMenuItem(){
    ?>
    <script>
         jQuery(document).scroll(function() {
         var sections = jQuery('.avia-section'),
             menu   = jQuery('.av-submenu-container'),        
             nav_height = menu.outerHeight();
             jQuery(window).on('scroll', function() {
                var cur_pos = jQuery(this).scrollTop();
                sections.each(function() {
                    var top = jQuery(this).offset().top - 300,
                        bottom = top + jQuery(this).outerHeight();
                    if (cur_pos >= top && cur_pos <= bottom) {
                        menu.find('a').removeClass('active-menu-item');                    
                        menu.find('a[href="#' + jQuery(this).attr('id') + '"]').addClass('active-menu-item');
                    }
                });
            });
        });
     
    </script>
    <?php
    }
    

    Then add your own highlight style

    
    /* Your css styles for active menu item*/
    .current_page_item .avia-menu-text, .active-menu-item {
      background:gold!important;
    }
    

    Cheers!
    Vinay Kashyap

    • This reply was modified 8 years, 8 months ago by Vinay.
    in reply to: Mobile resizing not working properly #583792

    Hey Ivana!

    There could be several reasons why it is doing that. I strongly feel it is custom css but before that another common reason is conflict with plugins. To find if any of the plugin is in conflict please follow the below steps

    1. Goto plugins page > Deactivate all active Plugins
    2. Updated WordPress and Enfold to latest version if you have not.
    3. Activate one plugin at a time… refresh the page and check for the issue.
    4. Make sure the plugins are all updated

    If you don’t have any luck with that please create a temporary user with ‘administrator’ role and share in private content with permission to deactivate all plugins and add custom code if necessary to help you better.

    Cheers!
    Vinay Kashyap

    in reply to: upload font #583789

    Hey!

    Please try it without the ”

    
    h3 {
    font-family: washington_textregular !important;
    }

    If you still have issues please use this plugin https://wordpress.org/plugins/use-any-font/

    Regards,
    Vinay Kashyap

    in reply to: Masonry Gallery Loads after scrolling past it #583781

    Hi!

    We are working on your ticket please wait while we update the results here soon.

    Not sure what exactly caused it but after changing the number of image it works fine now.

    Please re-generate the thumbnails.

    Cheers!
    Vinay Kashyap

    • This reply was modified 8 years, 8 months ago by Vinay.
    in reply to: Can't Add Social Icons to Widget in Footer #583775

    Hey!

    To make the icons rounded please use the below css

    .social_bookmarks li {
    	border-radius: 100px;
    }

    If you have any issues please get back to us with the link to your site.

    Best regards,
    Vinay Kashyap

    • This reply was modified 8 years, 8 months ago by Vinay.

    Hi wmg2013!

    You need to create a child theme and edit the footer.php file and add the below code where you need the date to show dynamically.

    <?php echo date(‘Y’); ?>

    or use a plugin https://wordpress.org/plugins/search.php?q=Copyright

    Regards,
    Vinay Kashyap

    in reply to: Mega Menu Forget Nav Location #583765

    Hey!

    Glad you got it fixed! Please feel free to get in touch with us if you have any questions.
    Thank you for using Enfold :)

    Regards,
    Vinay Kashyap

    in reply to: Info on selecting link via attribut #583764

    Hey Guenter!

    Thanks for sharing your tips here :)
    We really appreciate it!

    Best regards,
    Vinay Kashyap

    in reply to: Add field to product page #583714

    Hey arranch!

    It will be a lot of custom work to edit the woocommerce product page instead use a plugin like https://wordpress.org/plugins/yith-woocommerce-advanced-reviews/

    https://wordpress.org/plugins/search.php?q=woocommerce+testimonial

    To hide the product catogery please add the below code to Enfold > General Styling > Quick CSS

    .single-product .product_meta .posted_in {
    	display: none !important;
    }
    

    Best regards,
    Vinay Kashyap

    • This reply was modified 8 years, 8 months ago by Vinay.
    in reply to: I need a Portfolio for Media Library Elements #583702

    Hi nicolasweh!

    Have you tried the Advance layout Builder > Content Elements > Portfolio Grid
    It gives you the ability to opens images in Lightbox or Ajax and also the sort options.

    Example

    It will be a lot of custom work to add sort option to media elements instead use a 3rd part plugin like the NextGen Gallery http://wordpress.org/plugins/nextgen-gallery/ and install http://wordpress.org/plugins/nextgen-gallery-powertags/

    Hope this helps.

    Cheers!
    Vinay Kashyap

    • This reply was modified 8 years, 8 months ago by Vinay.
    in reply to: Hover on images not working #583695

    Hey!

    We can see the element in question now. Is this the heading we are talking about?

    “LATEST VIDEO: MISSING FLASHING LEADS TO MOISTURE ISSUES”

    If it worked on one page for you it should work on homepage as well unless some js has a conflict only on the homepage the hover icon should show and the light box should open. To find if any of the plugin is in conflict please follow the steps below

    1. Goto plugins page > Deactivate all active Plugins
    2. Updated WordPress and Enfold to latest version if you have not.
    3. Activate one plugin at a time… refresh the page and check for the issue.
    4. Make sure the plugins are all updated

    If that don’t resolve the issue please create a temporary user with ‘administrator’ role and share in private content with permission to deactivate all plugins and add custom code if necessary so we can take a closer look.

    Cheers!
    Vinay Kashyap

    in reply to: Image upload issues #583645

    Hey!

    We uploaded the image you provided and checked for the issue with the images you mentioned everything looks fine. When i click on the image it takes me to the edit options which looks fine as well…

    Please clear cache on your browser and check again.

    Best regards,
    Vinay Kashyap

    in reply to: Image upload issues #583639

    Hi!

    We are working on your ticket please wait while we update the results here soon.

    Best regards,
    Vinay Kashyap

Viewing 30 posts - 9,481 through 9,510 (of 10,428 total)