Forum Replies Created

Viewing 30 posts - 3,661 through 3,690 (of 10,428 total)
  • Author
    Posts
  • in reply to: Main Menu Second Row #745695

    Hi,

    Sorry for the delay, I checked the link you provided earlier and tested the below code on your installation.

    #top #header_main_alternate {
        min-height: 100px;
    }

    Once you add this code to your quick css section and you have many menu items the result will look similar to the screenshot attached.

    Best regards,
    Vinay

    in reply to: Website Anomalies #745687

    Hi,

    I checked your site on both IE and Chrome. Please see the screenshot below it look identical on both Google Chrome and IE. If you still have any issue please upload a screenshot/mockup to imgur.com and share the link here so we can help you better :)

    Best regards,
    Vinay

    in reply to: Create a vertical fixed right dot navigation #745402

    Hi,

    Sorry for the delay, please remove the code you already tried and add the below code in Quick CSS.

    If you like to target only specific pages please add the page ID before .avia-menu with a space inbetween example: .page-id-xx .avia-menu for all 3 CSS selectors below.

    /* One page dots navigation */
    .avia-menu {
    	position:fixed;
    	max-width:0px;
    	height:auto!important;
    	right:50px;
    	top:50%;
    	transform:translateY(-50%);
    }
    .avia-menu .menu-item {
    	max-width: 25px;
    	max-height:25px;
    	border-radius:25px;
    	margin:10px;
    	overflow:hidden;
    }
    .avia-menu .avia-menu-text {
    	display:none;
    }

    Best regards,
    Vinay

    in reply to: full width sub menu styling #745184

    Hi,

    We will answer your other ticket, to know more about enfold features please check – http://kriesi.at/documentation/enfold/

    Thank you for using Enfold :)

    Best regards,
    Vinay

    in reply to: Border around masonry + title underneath thumbnail #745183

    Hi,

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

    .grid-entry .inner-entry {
    border-radius: 10px 10px 0 0!important;
    }
    

    Best regards,
    Vinay

    in reply to: Desperately Need Help with Portfolio Masonry Gallery #745182

    Hi,

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

    To increase or decrease the white space between the thumbnails adjust the value 10px in the below code .

    
    .grid-entry .inner-entry {
        box-shadow: 0px 0px 0px 10px rgba(255, 255, 255, 1)!important;
    }

    Best regards,
    Vinay

    in reply to: Site Migration #745177

    Hi,

    I see your homepage is different from the description (screenshot attached). Did you manage to resolve it?

    You may also like to check out the wordpress resource https://codex.wordpress.org/Creating_a_Static_Front_Page

    Let us know if you have any question in a new ticket we will be happy to assist you with any technical support you require regarding the theme.

    For technical support please register here kriesi.at/support/register

    Go to https://kriesi.at/support/ select the theme you purchased bookmark the URL.
    Example : https://kriesi.at/support/enfold

    Scroll to the bottom of the page to open a new ticket.

    Best regards,
    Vinay

    in reply to: Add Horizontal Scrollbar to Custom Template #745120

    Hi,

    If I may suggest an alternate method which is much easier to open large images.

    1. Please start by adding the below code to Quick CSS section

    .mfp-gallery .mfp-image-holder .mfp-figure {
        overflow: scroll;
      min-height: 100vh;
    }
    .mfp-figure figure {
        max-height: calc(100vh - 200px); /* 100vh is the window height minus the header height */
    }
    .mfp-figure img {
        min-width: 2050px;
        min-height: 2200px;
    }
    /* Close button position*/
    div.avia-popup .mfp-close  {
    top:30px!important;
    right:-5px!important;
    }
    

    2. Insert the image and select Lightbox from Link Settings options.

    This will open the image in it’s full size with scrollbars :)

    Best regards,
    Vinay

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

    Hi,

    Glad you got it sorted. Please open a new ticket if you have more questions, we are happy to help :)

    Best regards,
    Vinay

    in reply to: Add padding to the background color of the menu #745106

    Hi,

    Glad you like it better :)

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

    .av-logo-container {
       box-shadow: inset 0 0 0 10px #FFF;
    }
    

    Best regards,
    Vinay

    in reply to: Super Store Finder: frameless integration #745094

    Hi,

    Glad we could help!
    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold :)

    Best regards,
    Vinay

    in reply to: Main Menu spread over the whole content #745092

    Hi,

    Some code was missing from the Quick CSS section. We have added the below code and the menu looks as per your request. If you like to modify the width please update the max-width value :)

    #header #header_main_alternate .container{
        width: 100%!important;
    max-width:1220px;
    padding:0!important;
    margin:0!important;
    left:50%;
    transform:translateX(-50%);
    }
    #avia-menu {
      text-align: center!important;
      display:flex!important;  
    }
    
    .av-main-nav > li {       
        flex-grow: 1;
        justify-content: center;
        width: auto!important;
    }
    
    .av-main-nav > li > a {
        display: block; 
    }

    Best regards,
    Vinay

    in reply to: Video fullscreen #745080

    Hi,

    Thank you for the clarification, I’m sorry you had to wait long.

    Color section is the 2nd Layout Element from right.

    Try adding the video to Color Section > Section Background > Background Video

    Please note the audio does not play by default in a color section.

    Load the audio using a plugin like https://wordpress.org/plugins/search.php?type=term&q=background+sound

    Or give these plugin a try https://wordpress.org/plugins/video-background/

    https://wordpress.org/plugins/search.php?type=term&q=video+background

    Best regards,
    Vinay

    in reply to: Open masonry items in new window #744811

    Hey tjswarbs78,

    Yes it is possible to target certain pages

    Edit the below line and add the page id before .av-masonry-container

    jQuery('.av-masonry-container a ').attr('target','_blank');
    

    It should look like

    jQuery('.page-id-xx .av-masonry-container a ').attr('target','_blank');
    

    Best regards,
    Vinay

    in reply to: Quick CSS #744810

    Hey sandra1307,

    That’s perfect!

    Please refer to this link for more info https://css-tricks.com/snippets/css/comments-in-css/

    To know more about enfold features please check – http://kriesi.at/documentation/enfold/

    Thank you for using Enfold :)

    Best regards,
    Vinay

    in reply to: Size's text with icons #744797

    Hi,

    Glad we could help!
    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold :)

    Best regards,
    Vinay

    in reply to: products overview with additional info #744796

    Hey Lili,

    Please try a plugin like https://wordpress.org/plugins/customize-woocommerce-shop/

    or

    Check this link for more info http://stackoverflow.com/questions/31219428/custom-text-label-on-woocommerce-shop-thumbnail-images

    Unfortunately it would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However if its really important for you to get this done, you can always hire a freelancer to do the job for you :)

    Best regards,
    Vinay

    in reply to: Open post type "Link" in a new window #744790

    Hi,

    Glad we could help! To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold :)

    Best regards,
    Vinay

    Hi,

    Button elements can open a lightbox window and display any content inside it.

    1. Create a new page with your content inside it and hide the header and footer from the sidebar options.
    2. Copy the page URL and add ?iframe=true to the end of the link.

    example : If the new page created to display in the lightbox is http://kriesi.at the link to open it in lightbox will be http://kriesi.at?iframe=true

    Best regards,
    Vinay

    in reply to: Import Demo not working #744677

    Hi,

    Please reset the data using a plugin like https://wordpress.org/plugins/wordpress-database-reset/ which will remove all old data and try again.

    If you still have any issue let us know.

    Best regards,
    Vinay

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

    Hi,

    Thanks for noticing this issue. I have tested your page and checked on my installation as well. Long page name is not an issue and the theme works fine with long page names.

    This issue is happening on your installation because of a plugin conflict or a custom modification to the theme.

    If you hide the breadcrumbs on the page that has the long name it will work just fine.

    There isn’t enough space for the page name to fit in so due to a conflict with a plugin or custom modification it’s breaking the page.

    A plugin conflict may be one of the reason for this issue.
    To find which plugin is causing the conflict please follow these steps:

    1. Go to your plugins page > Deactivate all active Plugins
    2. Update WordPress and Enfold to latest version if you have not.
    3. Make sure all the plugins are updated.
    4. If the problem does not persist when plugins are turned off, activate one plugin at a time and refresh until you find the plugin in conflict.

    We await the results of your plugin compatibility test.

    Thanks for your cooperation :)

    Best regards,
    Vinay

    in reply to: How to insert a parallax container #744654

    Hey missholst,

    To make parallax content please select a Color Section and in the background option select parallax for “Background Attachment”.

    Or simply copy paste the below shortcode to an empty page click on “Advanced Layout Editor” to see the ALB elements and save the page.

    Then Click on the color section to view the background options and upload your image.

    [av_section min_height='' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='alternate_color' custom_bg='' src='https://test.kriesi.at/construction/wp-content/uploads/sites/7/2015/10/house-wire-model-fade-white-1500x1085.png' attachment='88' attachment_size='extra_large' attach='parallax' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_heading tag='h2' padding='0' heading='Why us?' color='' style='blockquote modern-quote modern-centered' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#efbb20' custom_margin_top='5px' custom_margin_bottom='35px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='bottom-to-top']
    
    [av_icon_box position='left_content' boxed='' icon='ue856' font='entypo-fontello' title='We got the tools' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='#ffffff' custom_font='' custom_border='']
    Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibu.
    [/av_icon_box]
    
    [/av_one_third][av_one_third min_height='' vertical_alignment='av-align-top' space='' custom_margin='aviaTBcustom_margin' margin='0px,0px' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='bottom-to-top']
    
    [av_icon_box position='left_content' boxed='' icon='ue84d' font='entypo-fontello' title='Certified Experience' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='#ffffff' custom_font='' custom_border='']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit.  Cum sociis natoque penatibu.
    [/av_icon_box]
    
    [/av_one_third][av_one_third min_height='' vertical_alignment='av-align-top' space='' custom_margin='aviaTBcustom_margin' margin='0px' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='bottom-to-top']
    
    [av_icon_box position='left_content' boxed='' icon='ue8cf' font='entypo-fontello' title='Competitive Pricing' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='#ffffff' custom_font='' custom_border='']
    Consectetuer adipiscing elit. Aenean com eget dolor. Aenean massa. Cum sociis.
    [/av_icon_box]
    
    [/av_one_third][av_one_third first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='bottom-to-top']
    
    [av_icon_box position='left_content' boxed='' icon='ue8c2' font='entypo-fontello' title='Lifetime Guarantee' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='#ffffff' custom_font='' custom_border='']
    Consectetuer adipiscing elit. Aenean com eget dolor. Aenean massa. Cum sociis.
    [/av_icon_box]
    
    [/av_one_third][av_one_third min_height='' vertical_alignment='av-align-top' space='' margin='0px' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='bottom-to-top']
    
    [av_icon_box position='left_content' boxed='' icon='ue862' font='entypo-fontello' title='50 Years Experience' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='#ffffff' custom_font='' custom_border='']
    Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibu.
    [/av_icon_box]
    
    [/av_one_third][av_one_third min_height='' vertical_alignment='av-align-top' space='' custom_margin='aviaTBcustom_margin' margin='0px' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='bottom-to-top']
    
    [av_icon_box position='left_content' boxed='' icon='ue8b9' font='entypo-fontello' title='Great Support' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='#ffffff' custom_font='' custom_border='']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit.  Cum sociis natoque penatibu.
    [/av_icon_box]
    
    [/av_one_third]
    [/av_section]
    

    Best regards,
    Vinay

    in reply to: Add Horizontal Scrollbar to Custom Template #744643

    Hi!

    Please check the test URL in private.

    We added a custom ID to the colorsection “scroll-section” and placed the image inside it.
    The below css was placed in Enfold > General Styling > Quick CSS

    #scroll-section {
    overflow: scroll;
    }
    #scroll-section img {
    min-width:2050px;
    min-height: 2200px;
    overflow: visible;
    }

    Regards,
    Vinay

    • This reply was modified 8 years, 11 months ago by Vinay.
    in reply to: Add padding to the background color of the menu #744495

    Hi,

    Thank you for sharing the new URL, Please remove the code provided earlier and use the below CSS

    null

    .av-logo-container {
       box-shadow: inset 0px 10px 0px #fff, inset 0px -10px 0px #fff;
    }

    Best regards,
    Vinay

    in reply to: full width sub menu styling #744488

    Hi,

    Yes that is possible using jQuery.

    If LayerSlider found apply class to menu and manipulate the CSS.

    Unfortunately it would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However if its really important for you to get this done, you can always hire a freelancer to do the job for you :)

    If you like to get started on your own please find similar examples here
    http://stackoverflow.com/questions/13358887/should-i-use-hasclass-before-addclass
    http://stackoverflow.com/questions/4208051/if-hasclass-then-addclass-to-parent

    Add your jQuery code in this format to the bottom of functions.php file which can be accessed from Appearance > Editor

    
    function custom_func(){
    ?>
    <script>
    /* Your code here */
    </script>
    <?php
    }
    add_action('wp_head', 'custom_func');

    Best regards,
    Vinay

    • This reply was modified 8 years, 11 months ago by Vinay.
    in reply to: Wordfence Critical Warning re: html-help.class.php #744219

    Hey deepbluec,

    I assure you there is no security risk with the theme. It is a false positive warning please update the theme to the latest version 3.8.5 and it should be fine :)

    Best regards,
    Vinay

    in reply to: Padding for top main logo #744216

    Hi,

    Glad we could help!
    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold :)

    Best regards,
    Vinay

    in reply to: Affiliate Banners For Enfold #744215

    Hey Ron,

    Please note that Kriesi at the moment do not offer any affiliate programs. It is offered by Envato and you can use the banner below and replace your username with “kriesi” in the end of this link while adding the banner image – http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?ref=Kriesi

    Please also see – http://themeforest.net/make_money/affiliate_program

    Best regards,
    Vinay

    in reply to: Product Slider Equal Sizes #744209

    Hi,

    Glad we could help!
    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    To know more about enfold features please check – http://kriesi.at/documentation/enfold/
    Thank you for using Enfold :)

    Best regards,
    Vinay

    in reply to: Call to Action Button #744207

    Hey hanman,

    Unfortunately it would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However if its really important for you to get this done, you can always hire a freelancer to do the job for you :)

    Best regards,
    Vinay

Viewing 30 posts - 3,661 through 3,690 (of 10,428 total)