Viewing 30 results - 541 through 570 (of 1,181 total)
  • Author
    Search Results
  • #859521

    https://webers-testseite.de/weber/

    click the images to enlarge
    first of all if you do not need the shrinking option it is not so complicated as it seems
    Insert as usual a logo to the enfold options.

    you have to go to dashboard – appearance – menus

    insert a home link. On top right of the dashboard window – there is a slide out option called “Screen Options” Press it.
    Here you have some settings. Please mark the css classes.

    If you click on those littel arrows besides the menupoints you can insert different things now:

    On Navigation label you can insert the image link now something like:
    <img src="https://url.com/logo-top.png" alt="Logo" />
    On css classes : logoimg
    You only are in the midpoint if you have odd number of menupoints.
    We now have to get rid of the logo container
    Quick css:

    .logo, .logo a { display: none }
    .logoimg img { width: auto ; max-height: 172px }
    .container.av-logo-container { position: absolute }
    .logoimg .avia-menu-fx { display: none }
    #av-burger-menu-ul li:nth-child(4) { display: none }

    the last rule is to have not the menu-point on burger menu
    you have to count what menu-point is your logo (here it is on 4th position of the menu)

    and to have the normal logo on responsive case:

    @media only screen and (max-width: 768px){
    .container.av-logo-container { position: relative }
    .logo, .logo a { display: block }
    }

    ___________________
    with shrink option :

    we have to use the function avia_header_size() of avia.js
    the code to see is on pastebin: look
    download it as js file: download

    you see on line 61 (original it is 1551 on avia.js) of my code that i get rid of the not mobile option.
    i set on line 47 : navlogo = $('.logoimg img'), and
    on line 92 i added this code: navlogo.css({'maxHeight': 1.72*newH + 'px'});

    these values you can play with. I have on my testinstallation a 100px custom height of the header
    my logo is 172px hight – so my factor here is 1.72

    upload that menu_logo.js file to your child-theme js-folder (create a subfolder in childtheme called : js
    loading the script above in enfold open your functions.php via dashboard – appearance – editor and insert:

    function include_menulogo() {
       wp_enqueue_script( 'avia-main-child', get_stylesheet_directory_uri().'/js/menu_logo.js', array('jquery', 'avia-default'), 2, true );
    }
    add_action( 'wp_enqueue_scripts', 'include_menulogo', 100 );

    now the “logo” of your menu shrinks on scrolling.

    • This reply was modified 8 years, 3 months ago by Guenni007.
    #859288
    Todo
    Participant

    Hello,

    I have a problem. On my website I put a fixed and transparent menu. So at the scroll, it stays at the top of the page, we find the logo and the burger menu (all the rest is transparent). The problem is that on my homepage I use 100% color sections of the browser size and also arrows to scroll automatically to the next section. Only with the click the scroll is not perfect because there is the height of the menu (transparent in my case) which is added.
    I saw a discussion about this: https://kriesi.at/support/topic/scroll-down-to-next-section-offset/
    But I’m not sure how to change the. js and this solution doesn’t seem to stay up to date with the theme.
    Do you have another solution?

    Thank you in advance,

    #856769

    Hi,

    Please add this code in the Quick CSS field.

    .html_av-overlay-side .av-burger-overlay-scroll {
        right: auto;
        left: 0;
    }
    
    .html_av-overlay-side .av-burger-overlay-scroll {
        width: 350px;
        -webkit-transform: translateX(-350px);
        transform: translateX(-350px);
    }

    Best regards,
    Ismael

    #855093

    Hi Victoria
    I really don’t know what you’re talking about. I know WordPress quite well.
    Got to https://dev.wohnenimpark-niederglatt.ch/die-wohnungen/
    scroll down and open the accordian. It’s very ugly if the user has to scroll each time manually to see the content.
    There should be a javascript or function, that the open trigger scrolls to the top of the page automatically.
    Thanks for your help for that.

    #850175

    Hi,
    The issue is caused by your plugin JCH Optimize Pro try turning it off and flush WP Fastest Cache, or turn them both off.
    This solves the image link code from showing, but your image won’t show because for mobile the shortcodes.css collapses that area.
    If you want to show your full table on mobile, which maybe hard to read, you’ll need to remove this code from shortcodes.css between lines 1725 – 1765, and add the modified file to your child theme:

    @media only screen and (max-width: 767px)
    {
    	.responsive div .avia_responsive_table .avia-data-table table,
        .responsive div .avia_responsive_table .avia-data-table tbody,
        .responsive div .avia_responsive_table .avia-data-table tr,
        .responsive div .avia_responsive_table .avia-data-table td,
        .responsive div .avia_responsive_table .avia-data-table th{display:block; border-top:none; border-right:none; border-left:none; text-align: center;}
        .responsive .avia_responsive_table .avia-data-table{border-style:solid; border-width: 1px;}
        .responsive .avia_responsive_table .avia-data-table .avia-pricing-row .avia-desc-col{text-align: center;}
        .responsive .avia_responsive_table .avia-data-table .avia-button-row, .responsive .avia_responsive_table .avia-data-table tr:first-child th{display:none;}
        .responsive .avia_responsive_table .avia-data-table td:before {
    	display:block;
    	font-style: italic; font-size: 11px;
    	}
    
    	.responsive .avia_responsive_table .avia-data-table td {
    		position: relative;
    	}
    
        .responsive .avia_scrollable_table {
            width: 100%;
            overflow-x: scroll;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            -ms-overflow-style: -ms-autohiding-scrollbar;
        }
    	
        .avia_scrollable_table .avia-table {
        	width: auto;
        }
    
        .responsive .avia_scrollable_table .avia-data-table > thead > tr > th,
        .responsive .avia_scrollable_table .avia-data-table > tbody > tr > th,
        .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > th,
        .responsive .avia_scrollable_table .avia-data-table > thead > tr > td,
        .responsive .avia_scrollable_table .avia-data-table > tbody > tr > td,
        .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > td {
            white-space: nowrap;
        }
    }

    I don’t recommend this, as it will be hard to read on mobiles

    Best regards,
    Mike

    #850053
    lucky7t
    Participant

    OK so i think last time this was discussed it was confusing so im going to try to make it simple.

    I have products that are certain colors. I have many pictures of each color showing this product at different angles .

    My previous website i installed a gallery that had albums. In other words you could insert 50 images in one album. The user would click this one album and a lightbox would pop up and view these 50 images.

    I asked this a while back and my reply back was ” we enfold has galleries that are filterable” so i tried this three different ways.

    One way is to create a portfolio and make a category , in this portfolio you add “preview images” then you make a page and insert a gallery and select ajax portfolio. The only issue with this is that once a user clicks the image it then opens up a gallery then you click an image in the galelry and then it opens a lightbox. This seems extremely complex and really needs to skip the gallery process and go straight to the lighbox. Im not real sure why that is this way. Also the gallery cuts your image automatically and looks horrible unless you would like to resize and crop all 800 if your images.

    the second way you can do it same as above but in gallery you select open big image in lighbox. Well thats a great idea right??? you would think that it would open the multiple images in your preview but nope its opens the one image and then as you scroll through you go to the rest in the gallery which makes zero sense. Why would you have a gallery with categories if the lightbox scrolls to the next category?

    all in all im stumped. Ive hired a pro and hes stumped. Its so simple what we wna to accomplish but yet its impossible to explain. we just want albums that you can sort by name an dopen the images in that album only if that album is clicked .

    lastly, if you make a gallery and i insert 650 images of all colors and angles wouldnt that look insane? I’m very confused as the logic behind this gallery. Ive tried to install other galleries but your theme conflicts and wont allow it. Interesting though when i installed one today i inserted an actual album and once i opened it it conflicted but behind the window was your lighbox with the images in preview. So i know it can work like it should. I just cant figure it out.

    I know support is limited by time and appreciate that very much but ive offered to pay many times for support. Im in a crunch here and trying hard to get this site operational.

    #848079

    Hi,

    what about not making the down arrow ‘clickable’? I just want people to see that they can scroll down. Doesn’t have to scroll down to the next section automatically when clicking. The down arrow should just be there (would even prefer it not moving up and down).

    Thanks!

    • This reply was modified 8 years, 4 months ago by giaco_he.
    #846103

    In reply to: Issue with tab section

    Hi,

    Thank you for using Enfold and sorry for the troubles you have.

    Please refer to https://kriesi.at/support/topic/tab-section-automatically-scrolled-up-the-page/ for a temporary solution of this problem. Will be fixed in the next update.

    Let us know, if this helps you.

    Best regards,
    Günter

    #845811
    vlkwatchman
    Participant

    hey there!

    i enabled sticky header on mobile via the following:

    @media only screen and (max-width: 768px) {
    #top #wrap_all .social_bookmarks a {
    color: #969696;
    }
    #header {
    position: fixed!important;
    width: 100%!important;
    }}

    HOW CAN I MAKE IT TRANSPARENT UNTIL AFTER SCROLL LIKE ON THE DESKTOP?

    as of now, ON MOBILE, it automatically is solid on page load … and it cuts off the top of my layer slider.

    thanks for the help!

    chris

    #843796

    Hi,

    Please turn on the debug mode then use the following “blog” shortcode.

    // http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-shadow' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='' color='main_color' custom_bg='' src='http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2017/02/banner-news-alt.jpg' attachment='1057' attachment_size='full' attach='scroll' position='top center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.6' overlay_color='#000000' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0']
    [av_heading heading='Latest News
    Everything thats going on at Enfold is collected here' tag='h1' style='blockquote modern-quote modern-centered' size='40' subheading_active='' subheading_size='15' padding='0' color='custom-color-heading' custom_font='#ffffff' admin_preview_bg='rgb(34, 34, 34)'][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='rgb(34, 34, 34)']
    
    [av_textblock size='' font_color='custom' color='#dddddd' admin_preview_bg='rgb(34, 34, 34)']
    <p style="text-align: center;">Hey there! We are Enfold and we make really beautiful and amazing stuff.
    This can be used to describe what you do, how you do it, & who you do it for.
    
    [/av_textblock]
    [/av_section]
    
    [av_blog blog_type='posts' link='category' blog_style='single-big' columns='3' contents='excerpt' content_length='content' preview_mode='auto' image_size='portfolio' items='1' offset='no_duplicates' paginate='no' conditional='is_subpage']
    
    [av_blog blog_type='posts' link='category' blog_style='blog-grid' columns='2' contents='excerpt' content_length='content' preview_mode='auto' image_size='portfolio' items='6' offset='no_duplicates' paginate='yes']
    

    The post is created with the default editor.

    Best regards,
    Ismael

    #842062

    i put different posts and you only responded to the last one:
    i tried importing a layer slider from the template store and it was just scrolling and scrolling. if you can do that it would be helpful. it is frustrating because you respond different time then i work and every time i have to wait a whole day for your response so if you can help me get this done faster that would be good.

    i just change some styles for the header. how can i get the mobile menu to pull out on the right – you do have an option to put the menu on the left so then it should automatically open on the left with that settings. if you need to you can remove my styles from the child theme style sheet for a few minutes to see it default on the left. that is the only thing i modified.

    #840579
    Sadegh
    Participant

    Hi,
    I am using ‘Tab Section‘ element in our homepage (link in private box), as illustrated below:
    .

    When I navigate through the tabs, after three to five times clicks on those tabs, the page scrolled up automatically. How can I prevent it?

    Thanks,
    Sadegh

    #840455
    This reply has been marked as private.
    #840236

    In reply to: sticky mobile menu

    Hi,

    Thank you for using Enfold.

    Please add this code in the Quick CSS field.

    @media only screen and (max-width: 767px) {
        .responsive #top .header-scrolled-full + #main .av-submenu-container {
            top: 81px !important;
            position: fixed !important;
            height: auto;
            min-height: 0;
            margin-bottom: -1px;
         }
    }
    

    The top value depends on the height of the mobile header. Also, you might want to limit the number of sub menu element to one per page.

    Best regards,
    Ismael

    #839819

    Excellent thanks for the link.

    OK, so first thing to do is…
    1) remove the option to set both columns to equal height. This will make each column take on a height equal to the content.
    2) give the right hand column a class (I used scrolling-col)
    3) use some css to set a height for column and add scroll effect for the overflow content.

    .scrolling-col {
        height: 1000px!important;
        max-height: 1000px!important;
        overflow: auto;
        width: 100%!important;
    }

    I had to add a width as I had to manually remove the classes that created equal columns and doing so for some reason removed the column width too. The width shouldn’t be needed.

    That will / should give the following look

    screenshot

    Give that a whirl and let us know the outcome. We can then look at live page again if needed.

    Thanks

    TJ

    #837275
    RRaker
    Participant

    Hi,

    I’m using CategoryTinymce 5 to put content below products & subcategories on archive pages.
    Previously I created unique pages and used another plug-in to overwrite the category page, it was VERY time consuming and didn’t auto update when I added new products and categories.

    CategoryTinymce 5 is much faster and is successful at creating the content, but after about 15 minutes content with avia builder elements disappears. Standard text seems to stay.

    Here’s what I want them to look like:
    http://accutuneoffroad.com/product-category/fox-racing-shocks/fox-coilovers/2-0-fox-coilovers-58-shaft-emulsion/

    Here is one where I pasted the following content, only for it to disappear:
    http://accutuneoffroad.com/product-category/fox-racing-shocks/fox-coilovers/2-0-fox-coilovers-remote-reservoir/

    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-border-styling' bottom_border='no-border-styling' id='feature' color='main_color' custom_bg='#f7f7f7' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern=''][av_headline_rotator before_rotating='<strong>Fox 2.0 Remote Reservoir Coilover Features</strong>' after_rotating='' interval='5' animation='' tag='h2' size='25' align='center' custom_title=''][av_rotator_item title=' ' link='' linktarget='' custom_title=''][/av_headline_rotator][av_two_fifth first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation=''mobile_display=''][av_image src='http://accutuneoffroad.com/wp-content/uploads/AccuTune-Logo-Color-White-Bg-300w-Gray-BG-300x120.jpg' attachment_size='medium' align='center' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg=''][/av_image][/av_two_fifth][av_three_fifth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''][av_headline_rotator before_rotating='Pre-Tuned Fox 2.0 Remote Reservoir Coilovers' after_rotating='' interval='5' animation='' tag='h3' size='' align='left' custom_title='' admin_preview_bg=''][av_textblock size='' font_color='' color='' admin_preview_bg='']AccuTune Off-Road delivers the best performing Fox 2.0 Remote Reservoir Coilovers because of our experience, <a href="http://accutuneoffroad.com/accutune-equations/">AccuTune Equations</a>, and <a href="http://accutuneoffroad.com/accutune-double-flutter-stacks/">AccuTune Double Flutter Stacks</a>. The combination of our new techniques and highly accurate equations result in Fox 2.0 Coilovers that substantially outperform the factory valving and semi-tuned valving sold by our competitors. With Fox Coilovers from AccuTune Off-Road your ride will be more comfortable and more controllable no matter what terrain you're on. Our 2.0 Fox Remote Reservoir Coilovers come with free custom tuning, free spring swapping, and free disk swapping or free re-valve. When you want the best Fox 2.0 Remote Reservoir Coilovers look no further than AccuTune Off-Road.[/av_textblock][/av_three_fifth][av_hr class='default' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808'][av_two_fifth first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation=''mobile_display=''][av_image src='http://accutuneoffroad.com/wp-content/uploads/2015/07/Spring-Performance.jpg' attachment_size='medium' align='center' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg=''][/av_image][/av_two_fifth][av_three_fifth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''][av_headline_rotator before_rotating='Fox 2.0 x 7/8" Shaft Coilovers' after_rotating='' interval='5' animation='' tag='h3' size='' align='left' custom_title='' admin_preview_bg=''][av_textblock size='' font_color='' color='' admin_preview_bg='']Fox 2.0 Coilovers with 7/8″ shaft provide greater strength and durability than the 5/8" shaft shocks. The large Fox coilover shaft is made from extremely hard and extremely corrosion resistant stainless steel so they're stronger and more durable than any other shaft on the market. 7/8" shaft Fox 2.0 Coilovers are recommended for most standard applications.[/av_textblock][/av_three_fifth][av_hr class='default' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808'][av_two_fifth first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation=''mobile_display=''][av_image src='http://accutuneoffroad.com/wp-content/uploads/Fox-Remote-Reservior-Shocks.jpg' attachment_size='medium' align='center' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg=''][/av_image][/av_two_fifth][av_three_fifth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''][av_headline_rotator before_rotating='Fox 2.0 Remote Reservoir Coilovers' after_rotating='' interval='5' animation='' tag='h3' size='' align='left' custom_title='' admin_preview_bg=''][av_textblock size='' font_color='' color='' admin_preview_bg='']Remote Reservoirs take Fox 2.0 Coilovers to the next level. The most well known benefits of Remote Reservoir Fox Coilovers are the added oil volume, and increased heat dissipation, but the benefits don’t stop there. Remote Reservoirs also provide better durability and improved ride quality by reducing the Fox Coilover operating pressure. Reducing the operating pressure substantially reduces friction which makes for a smoother ride, and increases seal life. Factory Series Fox 2.0 Remote Reservoir Coilovers deliver the ultimate performance and durability.[/av_textblock][/av_three_fifth][av_hr class='default' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808'][av_two_fifth first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation=''mobile_display=''][av_image src='http://accutuneoffroad.com/wp-content/uploads/Fox-King-sway-a-way-Coilover-Springs-1.jpg' attachment_size='medium' align='center' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg=''][/av_image][/av_two_fifth][av_three_fifth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''][av_headline_rotator before_rotating='Fox 2.0 Coilovers With Dual Rate Springs' after_rotating='' interval='5' animation='' tag='h3' size='' align='left' custom_title='' admin_preview_bg=''][av_textblock size='' font_color='' color='' admin_preview_bg='']Fox 2.0 Remote Reservoir Coilovers come with all the hardware to run dual rate springs. <a href="http://accutuneoffroad.com/product-category/springs/2-5-id-coilover-springs/">Dual rate coilovers springs</a> allow the Fox 2.0 Coilovers to have a soft initial ride, then to firm up when hitting large bumps. The result is a smoother ride, better handling, and more control in rough terrain. At AccuTune Off-Road we are happy to help you select the proper <a href="http://accutuneoffroad.com/product-category/springs/2-5-id-coilover-springs/">springs and for your 2.0 Fox Remote Reservoir Coilovers</a>.[/av_textblock][/av_three_fifth][av_hr class='default' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808'][av_two_fifth first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation=''mobile_display=''][av_image src='http://accutuneoffroad.com/wp-content/uploads/Fox-Factory-Series-Shocks-lg.jpg' attachment_size='medium' align='center' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg=''][/av_image][/av_two_fifth][av_three_fifth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''][av_headline_rotator before_rotating='Fox Factory Series 2.0 Coilovers' after_rotating='' interval='5' animation='' tag='h3' size='' align='left' custom_title='' admin_preview_bg=''][av_textblock size='' font_color='' color='' admin_preview_bg='']Fox 2.0 Factory Series Coilovers are most durable coilovers on the market due to their premium components. Dented and rusty piston rods are the primary reason Fox 2.0 Emulsion Coilovers leak. By using a stainless steel piston rod that's rust resistant and twice as dent resistant as competitors Fox 2.0 Factory Series coilovers are substantially more durable. To cap if off Fox Factory Series Coilovers come with premium oil, viton seals, and a high flow piston. Look no further than Fox 2.0 Factory Series Coilovers for your ride.[/av_textblock][/av_three_fifth][av_hr class='default' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808'][av_two_fifth first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation=''mobile_display=''][av_image src='http://accutuneoffroad.com/wp-content/uploads/Fox-Logo.jpg' attachment_size='medium' align='center' styling='' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg=''][/av_image][/av_two_fifth][av_three_fifth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''][av_headline_rotator before_rotating='Fox 2.0 Coilover Heritage' after_rotating='' interval='5' animation='' tag='h3' size='' align='left' custom_title='' admin_preview_bg=''][av_textblock size='' font_color='' color='' admin_preview_bg='']FOX 2.0 Coilovers have dominated the top levels of professional racing for decades by providing quality and performance that racers rely on. The same meticulous attention to detail, rugged construction and technically advanced suspension damping is applied to every Fox 2.0 Remote Reservoir Coilover. Leave the pavement behind with total confidence, and find out just how good your truck or Buggy can be. Experience the ride you’ve been dreaming of with a set of Fox 2.0 Coilover Remote Reservoir shocks from AccuTune Off-Road. [/av_textblock][/av_three_fifth]<code></div></div></code>

    • This topic was modified 8 years, 5 months ago by RRaker.
    #836887

    Hi,

    Blog page:

    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-shadow' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='' color='main_color' custom_bg='' src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2017/02/banner-news-alt.jpg' attachment='1057' attachment_size='full' attach='scroll' position='top center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.6' overlay_color='#000000' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0']
    [av_heading heading='Latest News<br/>Everything thats going on at Enfold is collected here' tag='h1' style='blockquote modern-quote modern-centered' size='40' subheading_active='' subheading_size='15' padding='0' color='custom-color-heading' custom_font='#ffffff' admin_preview_bg='rgb(34, 34, 34)'][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='rgb(34, 34, 34)']
    
    [av_textblock size='' font_color='custom' color='#dddddd' admin_preview_bg='rgb(34, 34, 34)']
    <p style="text-align: center;">Hey there! We are Enfold and we make really beautiful and amazing stuff.
    This can be used to describe what you do, how you do it, & who you do it for.</p>
    [/av_textblock]
    [/av_section]
    
    [av_blog blog_type='posts' link='category' blog_style='blog-grid' columns='3' contents='excerpt' content_length='content' preview_mode='auto' image_size='portfolio' items='6' offset='0' paginate='yes' conditional='']
    

    Best regards,
    Rikard

    #836746

    Hi,

    Ok, great. Please add this to the shortcode box (located under the Layout Builder box) to get the first page of the Health Demo:

    [av_fullscreen size='no scaling' animation='fade' autoplay='true' interval='7' control_layout='av-control-hidden' scroll_down='aviaTBscroll_down' perma_caption='aviaTBperma_caption']
    [av_fullscreen_slide slide_type='image' id='193' position='center right' video='http://' mobile_image='' video_cover='' title='Hi, I am Emma Fold!' custom_title_size='70' custom_content_size='24' caption_pos='caption_center' link_apply='button button-two' link='lightbox' link_target='' button_label='Who I am ' button_color='light' link1='page,143' link_target1='' button_label2='What I do' button_color2='theme-color' link2='page,143' link_target2='' font_color='' custom_title='' custom_content='' overlay_enable='aviaTBaviaTBoverlay_enable' overlay_opacity='0.3' overlay_color='#000000' overlay_pattern='' overlay_custom_pattern='' video_controls='' video_mute='' video_loop='' video_autoplay='']
    Your new personal health, nutrition and fitness coach.
    [/av_fullscreen_slide]
    [av_fullscreen_slide slide_type='image' id='233' position='center right' video='http://' mobile_image='' video_cover='' title='' custom_title_size='' custom_content_size='' caption_pos='caption_bottom' link_apply='' link='lightbox' link_target='' button_label='Click me' button_color='light' link1='manually,http://' link_target1='' button_label2='Click me' button_color2='light' link2='manually,http://' link_target2='' font_color='' custom_title='' custom_content='' overlay_enable='aviaTBaviaTBoverlay_enable' overlay_opacity='0.3' overlay_color='#000000' overlay_pattern='' overlay_custom_pattern=''][/av_fullscreen_slide]
    [/av_fullscreen]
    
    [av_layout_row border='' min_height='15px' color='main_color' mobile='av-fixed-cells' id='welcome']
    [av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='#719430' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='#92bb46' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='#acd464' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='#e1fbb2' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [/av_cell_one_fourth]
    [/av_layout_row]
    
    [av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells' id='hello']
    [av_cell_one_half vertical_align='top' padding='100px' padding_sync='true' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [av_heading tag='h1' padding='30' heading='Hello <u>and</u> welcome' color='' style='blockquote modern-quote' custom_font='' size='70' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [av_textblock size='' font_color='' color='']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis <a href="#">parturient montes</a>, nascetur ridiculus mus.
    
    In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt.
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_textblock size='29' font_color='' color='']
    <span style="text-decoration: underline;">Donec quam felis, que eu, pretium quis, sem. Nulla consequat massa quis enim.</span>
    [/av_textblock]
    
    [/av_cell_one_half][av_cell_one_half vertical_align='top' padding='100px' padding_sync='true' background_color='#719430' src='https://test.kriesi.at/enfold-health-coach/wp-content/uploads/sites/19/2016/05/woman-enjoying-nature-outdoors-m-1-845x684.jpg' attachment='146' attachment_size='gallery' background_attachment='scroll' background_position='center right' background_repeat='stretch' mobile_display='']
    
    [av_heading tag='h1' padding='30' heading='About me' color='custom-color-heading' style='blockquote modern-quote' custom_font='#ffffff' size='70' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [av_one_half first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_textblock size='' font_color='custom' color='#ffffff']
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.
    [/av_textblock]
    
    [/av_one_half][av_one_half min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [/av_one_half][av_hr class='invisible' height='160' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_button label='More about me' link='page,143' link_target='' size='large' position='left' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue879' font='entypo-fontello' color='light' custom_bg='#444444' custom_font='#ffffff']
    
    [/av_cell_one_half]
    [/av_layout_row]
    
    [av_layout_row border='' min_height='15px' color='main_color' mobile='av-fixed-cells' id='welcome']
    [av_cell_one_fifth vertical_align='top' padding='0px' padding_sync='true' background_color='#719430' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [/av_cell_one_fifth][av_cell_three_fifth vertical_align='middle' padding='50px,20px,50px,20px' background_color='#92bb46' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [av_heading tag='h1' padding='0' heading='What I can do for you' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='50' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_cell_three_fifth][av_cell_one_fifth vertical_align='top' padding='0px' padding_sync='true' background_color='#719430' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [/av_cell_one_fifth]
    [/av_layout_row]
    
    [av_masonry_entries link='portfolio_entries,23' sort='no' items='-1' columns='3' paginate='pagination' query_orderby='title' query_order='DESC' size='fixed masonry' gap='large' overlay_fx='active' id='' caption_elements='title' caption_styling='overlay' caption_display='on-hover-hide' color='custom' custom_bg='#92bb46']
    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-shadow' bottom_border='no-border-styling' id='' color='main_color' custom_bg='' src='https://test.kriesi.at/enfold-health-coach/wp-content/uploads/sites/19/2016/05/food-bg-3.jpg' attachment='248' attachment_size='full' attach='scroll' position='bottom right' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_one_third first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='uf102' font='lifestyles' title='Nutrition Plans' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.
    [/av_icon_box]
    
    [/av_one_third][av_one_third min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='uf122' font='lifestyles' title='Weight Loss' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis.
    [/av_icon_box]
    
    [/av_one_third][av_one_third min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='uf126' font='lifestyles' title='Mental Peace' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo.
    [/av_icon_box]
    
    [/av_one_third][av_one_third first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='uf107' font='lifestyles' title='Home training' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi.
    [/av_icon_box]
    
    [/av_one_third][av_one_third min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='uf11d' font='lifestyles' title='Work/Life balance' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.
    [/av_icon_box]
    
    [/av_one_third][av_one_third min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='uf10c' font='lifestyles' title='Cardio' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Parturient montes, nascetur ridiculus mus. Donec quam felis.
    [/av_icon_box]
    
    [/av_one_third]
    [/av_section]
    
    [av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells' id='']
    [av_cell_one_half vertical_align='middle' padding='0px' padding_sync='true' background_color='' src='https://test.kriesi.at/enfold-health-coach/wp-content/uploads/sites/19/2016/05/yoga_me-1030x687.jpg' attachment='193' attachment_size='large' background_attachment='scroll' background_position='center left' background_repeat='stretch' mobile_display='']
    
    [/av_cell_one_half][av_cell_one_half vertical_align='middle' padding='100px' padding_sync='true' background_color='#f7f7f7' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [av_heading tag='h1' padding='20' heading='<u>You</u> should also know...' color='' style='blockquote modern-quote' custom_font='' size='50' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [av_textblock size='' font_color='' color='']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.
    [/av_textblock]
    
    [/av_cell_one_half]
    [/av_layout_row]
    
    [av_layout_row border='' min_height='15px' color='main_color' mobile='av-fixed-cells' id='welcome']
    [av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='#719430' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='#92bb46' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='#acd464' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [/av_cell_one_fourth][av_cell_one_fourth vertical_align='top' padding='0px' padding_sync='true' background_color='#e1fbb2' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [/av_cell_one_fourth]
    [/av_layout_row]
    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='alternate_color' custom_bg='' src='https://test.kriesi.at/enfold-health-coach/wp-content/uploads/sites/19/2016/05/cheese.jpg' attachment='236' attachment_size='full' attach='fixed' position='center center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.8' overlay_color='#000000' overlay_pattern='' overlay_custom_pattern='']
    [av_one_fifth first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [/av_one_fifth][av_three_fifth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_heading tag='h1' padding='20' heading='Get in touch now' color='' style='blockquote modern-quote modern-centered' custom_font='' size='50' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [av_textblock size='' font_color='' color='']
    <p style="text-align: center;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu.</p>
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_button label='Contact me' link='page,143' link_target='' size='large' position='center' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue879' font='entypo-fontello' color='light' custom_bg='#444444' custom_font='#ffffff']
    
    [/av_three_fifth][av_one_fifth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [/av_one_fifth]
    [/av_section]
    

    Best regards,
    Rikard

    #835228

    Hi,

    Very sorry for the late reply, it’s been a bit hectic here. You can create that layout by using and icon element inside a 1/4 element. You can see the settings in the screenshot in private.

    If you want to import that whole page then you can enable debug mode: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/, then add this shortcode to a new page:

    [av_section min_height='100' min_height_px='500px' padding='default' shadow='no-border-styling' bottom_border='no-border-styling' scroll_down='aviaTBscroll_down' id='' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='https://www.youtube.com/watch?v=Wq-DEL2ONGg' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.8' overlay_color='#4ecac2' overlay_pattern='' overlay_custom_pattern='']
    [av_three_fourth first]
    
    [av_headline_rotator before_rotating='EVERYTHING UNDER ONE ROOF! WE OFFER GREAT ' after_rotating='' multiline='aviaTBmultiline' interval='3' animation='' tag='h2' size='63' align='left' custom_title='#ffffff']
    [av_rotator_item title='MARKETING' link='' linktarget='' custom_title='#315e5b']
    [av_rotator_item title='USER EXPERIENCE' link='' linktarget='' custom_title='#315e5b']
    [av_rotator_item title='CUSTOMER SUPPORT' link='' linktarget='' custom_title='#315e5b']
    [av_rotator_item title='DESIGN SKILLS' link='' linktarget='' custom_title='#315e5b']
    [/av_headline_rotator]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='40px' custom_margin_bottom='40px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [/av_three_fourth][av_one_fourth]
    
    [av_hr class='invisible' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_font_icon icon='ue897' font='entypo-fontello' style='border' caption='' link='manually,https://vimeo.com/64927358' linktarget='' size='40px' position='center' color='#ffffff']
    Watch our Promo Video
    [/av_font_icon]
    
    [/av_one_fourth]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_one_fifth first]
    
    [/av_one_fifth][av_three_fifth]
    
    [av_heading tag='h1' padding='10' heading='We create <strong>high quality products</strong> that are used and loved by thousands of customers' color='' style='blockquote modern-quote modern-centered' custom_font='' size='40' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_three_fifth][av_one_fifth]
    
    [/av_one_fifth][av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='70px' custom_margin_bottom='70px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first]
    
    [av_textblock size='' font_color='' color='']
    <h3>Lorem ipsum dolor sit amet</h3>
    Consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
    
    <a href="#">Learn more...</a>
    [/av_textblock]
    
    [/av_one_third][av_one_third]
    
    [av_textblock size='' font_color='' color='']
    <h3>Lorem ipsum dolor sit amet</h3>
    Consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
    
    <a href="#">Learn more...</a>
    [/av_textblock]
    
    [/av_one_third][av_one_third]
    
    [av_textblock size='' font_color='' color='']
    <h3>Lorem ipsum dolor sit amet</h3>
    Consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
    
    <a href="#">Learn more...</a>
    [/av_textblock]
    
    [/av_one_third]
    [/av_section]
    
    [av_image_hotspot src='https://kriesi.at/themes/enfold-startup/files/2015/02/desat-gb_macbook.jpg' attachment='466' attachment_size='full' animation='fade-in' hotspot_layout='numbered' hotspot_tooltip_display='av-permanent-tooltip' hotspot_mobile='aviaTBhotspot_mobile']
    [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-right' tooltip_width='av-tt-large-width' tooltip_style='main_color' link='' hotspot_color='custom' custom_bg='#4ecac2' custom_font='#ffffff' custom_pulse='' hotspot_pos='35.9,31.2']
    First of all select the "<strong>Enfold</strong>" option from your admin menu
    [/av_image_spot]
    [av_image_spot tooltip_pos='av-tt-pos-left av-tt-align-top' tooltip_width='av-tt-default-width' tooltip_style='main_color' link='' hotspot_color='custom' custom_bg='#4ecac2' custom_font='#ffffff' custom_pulse='' hotspot_pos='58.6,35.4']
    Open the demo import tab
    [/av_image_spot]
    [av_image_spot tooltip_pos='av-tt-pos-right av-tt-align-centered' tooltip_width='av-tt-large-width' tooltip_style='main_color av-tooltip-shadow' link='' hotspot_color='custom' custom_bg='#4ecac2' custom_font='#ffffff' custom_pulse='' hotspot_pos='65.1,52.6']
    Select the demo you like and click the <strong>import</strong> button
    [/av_image_spot]
    [av_image_spot tooltip_pos='av-tt-pos-right av-tt-align-bottom' tooltip_width='av-tt-default-width' tooltip_style='main_color' link='' hotspot_color='custom' custom_bg='#4ecac2' custom_font='#ffffff' custom_pulse='' hotspot_pos='32.2,68']
    Save the page once you are done
    [/av_image_spot]
    [/av_image_hotspot]
    
    [av_button_big label='Learn more' description_pos='below' link='manually,http://' link_target='' icon_select='no' icon='ue800' font='entypo-fontello' custom_font='#ffffff' color='theme-color' custom_bg='#444444' color_hover='custom' custom_bg_hover='#444444'][/av_button_big]
    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='border-extra-arrow-down' id='' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    
    [av_heading heading='What our customers say about us' tag='h1' style='blockquote modern-quote modern-centered' size='40' subheading_active='' subheading_size='15' padding='10' color='' custom_font=''][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='40px' custom_margin_bottom='40px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_testimonials style='slider_large' columns='2' interval='5' font_color='' custom_title='' custom_content='#bcbcbc']
    [av_testimonial_single src='468' name='Markus Meyer' subtitle='CEO' link='#' linktext='Floorfilla Media']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.
    [/av_testimonial_single]
    [av_testimonial_single src='472' name='Susan Charice' subtitle='CTO' link='#' linktext='Mambajuice']
    Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
    [/av_testimonial_single]
    [/av_testimonials]
    
    [/av_section][av_section min_height='75' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='main_color' custom_bg='#f8f8f8' src='https://kriesi.at/themes/enfold-startup/files/2015/02/hipster-working.jpg' attachment='473' attachment_size='full' attach='parallax' position='center right' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.3' overlay_color='#ffffff' overlay_pattern='' overlay_custom_pattern='']
    [av_three_fifth first]
    
    [/av_three_fifth][av_two_fifth]
    
    [av_heading heading='Who are we? What do we do?' tag='h1' style='blockquote modern-quote' size='' subheading_active='' subheading_size='15' padding='10' color='' custom_font=''][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='10px' custom_margin_bottom='10px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_textblock size='' font_color='' color='']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
    
    <a href="#">Learn more...</a>
    [/av_textblock]
    
    [/av_two_fifth]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_one_fifth first]
    
    [/av_one_fifth][av_three_fifth]
    
    [av_heading heading='Developed with the <strong>best partners</strong> you can think of' tag='h1' style='blockquote modern-quote modern-centered' size='40' subheading_active='' subheading_size='15' padding='10' color='' custom_font=''][/av_heading]
    
    [/av_three_fifth][av_one_fifth]
    
    [/av_one_fifth][av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='40px' custom_margin_bottom='40px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_partner columns='5' heading='' size='no scaling' border='av-border-deactivate' type='slider' animation='slide' navigation='no' autoplay='true' interval='5']
    [av_partner_logo id='474'][/av_partner_logo]
    [av_partner_logo id='475'][/av_partner_logo]
    [av_partner_logo id='476'][/av_partner_logo]
    [av_partner_logo id='477'][/av_partner_logo]
    [av_partner_logo id='478'][/av_partner_logo]
    [av_partner_logo id='479'][/av_partner_logo]
    [av_partner_logo id='480'][/av_partner_logo]
    [av_partner_logo id='481'][/av_partner_logo]
    [av_partner_logo id='482'][/av_partner_logo]
    [av_partner_logo id='483'][/av_partner_logo]
    [/av_partner]
    [/av_section]
    
    [av_section min_height='75' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='main_color' custom_bg='' src='https://kriesi.at/themes/enfold-startup/files/2015/02/desat-laptop.jpg' attachment='484' attachment_size='full' attach='parallax' position='center center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.5' overlay_color='#ffffff' overlay_pattern='' overlay_custom_pattern='']
    [av_one_fifth first]
    
    [/av_one_fifth][av_three_fifth]
    
    [av_heading tag='h1' padding='10' heading='Want to know when we got news on our latest product? <strong>Sign up for our newsletter now!</strong>' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#000000' size='40' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_three_fifth][av_one_fifth]
    
    [/av_one_fifth][av_one_third first]
    
    [/av_one_third][av_one_third]
    
    [av_contact  (Email address hidden if logged out) ' title='' button='Sign Up' on_send='redirect' sent='Your message has been sent!' link='page,18' subject='' autorespond='' captcha='' hide_labels='aviaTBhide_labels' color='']
    [av_contact_field label='E-Mail' type='text' options='' check='is_email' width='element_three_fourth' multi_select=''][/av_contact_field]
    
    
    [/av_contact]
    
    [/av_one_third][av_one_third]
    
    [/av_one_third]
    [/av_section]
    

    Best regards,
    Rikard

    #834678

    Hi Marcin,

    Ok, then here are the shortcodes:

    Custom shop:

    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-shadow' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='' color='main_color' custom_bg='' src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2017/02/banner-cc.jpg' attachment='1183' attachment_size='full' attach='scroll' position='bottom center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.6' overlay_color='#000000' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0']
    [av_heading heading='Custom Shop<br/>This is a shop overview page built with the layout editor' tag='h1' style='blockquote modern-quote modern-centered' size='40' subheading_active='' subheading_size='15' padding='0' color='custom-color-heading' custom_font='#ffffff' admin_preview_bg='rgb(34, 34, 34)'][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='rgb(34, 34, 34)']
    
    [av_textblock size='' font_color='custom' color='#dddddd' admin_preview_bg='rgb(34, 34, 34)']
    <p style="text-align: center;">Hey there! We are Enfold and we make really beautiful and amazing stuff.
    This can be used to describe what you do, how you do it, & who you do it for.</p>
    [/av_textblock]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='' color='alternate_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0']
    [av_heading heading='Recent Top Sellers' tag='h2' style='blockquote modern-quote modern-centered' size='30' subheading_active='' subheading_size='15' padding='10' color='' custom_font='' admin_preview_bg=''][/av_heading]
    
    [av_productslider columns='4' items='8' offset='0' sort='0' autoplay='yes' interval='5']
    [/av_section]
    
    [av_layout_row border='' min_height='0' color='alternate_color' mobile='av-flex-cells' id='']
    [av_cell_one_half vertical_align='middle' padding='60px,130px,60px,130px' background_color='#f3f3f3' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [av_heading tag='h2' padding='10' heading='Lorem ipsum dolor sit amet, consectetuer adipiscing elit. ' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg=''][/av_heading]
    
    [av_textblock size='' font_color='' color='' admin_preview_bg='']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque <strong>penatibus</strong> et magnis dis parturient montes, nascetur ridiculus mus.
    
    Donec quam felis, ultricies nec, pellentesque eu, <strong>pretium</strong> quis, sem. Nulla consequat massa quis enim.
    [/av_textblock]
    
    [/av_cell_one_half][av_cell_one_half vertical_align='middle' padding='0px' padding_sync='true' background_color='#f3f3f3' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [av_image_hotspot src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-4.jpg' attachment='863' attachment_size='full' animation='fade-in' hotspot_layout='numbered' hotspot_tooltip_display='av-permanent-tooltip' hotspot_mobile='aviaTBhotspot_mobile']
    [av_image_spot tooltip_pos='av-tt-pos-left av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='main_color av-tooltip-shadow' link='' link_target='' hotspot_color='custom' custom_bg='#9cc2df' custom_font='#ffffff' custom_pulse='' hotspot_pos='9.1,70.6']
    Candle by Roger Ramoni
    [/av_image_spot]
    [av_image_spot tooltip_pos='av-tt-pos-left av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='main_color av-tooltip-shadow' link='' link_target='' hotspot_color='custom' custom_bg='#9cc2df' custom_font='#ffffff' custom_pulse='' hotspot_pos='33,31.1']
    Sextant by Victor Secreni
    [/av_image_spot]
    [av_image_spot tooltip_pos='av-tt-pos-left av-tt-align-centered' tooltip_width='av-tt-default-width' tooltip_style='main_color av-tooltip-shadow' link='' link_target='' hotspot_color='custom' custom_bg='#9cc2df' custom_font='#ffffff' custom_pulse='' hotspot_pos='78.4,54']
    Map by Sandra Sounders
    [/av_image_spot]
    [/av_image_hotspot]
    
    [/av_cell_one_half]
    [/av_layout_row]
    
    [av_section min_height='' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0']
    [av_productgrid columns='4' items='8' offset='0' sort='dropdown' paginate='yes']
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='' color='main_color' custom_bg='#f8f8f8' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0']
    [av_one_half first]
    
    [av_icon_box position='left_content' icon_style='av-icon-style-no-border' boxed='' icon='ue8b1' font='entypo-fontello' title='Worldwide delivery' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#bbbbbb' custom_border='' admin_preview_bg='']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.
    [/av_icon_box]
    
    [/av_one_half][av_one_half min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_icon_box position='left_content' icon_style='av-icon-style-no-border' boxed='' icon='ue8e2' font='entypo-fontello' title='Free shipping' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#bbbbbb' custom_border='' admin_preview_bg='']
    Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
    [/av_icon_box]
    
    [/av_one_half][av_one_half first]
    
    [av_icon_box position='left_content' icon_style='av-icon-style-no-border' boxed='' icon='ue824' font='entypo-fontello' title='Secure Payment' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#bbbbbb' custom_border='' admin_preview_bg='']
    Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.
    [/av_icon_box]
    
    [/av_one_half][av_one_half min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_icon_box position='left_content' icon_style='av-icon-style-no-border' boxed='' icon='ue8b9' font='entypo-fontello' title='24/7 Support' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#bbbbbb' custom_border='' admin_preview_bg='']
    enean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus.
    [/av_icon_box]
    
    [/av_one_half]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='large' shadow='no-shadow' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='sign-up' color='main_color' custom_bg='' src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2017/02/banner-cc.jpg' attachment='1183' attachment_size='full' attach='fixed' position='center center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.7' overlay_color='#35383c' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0']
    [av_heading heading='Want to stay up to date?<br/>Subscribe to our Newsletter!' tag='h2' style='blockquote modern-quote modern-centered' size='30' subheading_active='' subheading_size='15' padding='30' color='custom-color-heading' custom_font='#ffffff' admin_preview_bg=''][/av_heading]
    
    [av_one_fifth first]
    
    [/av_one_fifth][av_three_fifth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_contact  (Email address hidden if logged out) ' title='' button='Subscribe' on_send='' sent='Thanks! You will receive an email soon!' link='page,74' subject='' autorespond='' captcha='' hide_labels='aviaTBhide_labels' color='av-custom-form-color av-light-form']
    [av_contact_field label='Name' type='text' options='' check='is_empty' width='element_third' multi_select=''][/av_contact_field]
    [av_contact_field label='E-Mail' type='text' options='' check='is_email' width='element_third' multi_select=''][/av_contact_field]
    [/av_contact]
    
    [/av_three_fifth][av_one_fifth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [/av_one_fifth]
    [/av_section]
    

    Custom product:

    [av_image_hotspot src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-large-1.jpg' attachment='965' attachment_size='full' animation='fade-in' hotspot_layout='numbered' hotspot_tooltip_display='av-permanent-tooltip' hotspot_mobile='aviaTBhotspot_mobile']
    [av_image_spot tooltip_pos='av-tt-pos-right av-tt-align-centered' tooltip_width='av-tt-xlarge-width' tooltip_style='main_color' link='' link_target='' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='36.5,62.8']
    <strong>Stamp approved</strong>
    Sturdy and beautiful, made with the best materials found in the US
    [/av_image_spot]
    [av_image_spot tooltip_pos='av-tt-pos-right av-tt-align-centered' tooltip_width='av-tt-xlarge-width' tooltip_style='main_color' link='' link_target='' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='51.2,50.1']
    <strong>Nutrition extras</strong>
    Aenean commodo ligula eget dolor.
    [/av_image_spot]
    [av_image_spot tooltip_pos='av-tt-pos-below av-tt-align-left' tooltip_width='av-tt-xlarge-width' tooltip_style='main_color' link='' link_target='' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='62.2,26.8']
    <strong>Plant included</strong>
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit!
    [/av_image_spot]
    [/av_image_hotspot]
    
    [av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells' id='']
    [av_cell_one_half vertical_align='middle' padding='50px' padding_sync='true' background_color='#35383c' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [av_heading heading='The Evergreen Package' tag='h2' style='blockquote modern-quote' size='40' subheading_active='' subheading_size='15' padding='10' color='custom-color-heading' custom_font='#ffffff' admin_preview_bg='rgb(34, 34, 34)'][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='rgb(34, 34, 34)']
    
    [av_textblock size='18' font_color='custom' color='#cedbe2']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.
    [/av_textblock]
    
    [/av_cell_one_half][av_cell_one_half vertical_align='middle' padding='50px' padding_sync='true' background_color='#ffffff' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [av_product_button]
    
    [av_product_tabs]
    
    [/av_cell_one_half]
    [/av_layout_row]
    
    [av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells' id='']
    
    [av_cell_one_half vertical_align='middle' padding='150px' padding_sync='true' background_color='#515b5e' src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-office-work.jpg' attachment='480' attachment_size='full' background_attachment='scroll' background_position='center center' background_repeat='stretch' mobile_display='']
    
    [/av_cell_one_half][av_cell_one_half vertical_align='middle' padding='150px,50px,150px,50px' background_color='#35383c' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [av_one_half first]
    
    [av_icon_box position='left_content' boxed='' icon='ue8b9' font='entypo-fontello' title='24/7 Support' link='' linktarget='' linkelement='' font_color='custom' custom_title='#ffffff' custom_content='#cedbe2' color='custom' custom_bg='' custom_font='#ffffff' custom_border='#cedbe2']
    enean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus.
    [/av_icon_box]
    
    [/av_one_half][av_one_half min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_icon_box position='left_content' boxed='' icon='ue8b1' font='entypo-fontello' title='Worldwide delivery' link='' linktarget='' linkelement='' font_color='custom' custom_title='#ffffff' custom_content='#cedbe2' color='custom' custom_bg='' custom_font='#ffffff' custom_border='#cedbe2']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.
    [/av_icon_box]
    
    [/av_one_half][av_one_half first]
    
    [av_icon_box position='left_content' boxed='' icon='ue824' font='entypo-fontello' title='Secure Payment' link='' linktarget='' linkelement='' font_color='custom' custom_title='#ffffff' custom_content='#cedbe2' color='custom' custom_bg='' custom_font='#ffffff' custom_border='#cedbe2']
    Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.
    [/av_icon_box]
    
    [/av_one_half][av_one_half min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_icon_box position='left_content' boxed='' icon='ue8e2' font='entypo-fontello' title='Free shipping' link='' linktarget='' linkelement='' font_color='custom' custom_title='#ffffff' custom_content='#cedbe2' color='custom' custom_bg='' custom_font='#ffffff' custom_border='#cedbe2']
    Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
    [/av_icon_box]
    
    [/av_one_half][/av_cell_one_half][/av_layout_row][av_layout_row border='' min_height='0' color='main_color' mobile='av-flex-cells' id='']
    [av_cell_one_half vertical_align='middle' padding='150px,50px,150px,50px' background_color='#515b5e' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [av_heading tag='h2' padding='10' heading='Use our Template Builder to create custom product pages like this one' color='custom-color-heading' style='blockquote modern-quote' custom_font='#ffffff' size='40' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg=''][/av_heading]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='rgb(34, 34, 34)']
    
    [av_textblock size='18' font_color='custom' color='#cedbe2']
    Lor adipiscing elit. Aene Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.
    [/av_textblock]
    
    [/av_cell_one_half][av_cell_one_half vertical_align='middle' padding='150px' padding_sync='true' background_color='#35383c' src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2017/02/banner-news-alt.jpg' attachment='1057' attachment_size='full' background_attachment='scroll' background_position='center center' background_repeat='stretch' mobile_display='']
    
    [/av_cell_one_half]
    [/av_layout_row]
    
    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='alternate_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_product_upsells display='upsells related' count='4']
    [/av_section]
    

    Best regards,
    Rikard

    #834639
    tech500
    Participant

    Hello,

    We need to show an external website inside an iframe on a page.
    But for some reason we can’t get it working. See the demo link in private.

    <iframe src=”http://edition.cnn.com&#8221; name=”silkphotos” scrolling=”auto” frameborder=”no” align=”left” height = “100%” width = “100%”>
    </iframe>

    • This topic was modified 8 years, 5 months ago by tech500.
    #833961

    In reply to: Tab Section – RTL

    Hi,

    Thank you very much for using our theme and sorry for the late reply to this issue.

    On your page I found 2 problems which will be solved in the next update. Meanwhile please do the following updates:

    File enfold\js\shortcodes.js around line 2961 you find the function:

    
    
                            set_tab_titlte_pos = function()
    			{
                                  ......
                            },
    
    

    Please replace this code by:

    
    
    			set_tab_titlte_pos = function()
    			{
    				//	scroll the tabs if there is not enough room to display them all - rtl allign right to left !!
    				var current_tab = container.find('.av-active-tab-title'),
    					viewport	= container.width(),
    					left_pos	= ( current_tab.position().left * - 1) - (current_tab.outerWidth() / 2) + (viewport / 2);
    			
    				if( ! $('body').hasClass("rtl") )
    				{
    					if( viewport >= min_width )
    					{
    						left_pos = 0;
    					}
    					
    					if(left_pos + min_width < viewport) left_pos = (min_width - viewport) * -1;
    					if(left_pos > 0) left_pos = 0;
    				
    					tab_wrap.css('left',left_pos );
    				}
    				else
    				{
    					var right_pos = 0;
    					
    					if( viewport < min_width )
    					{
    						if( left_pos + min_width > viewport )
    						{
    							if( left_pos > 0 ) left_pos = 0;
    							
    							var right_pos = (left_pos + min_width - viewport) * -1;
    							tab_wrap.css('left', 'auto' );
    							tab_wrap.css('right', right_pos );
    						}
    					}
    					tab_wrap.css('left', 'auto' );
    					tab_wrap.css('right', right_pos );
    				}
    			},
    
    

    This should fix the problem with the tab section titles.

    In file enfold\config-templatebuilder\avia-shortcodes\tab_section.php around line 451 you find the code

    
    
    $tab_link = AviaHelper::save_string($tab_title,'-');
    
    

    Replace this line with:

    
    
    $tab_link = AviaHelper::save_string($tab_title,'-') . '-1';
    
    

    This should fix the problem with jumping to the top of the page when clicking on a section tab.

    If you have problems to update the files please let us know. Give us FTP access and a WP admin account and we can do it for you.

    Make sure, you are using the latest version Enfold 4.1.2.

    Best regards,
    Günter

    #832834

    In reply to: Headshot image

    Hi,

    If you enable debug mode in order to see builder shortcodes: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/, you can then paste this shortcode to a new page to see how it’s done:

    [av_fullscreen size='extra_large' animation='fade' autoplay='true' autoplay_stopper='aviaTBautoplay_stopper' interval='2' control_layout='av-control-hidden' scroll_down='aviaTBscroll_down' perma_caption='aviaTBperma_caption']
    [av_fullscreen_slide slide_type='image' id='28' position='center center' video='http://' mobile_image='' video_cover='' title='Welcome!<br/>I am Enrique Fold' custom_title_size='60' custom_content_size='19' caption_pos='caption_center' link_apply='button button-two' link='lightbox' link_target='' button_label='Learn more' button_color='light' link1='manually,#about' link_target1='' button_label2='Get in Touch' button_color2='theme-color' link2='manually,#contact' link_target2='' font_color='custom' custom_title='#ffffff' custom_content='#6b6b6b' overlay_opacity='0.7' overlay_color='#000000' overlay_pattern='' overlay_custom_pattern='']
    I am a New York based developer specialized in branding and web design.
    Take a look at my work and if you like it I would love to hear from you!
    [/av_fullscreen_slide]
    [av_fullscreen_slide slide_type='image' id='29' position='center center' video='' mobile_image='' video_cover='' title='' custom_title_size='' custom_content_size='' caption_pos='caption_right caption_right_framed caption_framed' link_apply='' link='lightbox' link_target='' button_label='' button_color='light' link1='manually,http://' link_target1='' button_label2='' button_color2='light' link2='manually,http://' link_target2='' font_color='' custom_title='' custom_content='' overlay_opacity='0.1' overlay_color='' overlay_pattern='' overlay_custom_pattern=''][/av_fullscreen_slide]
    [av_fullscreen_slide slide_type='image' id='30' position='center center' video='' mobile_image='' video_cover='' title='' custom_title_size='' custom_content_size='' caption_pos='caption_right caption_right_framed caption_framed' link_apply='' link='lightbox' link_target='' button_label='' button_color='light' link1='manually,http://' link_target1='' button_label2='' button_color2='light' link2='manually,http://' link_target2='' font_color='' custom_title='' custom_content='' overlay_opacity='0.1' overlay_color='' overlay_pattern='' overlay_custom_pattern=''][/av_fullscreen_slide]
    [/av_fullscreen]
    
    [av_section min_height='' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' id='portfolio' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_one_fifth first]
    
    [/av_one_fifth][av_three_fifth]
    
    [av_heading heading='Recent projects I have designed & developed. Would love to add yours too...' tag='h3' style='blockquote modern-quote modern-centered' size='30' subheading_active='' subheading_size='15' padding='10' color='' custom_font=''][/av_heading]
    
    [/av_three_fifth][av_one_fifth]
    
    [/av_one_fifth]
    [/av_section]
    
    [av_masonry_gallery ids='37,36,35,34,33,32' items='24' columns='3' paginate='none' size='fixed' gap='no' overlay_fx='active' caption_elements='none' caption_display='always' container_links='active' id='']
    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' id='about' color='alternate_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_one_fifth first]
    
    [/av_one_fifth][av_three_fifth]
    
    [av_image src='https://kriesi.at/themes/enfold-one-page-portfolio/files/2015/02/desat-boy-m4-180x180.jpg' attachment='38' attachment_size='square' align='center' animation='pop-up' styling='circle' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff'][/av_image]
    
    [av_heading tag='h3' padding='10' heading='This is me. Designer by day & developer by night. I never sleep... almost.' color='' style='blockquote modern-quote modern-centered' custom_font='' size='30' 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='#4ecac2' custom_margin_top='40px' custom_margin_bottom='40px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_textblock size='' font_color='' color='']
    <p style="text-align: center;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.</p>
    [/av_textblock]
    
    [/av_three_fifth][av_one_fifth]
    
    [/av_one_fifth][av_one_fifth first]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_animated_numbers number='112' icon_select='no' icon='ue800' font='entypo-fontello' font_size='' font_size_description='' link='' linktarget='no' color='' custom_color='#444444']
    successful projects
    [/av_animated_numbers]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_animated_numbers number='3265' icon_select='no' icon='ue800' font='entypo-fontello' font_size='' font_size_description='' link='' linktarget='no' color='' custom_color='#444444']
    days of experience
    [/av_animated_numbers]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_animated_numbers number='47' icon_select='no' icon='ue800' font='entypo-fontello' font_size='' font_size_description='' link='' linktarget='no' color='' custom_color='#444444']
    happy clients
    [/av_animated_numbers]
    
    [/av_one_fifth][av_one_fifth]
    
    [/av_one_fifth]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-shadow' bottom_border='no-border-styling' id='video' color='main_color' custom_bg='' src='https://kriesi.at/themes/enfold-one-page-portfolio/files/2015/02/desat-gb_macbook.jpg' attachment='39' attachment_size='full' attach='parallax' position='top center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.8' overlay_color='#000000' overlay_pattern='' overlay_custom_pattern='']
    [av_heading tag='h3' padding='10' heading='What my clients say about me and my work' color='' style='blockquote modern-quote modern-centered' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [av_testimonials style='slider_large' columns='2' interval='6' font_color='custom' custom_title='#ffffff' custom_content='#ffffff']
    [av_testimonial_single src='40' name='Frank Miller' subtitle='CEO' link='#' linktext='Millermedia']
    Enrique is awesome to work with. Incredibly talented, easy to communicate with, responsive with next iterations, and beautiful work. Highly recommended!
    [/av_testimonial_single]
    [av_testimonial_single src='41' name='Sara Andrews' subtitle='Designer' link='#' linktext='Sandrew Inc.']
    We are very pleased with our new brand identity and the way Enrique conducts his business. It has been a great experience working with him and it's already certain that we will hire him again.
    [/av_testimonial_single]
    [/av_testimonials]
    
    [av_partner columns='6' heading='' size='no scaling' border='av-border-deactivate' type='slider' animation='slide' navigation='no' autoplay='true' interval='3']
    [av_partner_logo id='42'][/av_partner_logo]
    [av_partner_logo id='43'][/av_partner_logo]
    [av_partner_logo id='44'][/av_partner_logo]
    [av_partner_logo id='45'][/av_partner_logo]
    [av_partner_logo id='46'][/av_partner_logo]
    [av_partner_logo id='47'][/av_partner_logo]
    [/av_partner]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' id='services' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_one_fifth first]
    
    [/av_one_fifth][av_three_fifth]
    
    [av_heading tag='h3' padding='10' heading='Here is a list of things I can do for you' color='' style='blockquote modern-quote modern-centered' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_three_fifth][av_one_fifth]
    
    [/av_one_fifth][av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#4ecac2' custom_margin_top='40px' custom_margin_bottom='40px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first]
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='ue8c0' font='entypo-fontello' title='Web Design' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Cras dapibus. Vivamus elem nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, port.
    [/av_icon_box]
    
    [/av_one_third][av_one_third]
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='ue856' font='entypo-fontello' title='Web Development' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nut massa quis enim
    [/av_icon_box]
    
    [/av_one_third][av_one_third]
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='ue8b9' font='entypo-fontello' title='24/7 Support' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aene ligula eget dolor.
    [/av_icon_box]
    
    [/av_one_third][av_one_third first]
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='ue803' font='entypo-fontello' title='SEO Consulting' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Aenean commodo ligula eget dolor. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
    [/av_icon_box]
    
    [/av_one_third][av_one_third]
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='ue8f3' font='entypo-fontello' title='Social Media' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aeneart.
    [/av_icon_box]
    
    [/av_one_third][av_one_third]
    
    [av_icon_box position='left_content' boxed='av-no-box' icon='ue859' font='entypo-fontello' title='E-Commerce' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='' custom_bg='' custom_font='' custom_border='']
    Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Cras dapibus.
    [/av_icon_box]
    
    [/av_one_third]
    [/av_section]
    
    [av_section min_height='75' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' id='contact' color='main_color' custom_bg='' src='https://kriesi.at/themes/enfold-one-page-portfolio/files/2015/02/laptop.jpg' attachment='48' attachment_size='full' attach='parallax' position='bottom center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.7' overlay_color='#000000' overlay_pattern='{{AVIA_BASE_URL}}images/background-images/dots-for-dark-background.png' overlay_custom_pattern='']
    
    [av_one_fifth first]
    
    [/av_one_fifth][av_three_fifth]
    
    [av_heading tag='h3' padding='10' heading='Do you like my work? Want to get in touch? Use the form below!' color='' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='30' 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='#ffffff' custom_margin_top='40px' custom_margin_bottom='40px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_contact  (Email address hidden if logged out) ' title='' button='Submit' on_send='' sent='Your message has been sent!' link='manually,http://' subject='' autorespond='' captcha='' hide_labels='aviaTBhide_labels' color='av-custom-form-color av-light-form']
    [av_contact_field label='Name' type='text' options='' check='is_empty' width='element_half' multi_select=''][/av_contact_field]
    [av_contact_field label='E-Mail' type='text' options='' check='is_email' width='element_half' multi_select=''][/av_contact_field]
    [av_contact_field label='Message' type='textarea' check='is_empty' options='' width='' multi_select=''][/av_contact_field]
    [/av_contact]
    
    [/av_three_fifth][av_one_fifth]
    
    [/av_one_fifth][/av_section][av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='stretch' video='' video_ratio='16:9' overlay_opacity='0.2' overlay_color='' overlay_pattern='{{AVIA_BASE_URL}}images/background-images/polygon.png' overlay_custom_pattern='']
    [av_one_fifth first]
    
    [/av_one_fifth][av_three_fifth]
    
    [av_heading tag='h3' padding='10' heading='Or follow me on Dribbble, Facebook or Twitter' color='' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='30' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_three_fifth][av_one_fifth]
    
    [/av_one_fifth][av_one_fifth first]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_font_icon icon='ue8f3' font='entypo-fontello' style='border' caption='' link='manually,http://facebook.com' linktarget='' size='40px' position='center' color='#ffffff'][/av_font_icon]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_font_icon icon='ue8fe' font='entypo-fontello' style='border' caption='' link='manually,http://dribbble.com' linktarget='' size='40px' position='center' color='#ffffff'][/av_font_icon]
    
    [/av_one_fifth][av_one_fifth]
    
    [av_font_icon icon='ue8f1' font='entypo-fontello' style='border' caption='' link='manually,http://twitter.com' linktarget='' size='40px' position='center' color='#ffffff'][/av_font_icon]
    
    [/av_one_fifth][av_one_fifth]
    
    [/av_one_fifth]
    [/av_section]
    

    Best regards,
    Rikard

    #831537

    Thanks Günter, but I don’t think I expressed myself clearly. I don’t want to change my home page. I just want to add a strip in there somewhere that shows the shop categories and don’t know which content shortcode to use to do that.

    Right now, if you scroll down my homepage at http://www.DominiqueHurley.com, you’ll see I use icon boxes to direct to my shop. But is there an automated something or other that will input my shop categories?

    So what I’m trying to do is have something of my shop on my homepage, but I don’t want to get rid of everything that’s there.

    Thanks.

    #824972

    In reply to: Blog Setting Issues

    Hi,

    Please enable debug mode in order to see builder shortcodes: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/, then you can paste this shortcode to a new page to see how it’s done:

    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_one_full first min_height='' vertical_alignment='av-align-top' space='' custom_margin='aviaTBcustom_margin' margin='-40px,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']
    
    [av_feature_image_slider link='category,14,15' items='3' offset='enforce_duplicates' contents='title_read_more' slider_size='2:1' preview_mode='custom' image_size='extra_large' control_layout='av-control-minimal' animation='fade' autoplay='no' interval='5' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.3' overlay_color='#000000' overlay_pattern='' overlay_custom_pattern='']
    
    [/av_one_full]
    [/av_section]
    
    [av_blog blog_type='posts' link='category' blog_style='single-big' columns='3' contents='excerpt' content_length='content' preview_mode='auto' image_size='portfolio' items='1' offset='no_duplicates' paginate='no' conditional='is_subpage']
    
    [av_blog blog_type='posts' link='category' blog_style='blog-grid' columns='2' contents='excerpt' content_length='content' preview_mode='auto' image_size='portfolio' items='6' offset='no_duplicates' paginate='yes']

    Best regards,
    Rikard

    #824085
    jh100
    Participant

    I am using the portfolio grid at the bottom of my portfolio item post to show the next few projects. It works great, except that I want to exclude the currently viewed project. It would work like this: open project 1, scroll to bottom of post, where projects 2, 3, and 4 are showing in the portfolio grid. However, the way it works now, project 1 is also showing in the portfolio grid at the bottom, which is unnecessary, since the user is already on that project post. Is there a way to make it automatically not show the project post that is currently being viewed in the grid? (Site is not live yet, so can’t send a link.)

    #824069

    Hi,

    1- Please add following code to Quick CSS and adjust as needed

    .html_av-overlay-side #top .av-burger-overlay-scroll {
        background: orange;
    }

    2- There is a search icon on your mobile menu :) Should we skip this one?
    3- I added following code to Quick CSS

    
    @media only screen and (max-width: 989px) {
    .responsive.html_av-framed-box.html_av-overlay-side .av-burger-overlay-scroll, .responsive #top #wrap_all .av_mobile_menu_tablet .main_menu {
        left: 0;
        right: auto;
    }
    .html_av-overlay-side .av-burger-overlay-scroll {
        -webkit-transform: translateX(-350px);
        transform: translateX(-350px);
    }}

    Best regards,
    Yigit

    InnovativeAirport
    Participant

    Hello, i have only mainpage (landing page). Now i would like to create a menu, where i can click e.g. our team and it will automatically scrolling down to our team part… How to create it?

    #820504
    XanderHall
    Participant

    Hello,
    I was wondering if I can use code for the learn more button so that instead of linking it to another page it can automatically scroll down the page when you click it? Is there a way to implement this?

    Thanks,
    Xander Hall

    #820399

    Topic: Header static logo

    in forum Enfold
    led-consult
    Participant

    Hi enfold team,

    i have a i tried to insert a 2nd header logo on the right side and this works perfect – but when i scroll down it moves away – therefore i tried to fix the header – worked not to 100% the “original” left logo changes his size. How i can change it? . img in my css do not work – the right logo are to high. Or which solution do you prefer? Thanks!

    div .logo { float: none}
    .logo:first-child img { display: none}
    .logo img {max-width: 320px}
    .logo.first-logo {z-index: 3}
    .logo.second-logo {z-index: 2}
    .logo.second-logo {width: 100%}
    .logo.second-logo a {float: right}
    .logo.second-logo a {padding-top: 20px}
    .logo.first-logo a, .logo.second-logo a {display: inline-block}

    @media only screen and (max-width: 768px) {
    .logo.second-logo a { float: left }
    .responsive #top .logo { height: 88px/*auto*/ }
    .responsive #top .logo:first-child { display: none }
    }

    #header_main_alternate { border : medium none; }

    .html_header_top.html_bottom_nav_header #header_main{
    border: none;}

    #header_main_alternate {float: right}
    #mobile-advanced {
    background-image: url(“/wp-content/uploads/2017/06/cropped-PRE_Logo_RGB_150_RZ.png”);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 10% auto;
    padding: 15% 0 !important ;
    }

    /*header fixed*/
    #header_main .container, .logo a {
    height: 80px !important;
    line-height: 88px !important;
    max-height: none !important;
    }

    .header_color .main_menu ul:first-child > li > a {
    height: 80px !important;
    line-height: 88px !important;
    }

Viewing 30 results - 541 through 570 (of 1,181 total)