Forum Replies Created

Viewing 30 posts - 9,721 through 9,750 (of 10,428 total)
  • Author
    Posts
  • in reply to: Adding multiple google fonts to Enfold #578376

    Hey!

    You can try that it might work but using a child theme is a much better way to do this. Once you activate the child theme you can enter this code into theme via Appearance > Editor > functions.php

    Please refer to the link below to setup a child theme http://kriesi.at/documentation/enfold/using-a-child-theme/

    Cheers!
    Vinay Kashyap

    Hi!

    To make changes on hover you have to add custom CSS unfortunately we cannot see your site to let you know exactly what changes you need to do. If you like to play with it on your own just right click inspect element and style the classes you require to change on hover.

    Enable custom class theme support http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Try these links http://stackoverflow.com/questions/9266669/div-hover-background-color-change

    You can use a background overlay to darken or lighten the images and make the buttons will stand out.
    You can also try giving each color section a different overlay color.

    Best regards,
    Vinay Kashyap

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

    Hi!

    We will help you! There is one easy way you can make the elements on the admin page look large by zooming the webpage. or hold down the Ctrl key and move the mouse wheel to zoom in and zoom out.

    Adding css to child theme will not make any effect to the admin side.

    You have to edit wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/css/avia-media.css

    Please add the below code at the bottom

    
    .avia-modal-group-element-inner .avia_slideshow_image {
        width: 140px!important;
        height: 140px!important;
    }
    
    

    Cheers!
    Vinay Kashyap

    • This reply was modified 8 years, 9 months ago by Vinay.
    in reply to: Sub nav menu active links #577991

    Hey!

    Please try this css to get a underline

    
    .active-menu-item:before {
                content: '';
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                bottom: .5em;
                height: 2px;
                width: -0;
                background: red;
                transition: all 0.3s ease;
            }
    

    Best regards,
    Vinay Kashyap

    in reply to: Stop auto scroll #577990

    Hey!

    Not if you are using a child theme if not please create a child theme so all your custom code and changes remain intact when you update the theme.

    Please check this link for more info http://kriesi.at/documentation/enfold/using-a-child-theme/

    Regards,
    Vinay Kashyap

    in reply to: Lightbox overlay showing half-way #577988

    Hey!

    Glad we could help you with this. we really appreciate if you please rate our theme on themeforest :)

    Please feel free to get in touch with us if you have any questions.

    Thank you for using Enfold :)

    Cheers!
    Vinay Kashyap

    in reply to: One CSS rule applied to multiple DIVs #577987

    Hey!

    You are most welcome!

    We are always here to help you.

    To put it in other words use a class name with all the ID’s that has repeating CSS and move the repeating CSS to one common class name.

    Hope this help!

    Regards,
    Vinay Kashyap

    in reply to: Color section background video flicker #577945

    Hi!

    I checked the correct link (same link you mentioned in private) when i click the edit icon on the color section it still gives the same error I will ask one of my team members to have a look and keep you posted.

    Best regards,
    Vinay Kashyap

    in reply to: Tabs controller slide effect #577925

    Namaste Naitik!

    How are you ? I’m viewing the site on my desktop so I see the hotspot image you are refering to on the left however when i view the site in tablet view it shows above the word “regular” however when I click on hotspot nothing happens what you can do is add tooltip info for hotspots. Hotspots cannot be linked to a slider without a lot of customisation which is out of support scope.

    Please check our demo here http://kriesi.at/themes/enfold/shortcodes/images-with-hotspots/ we can help you setup the same way.

    Best regards,
    Vinay Kashyap

    in reply to: fullwidth submenu highlight active menu element #577902

    Hi Powtin!

    Ok! we will help you with this customisation :)

    Please add the below code at the bottom of functions.php

    
    //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
    }
    add_action('wp_head', 'activateMenuItem');
    

    Then add the below code in Enfold > General Styling > Quick CSS

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

    Regards,
    Vinay Kashyap

    in reply to: Specific height in color section #577895

    Hi!

    Please select “no padding” or “small” option from color section option

    Cheers!
    Vinay Kashyap

    Hey!

    Please add the below css in Enfold > general > Quick CSS

    
    /* Main menu active link */
    li.current-menu-item {
      /* ADD YOUR CSS STYLES FOR ACTIVE MENU HERE*/
    }
    

    Regards,
    Vinay Kashyap

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

    Hi!

    Sorry we cannot see any mockup you created please upload it to imgru.com and share the direct link please.

    1. is clear

    2. It’s not clear how you will slide the menu without hamburger menu but is this something you like the menu to look like in mobile ? http://graphitivity.com/instant-responsive-menus/demo/03-slide-menu/02-vertical/02-right.html

    If the above is correct please try a suitable plugin https://wordpress.org/plugins/search.php?q=slide+menu+

    Regards,
    Vinay Kashyap

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

    Hey!

    Sorry for the delay..
    we are working on your ticket please wait. We will update the results here soon.

    The images size should be a perfect square for it took like a perfect circle.

    Please create a new images size thats suits you well
    use this plugin https://wordpress.org/plugins/simple-image-sizes/installation/

    After you install it go to Settings > Media > Add new size

    Regenerate Thumbnails.

    Cheers!
    Vinay Kashyap

    • This reply was modified 8 years, 9 months ago by Vinay.
    in reply to: Stop auto scroll #577739

    Hey!

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

    Please check the website now we have commented the required js as stated above by Ismale and the page don’t scroll now when you click on tabs.

    Regards,
    Vinay Kashyap

    • This reply was modified 8 years, 9 months ago by Vinay.
    in reply to: How to change the default image size in a lightbox pop-up #577710

    Hi!

    We have update the site with the new code and everything looks good to me. Please check it out and let us know how you like it :)

    Below is the modified code in functions.php

    
    // lightbox fullsize
    function lightbox_fullsize(){
    ?>
    <script>
        jQuery(document).ready(function() {         
            jQuery('.avia-gallery-thumb').on('click',' a',function(){
                jQuery(document).find('.mfp-wrap figure img').css("max-height","");
            });  
            jQuery(document).on('click','.mfp-arrow',function(){
                setTimeout( function(){
                        jQuery(document).find('.mfp-wrap figure img').css("max-height","");                                   
                    }, 180); 
            });
        });
    
    </script>
    <?php
    }
    add_action('wp_head', 'lightbox_fullsize');
    

    Cheers!
    Vinay Kashyap

    Hey!


    @Guenni007
    thanks for sharing your tip :)


    @P3Systems
    , please share the admin login details in private content and permission to modify/add CSS so we can help you better.

    Cheers!
    Vinay

    in reply to: Color section background video flicker #577402

    Hi!

    When we try to check the options set in advance layout builder for the video section this is the screen that appears. May I know if the username you created have full administrator role ? It is possible one of the security plugins is blocking us from viewing the advance layout builder options for the color section or the Farb Section.

    Regards,
    Vinay

    • This reply was modified 8 years, 9 months ago by Vinay.
    in reply to: Lightbox overlay showing half-way #577396

    Hi jenlioness!

    Please check the site now we have fixed it with the below code in Enfold General Styling > Quick CSS

    
    
    /* Overlay Position*/
    .image-overlay {
        top: 0!important;
    }
    

    Cheers!
    Vinay

    in reply to: set a link from a blog post to a page or portfolio post #577364

    Hi!

    Please if you don’t mind create a new thread for new issues so we can relate to the original topics and not mix up issues in one ticket. That way we can help you better :)

    Cheers!
    Vinay

    in reply to: One CSS rule applied to multiple DIVs #577358

    Hi sitesme!

    You can do this enable class support to the theme elements http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Then add a common class to each ID

    #smallpad1 .common-styles
    #smallpad2 .common-styles
    #smallpad3 .common-styles
    #smallpad4 .common-styles

    Write your common class once

    .common-styles {
    margin-left: 1%;
    width: 24%;
    }

    If this is not what you need please send us a link to your site with mockup so we can help you better.

    Regards,
    Vinay

    • This reply was modified 8 years, 9 months ago by Vinay.
    in reply to: Arrow at the bottom of the page without animation #577357

    Hey!

    Glad we could help! if you have any questions please feel free to get in touch with us.

    Cheers!
    Vinay

    in reply to: Social Icons/ Button in the right of this header #577356

    Hi!

    The current structure of the elements will not allow you to do that easily using css please send us your admin login details with permission to add custom css so we can help you better.

    Cheers!
    Vinay

    in reply to: Sub nav menu active links #577326

    Hey!

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

    We have checked the menu and the menus are setup correctly.

    A modified js code is added to functions.php

    
    // Highlight one page nav
    
    function activateMenuItem(){
    ?>
    <script>
         jQuery(document).scroll(function() {
         	console.log('one page menu');
         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
    }
    add_action('wp_head', 'activateMenuItem');
    

    And the below css in quick css

    /* Your css styles for active menu item*/
    .active-menu-item {

    background:#dfdfdf!important;
    }

    The problem still exist only on this page mentioned in private because when the #ID was added the # was left out please see screenshot. However we have created a new menu called research in appearance > menu and linked that menu to the page.

    The issue seem to be in the page and only with 2 sections “Introduction” & “Features” please re-create check the #ID’s if you still have issue please re-create those sections on a draft page should fix the issue.

    Regards,
    Vinay

    • This reply was modified 8 years, 9 months ago by Vinay.
    in reply to: Image Quality in Masonry Grid/Portfolio Pages is Bad #577321

    Hey!

    Glad you found a work around. please feel free to get in touch with us if you have any questions.

    Thank you for using Enfold :)

    Cheers!
    Vinay

    in reply to: Issue with Image Hotspots Flickering #577315

    Hey mdehart1!

    Thank you for making the video :) Something has messed with the tooltip position hence on hover the tooltip comes in between mouse and the hotspot and the browser thinks the mouse is off the hotspot and cancel the hover state.

    Please use this css in Enfold > General Styling Quick CSS

    
    .avia-tooltip {
        margin-top: -70px!important;
    }
    

    Cheers!
    Vinay

    • This reply was modified 8 years, 9 months ago by Vinay.
    in reply to: Help with new header style #577298

    Hi!

    Please add the below code to change the container width

    
    .container {
        max-width: 1310px!important;
    }
    

    Best regards,
    Vinay

    in reply to: .av_header_transparency nav.main_menu … 100% width #577295

    Hi Ken!

    To expand the menu bar please add this code to Enfold > General Styling > Quick CSS

    
    /* Container width */
    
    .container.av-logo-container{
       max-width: 100%!important;
       width: 100%!important;
    }
    

    If you still have issues please get back to us with a link to your site and a mockup so we can help you better.

    Cheers!
    Vinay

    • This reply was modified 8 years, 9 months ago by Vinay.
    in reply to: ERROR #577292

    Hi aiepro!

    Please give us more details.
    When did this issue start? Did you install any plugins or made any changes to specific files?

    This usually happens when there is a conflict in js files with a plugin. Please deactivate all plugins and refresh the page. If you do not see the error go ahead and activate the plugins one by one to find the plugin in conflict.

    Best regards,
    Vinay

    in reply to: SOCIAL SHARING IN ALBUM/GALLERY #577287

    Hi!

    Customizing the theme to do what you are asking for is out of our support scope. but you can try a plugin like https://wordpress.org/plugins/wwm-social-share-on-image-hover/

    Cheers!
    Vinay

    • This reply was modified 8 years, 9 months ago by Vinay.
Viewing 30 posts - 9,721 through 9,750 (of 10,428 total)