Forum Replies Created

Viewing 30 posts - 5,971 through 6,000 (of 10,428 total)
  • Author
    Posts
  • in reply to: Enfold doesn't seem to be displaying properly in IE 11 #664361

    Hey steffen_aufatz,

    sorry for the delay, thank you for the screenshots. I checked the theme in IE 11 and it appears there is an issue with the CSS. If any custom CSS was added in child theme or in Quick CSS, please remove it and check if the issue persists in IE 11. If it still does we need to take a closer look at the setup. Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins and add custom code if necessary.

    Best regards,
    Vinay

    in reply to: avia layout builder taking a long time to load #663894

    Hi,

    I tried to troubleshoot this issue but the login credentials you provided do not work for me. Would you mind checking once again and then send us working login credentials?

    The user role for the account you send us should be set to ‘administrator’ so we can try to disable all plugins and add custom code (if necessary) to resolve the issue.

    Best regards,
    Vinay

    in reply to: Masonry Element is Not Working #663891

    Hi,

    There are 0 post in the selected catogery. Please add post to “Devices & Applications” and the masonry should display fine.

    Best regards,
    Vinay

    in reply to: How to change Add to Cart Button text to BUY NOW #663866

    Hey sambo258,

    Please try adding this at the very end of your themes / child themes functions.php file:

    // Change text
    function custom_wootxt(){
    ?>
    <script>
    jQuery(window).load(function(){
        jQuery('.single-product').each(function() {
         	jQuery(".single_add_to_cart_button").text("BUY NOW");
        });
    });
    

    Best regards,
    Vinay

    in reply to: Add a new button style #663762

    Hi,

    An easy way to do this would be to enable custom css class name support for builder elements and use custom css to target them. http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Or if you like to target all buttons on the site use the below css class names with your custom css styles.

    .avia-button{
    /*button style*/
    }
    
    .avia-button:hover{
    /*button hover style*/
    }

    Let us know if you have any questions.

    Best regards,
    Vinay

    in reply to: Equal Pics and color on mousse over #663748

    Hey gzelasco,

    Add a masonry gallery and in the gallery options select “No gap” for “Gap between elements”.

    To add a images effect on hover Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    
    .av-masonry-image-container img {
    	filter: grayscale(100%);
        -webkit-filter: grayscale(100%); 
        filter: gray;
        -webkit-transition: all .6s ease; }
    
    .av-masonry-image-container img:hover {    
    	filter: grayscale(0%);
        -webkit-filter: grayscale(0%);
        filter: none; }
    }
    
    

    Best regards,
    Vinay

    in reply to: phone number cut off by social media icons on tablet #663741

    Hey sundara88,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 767px) {
    div#header_meta.container_wrap.container_wrap_meta {
        min-height: 80px;
        padding-top: 10px;
    }}
    

    Best regards,
    Vinay

    in reply to: failed to change from the default demo to shop demo #663739

    Hey YongyanLi,

    Please make sure the theme is updated to the latest version 3.6.1 deactivate all activate plugins and try to import again.

    if that don’t help try defining a higher memory limit in wordpress and if possible increasing the memory on the hosting server should resolve this issue.

    To increase the wordpress memory limit please access wp-config.php file and add the below line

    define('WP_MEMORY_LIMIT', '256M');
    

    For a detailed explaination please check this link http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
    Or you can contact your service provider and they can do it for you.

    Best regards,
    Vinay

    in reply to: Unable to access website since update #663737

    Hey hashimalimalik,

    Would you mind providing a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)

    Best regards,
    Vinay

    in reply to: Visual Composer code showing on page #663734

    Hey Melaniegray92,

    After the line “AWESOME! YOU CAN DOWNLOAD YOUR FREE EBOOK HERE” there were two closing tags ” >> ” please use ascii value & # 06 2 ;(without space) instead of arrows which will close the tag’s.

    http://www.ascii.cl/htmlcodes.htm

    Best regards,
    Vinay

    • This reply was modified 9 years, 6 months ago by Vinay.
    in reply to: Invalid e-mail adress #663729

    Hi,

    Glad it’s sorted :) To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold :)

    Best regards,
    Vinay

    in reply to: Unable to upload any media #663728

    Hi,

    Ok, we will keep this ticket open in case you need any help on this issue feel free to get in touch with us.

    Thank you for using Enfold :)

    Best regards,
    Vinay

    in reply to: Portfolio should be smaller on the smartphone #663727

    Hey August,

    The portfolio elements adjust to the screen width automatically and becomes one col in mobile devices. Please elaborate what you are trying to achieve if possible Would you mind posting us a screenshot/mockup of what you would like to achieve? You can upload the screenshot to imgur.com or dropbox and share the link here :)

    Best regards,
    Vinay

    in reply to: display 2 columns on mobile #663725

    Hey Freek,

    Using the below code will make the content the heading “EEN HECHT TEAM DAT BREED INZETBAAR IS” a 2 col layout in mobile. It appears you are using 2 images a logo and “WHAT” in different col hence the list appears one below the other.

    @media only screen and (max-width: 767px) {
    .responsive #top.page-id-118 .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
        width: 45%;
        float: left;
        display: inline-block!important;
    }}

    A workaround would be to enable custom css class name support http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and hide the logo and image in mobile using the below code.

    /*Show only in mobile or desktop*/
    
    @media only screen and (min-width: 769px) {
    .only_mobile { display: none !important; }}
    
    @media only screen and (max-width: 768px) {
    .only_desktop { display: none !important; }}

    Best regards,
    Vinay

    in reply to: Blog Styles for Enfold Demo App #663723

    Hi,

    3/4 col will not let the content inside it stretch full width of the screen. Please use a colorsection and drop the blog post element inside it to display a full width layout.

    Best regards,
    Vinay

    Hi,

    Glad we could help! We really appreciate it if you rate our theme on themeforest .
    To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold :)

    Best regards,
    Vinay

    in reply to: Unable to upload any media #663719

    Hey ozziepossum,

    It appear to be an issue with folder permission. Please refer to this link https://codex.wordpress.org/Changing_File_Permissions and scroll down all the way to “Using an FTP Client” and follow the step by step instruction.

    Let us know if you have any questions.

    Best regards,
    Vinay

    Hey kilimats,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #top .avia-post-nav {
        max-width: 100px;
    }
    

    It’s not clear what you are trying to achieve? If the above don’t work for you please elaborate on the end result you want if possible with a mockup and a link to view the element in question. Kindly remove any custom code added to this element in question which is not working for you and let us know.

    Best regards,
    Vinay

    • This reply was modified 9 years, 6 months ago by Vinay.
    in reply to: cant see enfold app demo theme #663266

    Hi,

    You are using an old version of the theme. Please update the theme to the latest version 3.6.1 and the new demos will appear :)

    Best regards,
    Vinay

    in reply to: social icons color #663260

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #top #wrap_all .av-social-link-facebook {
        color: #fff;
        background-color: #37589b!important;
        border-radius:50px;
        margin-right:10px;
    }
    
    #top #wrap_all .av-social-link-twitter {
        color: #fff;
        background-color: #46d4fe!important;
        border-radius:50px;
        margin-right:10px;
    }
    
    #top #wrap_all .av-social-link-instagram {
        color: #fff;
        background-color: #a67658!important;
        border-radius:50px;
    }
    

    Best regards,
    Vinay

    in reply to: Use own images for slideshow-arrows? #663257

    Hi,

    Glad we could help!
    We really appreciate it if you rate our theme on themeforest .
    To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold :)

    Best regards,
    Vinay

    in reply to: header widget has link of navigation #663256

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

      #header .widget, #header .textwidget {
    	max-height:60px;
    	z-index:99999;
    }
    

    Best regards,
    Vinay

    Hey 1039 Online,

    I’m afraid the blog post need to have a featured image setup inorder to be displayed in the grid. This is a wordpress standard feature for almost all the themes. So i guess in the long run it will be beneficial for you to change them.

    Best regards,
    Vinay

    in reply to: Page redirect #663227

    Hey hdpcr,

    You can add a map image on the same page and hide the image in desktop and show only hotspot. An extra page won’t be necessary.

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

    and class only_mobile to the map image and only_desktop to the hotspot and use the below css

    /*Show only in mobile or desktop*/
    
    @media only screen and (min-width: 769px) {
    .only_mobile { display: none !important; }}
    
    @media only screen and (max-width: 768px) {
    .only_desktop { display: none !important; }}

    Best regards,
    Vinay

    Hey evan_friedl,

    We enabled custom css class name support which allow us to target the icon box and added the below code in Quick CSS

    .center-icon .iconbox_icon{
       left: 50% !important;
       transform: translateX(-50%);
    }

    Best regards,
    Vinay

    Hey Greg,

    I tried less than 50 and more than 50 and found that there is no problem with the white space

    more than 50px

    Less than 50px

    There are 2 white space you can delete one of them and add the required values to the other white space element to avoid confusion.

    Let us know if you have any questions.

    Best regards,
    Vinay

    Hey profits1618,

    1. header background color can be changed from Enfold > General Styling > Logo area > Logo area background color

    2. could you please explain in greater details what exactly is the issue and if possible would you mind posting us a screenshot/mockup of what you would like to achieve? You can upload the screenshot to imgur.com or dropbox and share the link here :)

    Best regards,
    Vinay

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .comment_content p {
    font-style: inherit!important;
        font-family: inherit!important;
    }
    

    If the above code don’t work for you request you to get back to us with a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)

    Best regards,
    Vinay

    in reply to: Arrow Navigation with full-slider #663200

    Hi,

    The purpose of the arrow is to navigate to the next slide since there is only one image the arrow is disabled by default to avoid confusing the users into thinking there are more slides. The fullscreen slider arrows will appear when there are more than one image in the slide.

    Hope this helps let us know if you have any questions.

    Best regards,
    Vinay

    in reply to: Want to get rid of line or border #663041

    Hi,

    I have removed the white space element please review the site now.

    Best regards,
    Vinay

Viewing 30 posts - 5,971 through 6,000 (of 10,428 total)