Viewing 30 results - 3,031 through 3,060 (of 7,502 total)
  • Author
    Search Results
  • #944412

    Hey Roel,

    Thank you for using Enfold.

    Yes, this is possible. Just duplicate the default search icon filter and modify it a bit. Add it in the functions.php file.

    /*  Header Meta Search Icon */
    if(!function_exists('avia_append_header_meta_search_icon'))
    {
    	//first append search item to main menu
    	add_filter( 'wp_nav_menu_items', 'avia_append_header_meta_search_icon', 9997, 2 );
    	add_filter( 'avf_fallback_menu_items', 'avia_append_header_meta_search_icon', 9997, 2 );
    
    	function avia_append_header_meta_search_icon( $items, $args )
    	{		
    	    if (is_object($args) && $args->theme_location == 'avia2')
    	    {
    			global $avia_config;
    	        ob_start();
    	        get_search_form();
    	        $form =  htmlspecialchars(ob_get_clean()) ;
    
    	        $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown menu-item-avia-special">
    							<a href="?s=" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a>
    	        		   </li>';
    	    }
    	    return $items;
    	}
    }

    Best regards,
    Ismael

    #944398

    Hey Pappasdg,

    Thank you for using Enfold.

    Yes, this is possible. Use the “wp_nav_menu_items” filter to append more items to the menu.

    /* Phone Icon */
    if(!function_exists('avia_append_phone_icon'))
    {
    	//first append search item to main menu
    	add_filter( 'wp_nav_menu_items', 'avia_append_phone_icon', 9997, 2 );
    	add_filter( 'avf_fallback_menu_items', 'avia_append_phone_icon', 9997, 2 );
    
    	function avia_append_phone_icon( $items, $args )
    	{		
    	    if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu"))
    	    {
    	        $items .= '<li id="menu-item-phone" class="noMobile menu-item menu-phone menu-item-avia-special">
    							<a href="#" '.av_icon_string('phone').'><span class="avia_hidden_link_text">'.__('Phone','avia_framework').'</span></a>
    	        		   </li>';
    	    }
    	    return $items;
    	}
    }
    
    function avf_default_icons_mod($icons) {
    	$icons['phone']	= array( 'font' =>'entypo-fontello', 'icon' => 'ue854');
    	return $icons;
    }
    add_filter('avf_default_icons','avf_default_icons_mod', 10, 1);

    This code is based on the ajax search icon.

    Best regards,
    Ismael

    #944044
    sinergia_bn
    Participant

    Hi,
    i’m using Enfold
    my problem is with structured data, i can’t write some fields and Google search console reports errors
    in particular this value:

    author – entry-title updated

    I have attached an image that shows the missing fields in a blog type article.
    Missing value in the xml schema
    How i correct the missing value the xml schema?

    Thanks

    #943920

    Hey Steve,

    Please check the Append search icon to main menu option under Enfold->Main Menu.

    Best regards,
    Rikard

    #943595

    Hey arnacampbell,
    Welcome and thanks for choosing Enfold, lets take a look at your questions…
    HEADER:
    – I’d like the phone number in the header with the social icons.
    To move the phone & social I adjusted at to Enfold Theme Options > Header > Extra Elements > Header Social Icons:
    2018-04-18_060925
    – I’d like a button on the left, just like https://www.campbellhillsguestranch.com
    To create this button I added this css to your Enfold Theme Options > General Styling > Quick CSS field:

    @media only screen and (min-width: 767px) { 
    a.res-button,a.res-button:visited {
        display: inline-block;
        font: 400 16px/32px 'EB Garamond',"Times New Roman",Georgia,serif;
        text-decoration: none;
        text-align: center;
        color: #fff;
        padding: 0 15px;
        margin: 0 auto;
        min-width: 24px;
        letter-spacing: .05em;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        border: 1px dashed #33270E;
        background-image: url(//static.campbellhillsguestranch.com/themes/CampBell17/images/layout/leatherBG-light.jpg);
        background-repeat: repeat-x;
        background-position: left center;
        float: left !important;
        left: 10px;
        top: 60px;
        position: absolute;
        transition: transform .3s,box-shadow .3s;
    }
    }

    *note you will need to adjust the image url when you remove the other theme.
    Then a added this button code to Enfold Theme Options > Header > Extra Elements > Phone Number or small info text:

    <a class="res-button" href="https://www.campbellhillsguestranch.com/site/guest-ranch-vacations/rates-and-availability.html">Reservations</a>

    – Can the drop down menu have the same background as the header? With white text?
    To add the background-image to your sub-menu, I added this css:

    .header_color .main_menu ul ul {background: #e4d7bf url(https://static.campbellhillsguestranch.com/themes/CampBell17/images/layout/leatherBG.jpg) no-repeat right top !important;}
    
    .header_color .main_menu ul ul.sub-menu li a { background: transparent; }
    
    .header_color .main_menu ul ul.sub-menu li a:hover { background-color:rgba(250,250,250,0.3)!important;}

    *again adjust the image url
    – Rope separator with drop shadow (same as https://www.campbellhillsguestranch.com). At the moment, I’ve just attached the rope to the background header image but it leaves a space. I’d like it to overlap.
    I added the box-shadow to your header image:

    .header_color .header_bg {
    box-shadow: 0 4px 10px 2px rgba(0,0,0,.4);
    }

    It still isn’t overlapping correctly, but I will have to research this some more.
    So other than the overlap, please check these before we move on to the next section.

    Best regards,
    Mike

    #943048

    In reply to: Hauptmenü

    Hi,

    Hast Du auch versucht:

    In Dashboard -> Enfold -> Shop Options -> Header Shopping Cart Icon Selectbox die 3. auswählen (Always Display attached to the main menu)

    Das sollte das Warenkorbsymbol an den Platz des search icons bringen.

    Ansonsten bitte um einen admin account, damit wir uns das Backend anschauen können. Danke.

    Best regards,
    Günter

    #942985

    Hi,

    Shortcode for the home page:

    [av_layerslider id='4']
    
    [av_layout_row border='' min_height_percent='' min_height='0' color='main_color' mobile='av-flex-cells' id='3 col intro' av_element_hidden_in_editor='0']
    [av_cell_one_third vertical_align='top' padding='70px,50px,70px,50px' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [av_icon_box position='left_content' icon_style='av-icon-style-no-border' boxed='' icon='ue862' font='entypo-fontello' title='A real Time-Saver' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#bbbbbb' custom_border='' admin_preview_bg='rgb(255, 255, 255)']
    Enfold is a powerful Theme that comes with an easy <strong>drag and drop admin interface</strong>. Set up new sites in no time!
    [/av_icon_box]
    
    [/av_cell_one_third][av_cell_one_third vertical_align='top' padding='70px,50px,70px,50px' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [av_icon_box position='left_content' icon_style='av-icon-style-no-border' boxed='' icon='ue8b9' font='entypo-fontello' title='Free updates & support' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#bbbbbb' custom_border='' admin_preview_bg='rgb(255, 255, 255)']
    180.000 customers can't be wrong.
    We offer incredible support and <strong>free updates</strong> for all our themes!
    [/av_icon_box]
    
    [/av_cell_one_third][av_cell_one_third vertical_align='top' padding='70px,50px,70px,50px' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [av_icon_box position='left_content' icon_style='av-icon-style-no-border' boxed='' icon='ue8dd' font='entypo-fontello' title='No Rocket Science' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#bbbbbb' custom_border='' admin_preview_bg='rgb(255, 255, 255)']
    Whether you have never touched a line of code or are a WordPress-Ninja, this theme is built for users of <strong>all skill levels</strong>…
    [/av_icon_box]
    
    [/av_cell_one_third]
    [/av_layout_row]
    
    [av_layout_row border='' min_height_percent='' min_height='' color='main_color' mobile='av-flex-cells' id='Best Rated' av_element_hidden_in_editor='0']
    [av_cell_one_half vertical_align='middle' padding='150px,0px,150px,150px' background_color='#f8f8f8' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display='']
    
    [av_one_full first min_height='' vertical_alignment='av-align-top' space='no_margin' custom_margin='aviaTBcustom_margin' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='left-to-right' mobile_display='']
    
    [av_heading tag='h1' padding='20' heading='More than 100.000 users and the best rating on Themeforest' color='custom-color-heading' style='blockquote modern-quote' custom_font='#000000' 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='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_textblock size='' font_color='' color='' admin_preview_bg='rgb(255, 255, 255)']
    Enfold is the best rated top seller on <a href="https://themeforest.net/?ref=Kriesi" target="_blank">Themeforest</a>. There is no other theme with that many sales that has an average rating of 4.85. Heck, you will be hard pressed to find <strong>ANY</strong> product on the web with that many sales and a rating that good ;)
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_font_icon icon='ue808' font='entypo-fontello' style='' caption='' link='' linktarget='' size='40px' position='left' color='#e2bc12'][/av_font_icon]
    
    [av_font_icon icon='ue808' font='entypo-fontello' style='' caption='' link='' linktarget='' size='40px' position='left' color='#e2bc12'][/av_font_icon]
    
    [av_font_icon icon='ue808' font='entypo-fontello' style='' caption='' link='' linktarget='' size='40px' position='left' color='#e2bc12'][/av_font_icon]
    
    [av_font_icon icon='ue808' font='entypo-fontello' style='' caption='' link='' linktarget='' size='40px' position='left' color='#e2bc12'][/av_font_icon]
    
    [av_font_icon icon='ue808' font='entypo-fontello' style='' caption='' link='' linktarget='' size='40px' position='left' color='#e2bc12'][/av_font_icon]
    
    [av_hr class='invisible' height='42' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_button label='Get it now' link='manually,http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?license=regular&open_purchase_for_item_id=4519990&purchasable=source&ref=Kriesi' link_target='' size='large' position='left' icon_select='yes' icon_hover='aviaTBicon_hover' icon='ue859' font='entypo-fontello' color='dark' custom_bg='#444444' custom_font='#ffffff' admin_preview_bg='rgb(255, 255, 255)']
    
    [/av_one_full][/av_cell_one_half][av_cell_one_half vertical_align='middle' padding='500px,0px,500px,0px' background_color='#f8f8f8' src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2017/01/mockup.png' attachment='298' attachment_size='full' background_attachment='scroll' background_position='bottom left' background_repeat='no-repeat' mobile_display='av-hide-on-mobile']
    
    [/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' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='Intro' 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_hr class='invisible' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_heading tag='h1' padding='20' heading='A theme packed with great features' 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_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='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_image_hotspot src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/multi_apple-1.jpg' attachment='376' attachment_size='full' animation='bottom-to-top' 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-centered' tooltip_width='av-tt-large-width' tooltip_style='main_color av-tooltip-shadow' link='' link_target='' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='13.7,27.8']
    Beautiful new demos with each release
    [/av_image_spot]
    [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-centered' tooltip_width='av-tt-large-width' tooltip_style='main_color av-tooltip-shadow' link='' link_target='' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='21,69.9']
    Free Stock Pictures included in all demos
    [/av_image_spot]
    [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-centered' tooltip_width='av-tt-large-width' tooltip_style='main_color av-tooltip-shadow' link='' link_target='' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='48.6,85.3']
    Retina ready and responsive - works great on devices of any size
    [/av_image_spot]
    [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-centered' tooltip_width='av-tt-large-width' tooltip_style='main_color av-tooltip-shadow' link='' link_target='' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='87.1,40.1']
    Amazing Theme Options for unlimited colors and styles
    [/av_image_spot]
    [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-centered' tooltip_width='av-tt-large-width' tooltip_style='main_color av-tooltip-shadow' link='' link_target='' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='63.2,11.3']
    Powerful Visual Layout Editor
    [/av_image_spot]
    [/av_image_hotspot]
    
    [av_hr class='invisible' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_one_half first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in' mobile_display='']
    
    [av_textblock size='' font_color='' color='' admin_preview_bg='rgb(255, 255, 255)']
    Enfold is the best rated top seller on Themeforest for a reason. It comes with <strong>a lot of great features and demos</strong>, but at the same time we always try to keep things as simple and intuitive as possible, so that users with little WordPress or theming experience have no problem using it as well.
    [/av_textblock]
    
    [/av_one_half][av_one_half min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in' mobile_display='']
    
    [av_textblock size='' font_color='' color='' admin_preview_bg='rgb(255, 255, 255)']
    In addition to that, we offer high quality support in our forum around the clock. 40.000 registered users and more than <strong>120.000 entries</strong> show that we care that your site runs as smooth as possible. You got a question? Don't hesitate to get in touch :)
    [/av_textblock]
    
    [/av_one_half]
    [/av_section]
    
    [av_masonry_gallery ids='352,350,355,353,354,351' items='6' columns='6' paginate='none' size='fixed' gap='large' overlay_fx='active' container_links='active' id='' caption_elements='title' caption_styling='' caption_display='on-hover' color='custom' custom_bg='#35383c']
    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='border-extra-arrow-down' bottom_border_diagonal_color='#ffffff' bottom_border_diagonal_direction='' bottom_border_style='' id='Feature List' color='main_color' custom_bg='#35383c' 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 tag='h1' padding='0' heading='Can’t get enough?<br/>Here are even more features!' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='40' 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='45px' custom_margin_bottom='45px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='rgb(34, 34, 34)']
    
    [av_one_third first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='bottom-to-top' mobile_display='']
    
    [av_iconlist position='left' iconlist_styling='av-iconlist-small' custom_title_size='18' custom_content_size='' font_color='custom' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#ffffff' custom_border='' admin_preview_bg='rgb(34, 34, 34)']
    [av_iconlist_item title='Clean and modern Design' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='Drag and Drop Template Builder' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='Ajax Instant Search' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='Translation ready' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='WooCommerce ready' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='WooCommerce Bookings Support' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='WPML ready' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='Responsive design' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='Child theme support' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [/av_iconlist]
    
    [/av_one_third][av_one_third min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='bottom-to-top' mobile_display='']
    
    [av_iconlist position='left' iconlist_styling='av-iconlist-small' custom_title_size='18' custom_content_size='' font_color='custom' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#ffffff' custom_border='' admin_preview_bg='rgb(34, 34, 34)']
    [av_iconlist_item title='Retina Ready' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='Events Calendar Integration' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='2D + 3D Layerslider Slideshow' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='Video Support + Slideshows' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='Unlimited Color Options' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='Unique unlimited sidebars' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='Portfolio Pages & Ajax Portfolios' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='Free Lifetime Updates' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='Contact Form Builder' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [/av_iconlist]
    
    [/av_one_third][av_one_third min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='bottom-to-top' mobile_display='']
    
    [av_iconlist position='left' iconlist_styling='av-iconlist-small' custom_title_size='18' custom_content_size='' font_color='custom' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#ffffff' custom_border='' admin_preview_bg='rgb(34, 34, 34)']
    [av_iconlist_item title='Easy One Page Design' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='More than 2 dozen Demos' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='Single click Demo import' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='Top Notch Support' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='Regular Updates and Improvements' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='Strong SEO foundation' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='Compatible with major SEO plugins' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='bbPress Forum ready' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [av_iconlist_item title='Parallax Effects' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item]
    [/av_iconlist]
    
    [/av_one_third]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='border-extra-arrow-down' bottom_border_diagonal_color='#ffffff' bottom_border_diagonal_direction='' bottom_border_style='' id='Demos' color='main_color' custom_bg='' src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/isometric-1.jpg' attachment='447' attachment_size='full' attach='scroll' position='center left' repeat='contain' 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 min_height='' vertical_alignment='av-align-top' space='no_margin' custom_margin='aviaTBcustom_margin' margin='50px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='left-to-right' mobile_display='']
    
    [/av_one_half][av_one_half min_height='' vertical_alignment='av-align-top' space='no_margin' custom_margin='aviaTBcustom_margin' margin='0px' margin_sync='true' padding='50px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='rgba(255,255,255,0.85)' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='left-to-right' mobile_display='']
    
    [av_heading tag='h1' padding='20' heading='A growing library of more than 2 dozen demos' color='custom-color-heading' style='blockquote modern-quote' custom_font='#000000' size='40' subheading_active='' subheading_size='15' custom_class=''][/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='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_textblock size='' font_color='' color='' admin_preview_bg='rgb(255, 255, 255)']
    Our demos are one of a kind: we only offer<strong> full concept demos</strong> with multiple pages that show whole projects, unlike others who only include a single page and call that a demo ;)
    
    You can import them with <strong>a single click</strong>, they are easily adaptable to your needs and you can chose from a variety of layouts and niche designs. In addition to that you can also use the <strong>demo images used in our demo for your own project</strong>!
    [/av_textblock]
    
    [/av_one_half]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='Visual Editor' 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_heading tag='h1' padding='20' heading='Our great Visual Layout Editor just got better:<br/>Now with live previews!' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#000000' size='40' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg=''][/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='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_image_hotspot src='https://kriesi.at/themes/enfold-2017/files/2017/02/layout_editor.jpg' attachment='3001' attachment_size='full' animation='bottom-to-top' 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-left' tooltip_width='av-tt-large-width' tooltip_style='main_color av-tooltip-shadow' link='' link_target='' hotspot_color='custom' custom_bg='#22689e' custom_font='#ffffff' custom_pulse='#22689e' hotspot_pos='22.1,29']
    <strong>Step 1:</strong> Add an element to the visual editor canvas
    [/av_image_spot]
    [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-left' tooltip_width='av-tt-xlarge-width' tooltip_style='main_color av-tooltip-shadow' link='' link_target='' hotspot_color='custom' custom_bg='#22689e' custom_font='#ffffff' custom_pulse='#22689e' hotspot_pos='63.8,8.3']
    <strong>Step 2:</strong> Edit the element to your likings. A visual preview will be shown to the right for most content elements.
    [/av_image_spot]
    [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-centered' tooltip_width='av-tt-large-width' tooltip_style='main_color av-tooltip-shadow' link='' link_target='' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='39.7,78.6']
    <strong>Step 3:</strong> Rinse and repeat, until you got a great website ;)
    [/av_image_spot]
    [/av_image_hotspot]
    
    [av_hr class='invisible' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_one_half first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in' mobile_display='']
    
    [av_textblock size='' font_color='' color='' admin_preview_bg='rgb(255, 255, 255)']
    There are several approaches when it comes to content editing but we consider our Advanced Layout Editor one of the best.
    
    We prefer a backend editor to one that is placed on the frontend, because there is less clutter and the layout process is usually much easier.
    [/av_textblock]
    
    [/av_one_half][av_one_half min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in' mobile_display='']
    
    [av_textblock size='' font_color='' color='' admin_preview_bg='rgb(255, 255, 255)']
    However, there are merits to a frontend editor. The biggest one is that you can see how the element your are editing looks like at any given time.
    
    This is why we have implemented a live preview window for our content elements. So now you got the best of both worlds: easy layout building and visual content editing :)
    [/av_textblock]
    
    [/av_one_half]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='Newsletter' color='main_color' custom_bg='' src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-office-work.jpg' attachment='480' attachment_size='full' attach='fixed' position='center center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.9' overlay_color='#35383c' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0']
    [av_heading tag='h1' padding='20' heading='Another great feature included in the theme:<br/>Mailchimp Newsletter Sign Up' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='40' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)'][/av_heading]
    
    [av_one_fifth first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in' mobile_display='']
    
    [/av_one_fifth][av_three_fifth min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in' mobile_display='']
    
    [av_contact  (Email address hidden if logged out) ' title='' button='Subscribe' on_send='' sent='Thanks for subscribing! ' link='manually,http://' subject='' autorespond='' captcha='' hide_labels='aviaTBhide_labels' form_align='' color='av-custom-form-color av-light-form' admin_preview_bg='rgb(34, 34, 34)']
    [av_contact_field label='Name' type='text' options='' check='is_empty' width='element_third' multi_select='' av_contact_preselect=''][/av_contact_field]
    [av_contact_field label='E-Mail' type='text' options='' check='is_email' width='element_third' multi_select='' av_contact_preselect=''][/av_contact_field]
    [/av_contact]
    
    [av_textblock size='' font_color='custom' color='#cecece' admin_preview_bg='rgb(34, 34, 34)']
    <p style="text-align: center;">Use either normal contact forms, like the one above, or similar looking mailchimp forms that let your customer directly subscribe to your mailchimp newsletter!</p>
    [/av_textblock]
    
    [/av_three_fifth][av_one_fifth min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in' mobile_display='']
    
    [/av_one_fifth]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='no-padding' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='Plugin Header' color='main_color' custom_bg='#f1f1f1' 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_hr class='invisible' height='40' 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' admin_preview_bg='']
    
    [av_heading tag='h1' padding='0' heading='Deep integration for market-leading plugins.<br/>And of course working out of the box with thousands more...' color='' style='blockquote modern-quote modern-centered' custom_font='' size='40' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)'][/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='70px' custom_margin_bottom='5px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    [/av_section]
    
    [av_tab_section transition='av-tab-slide-transition' padding='large' tab_pos='av-tab-above-content' tab_padding='none' initial='5' id='Plugins' av_element_hidden_in_editor='0' av_admin_tab_active='2' bg_color='#f1f1f1' color='#919191']
    
    [av_tab_sub_section tab_title='bbPress Forums' vertical_align='middle' icon_select='image_top' icon='ue800' font='entypo-fontello' tab_image='3004' tab_image_style='' color='#333333' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [av_one_half first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/bbpress-ipad.jpg' attachment='541' attachment_size='full' align='center' styling='no-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='rgb(255, 255, 255)'][/av_image]
    
    [/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_heading tag='h1' padding='0' heading='Easily build and manage your community with the bbPress forum plugin' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/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='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_textblock size='' font_color='' color='' admin_preview_bg='']
    <strong>bbPress</strong> is a forum software with a twist from the creators of WordPress. Easily setup discussion forums inside your WordPress powered site.
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_button label='Learn more about bbPress' link='manually,https://bbpress.org/' link_target='_blank' size='large' position='left' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue80b' font='entypo-fontello' color='custom' custom_bg='#8dc770' custom_font='#ffffff' admin_preview_bg='']
    
    [/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title='Yoast SEO for WP' vertical_align='middle' icon_select='image_top' icon='ue800' font='entypo-fontello' tab_image='3012' tab_image_style='' color='#333333' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [av_one_half first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_heading tag='h1' padding='0' heading='Optimize your site for search engines with Yoast SEO for WordPress' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/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='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_textblock size='' font_color='' color='' admin_preview_bg='']
    <strong>Yoast SEO</strong> allows you to easily optimize your WordPress site with one plugin for all search engines. It allows for real time content analysis of your blog entries and has many more features to streamline your site. A premium version of the plugin is also available.
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_button label='Learn more about Yoast SEO' link='manually,https://yoast.com/wordpress/plugins/seo/' link_target='_blank' size='large' position='left' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue803' font='entypo-fontello' color='custom' custom_bg='#0075b3' custom_font='#ffffff' admin_preview_bg='']
    
    [/av_one_half][av_one_half min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_image src='https://kriesi.at/themes/enfold-2017/files/2017/01/yoast-ipad.jpg' attachment='3204' attachment_size='full' align='center' styling='no-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='rgb(255, 255, 255)'][/av_image]
    
    [/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title='Gravity Forms' vertical_align='middle' icon_select='image_top' icon='ue800' font='entypo-fontello' tab_image='3007' tab_image_style='' color='#333333' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [av_one_half first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/gravity-ipad.jpg' attachment='543' attachment_size='full' align='center' styling='no-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='rgb(255, 255, 255)'][/av_image]
    
    [/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_heading tag='h1' padding='0' heading='Build great forms with GravityForms' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/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='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_textblock size='' font_color='' color='' admin_preview_bg='']
    Although Enfold has a great and simple form builder for everyday contact forms, sometimes what you need is something more sophisticated with a lot more options. Thats where <strong>GravityForms</strong> shines!
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_button label='Learn more about GravityForms' link='manually,http://www.gravityforms.com/' link_target='_blank' size='large' position='left' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue849' font='entypo-fontello' color='custom' custom_bg='#365666' custom_font='#ffffff' admin_preview_bg='']
    
    [/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title='Slider Revolution' vertical_align='middle' icon_select='image_top' icon='ue800' font='entypo-fontello' tab_image='3009' tab_image_style='' color='#333333' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [av_one_half first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_heading tag='h1' padding='0' heading='Use Slider Revolution for beautiful slides' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/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='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_textblock size='' font_color='' color='' admin_preview_bg='']
    Although the plugin is not included as part of the theme (other than the Layerslider Plugin, which is) the theme will show an extra template builder element for the Slider Revolution Plugin for easier integration with our layouts. No Matter with Layer Based Slider you prefer, we got you covered!
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_button label='Learn more about Slider Revolution' link='manually,https://codecanyon.net/item/slider-revolution-responsive-wordpress-plugin/2751380?ref=Kriesi' link_target='_blank' size='large' position='left' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue891' font='entypo-fontello' color='custom' custom_bg='#c50000' custom_font='#ffffff' admin_preview_bg='']
    
    [/av_one_half][av_one_half min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/revslider-ipad.jpg' attachment='546' attachment_size='full' align='center' styling='no-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='rgb(255, 255, 255)'][/av_image]
    
    [/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title='Woo Commerce' vertical_align='middle' icon_select='image_top' icon='ue800' font='entypo-fontello' tab_image='3010' tab_image_style='' color='#333333' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [av_one_half first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/woo-ipad.jpg' attachment='522' attachment_size='full' align='center' styling='no-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='rgb(255, 255, 255)'][/av_image]
    
    [/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_heading tag='h1' padding='0' heading='Open your own WooCommerce Online Store' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/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='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_textblock size='' font_color='' color='' admin_preview_bg='']
    <strong>WooCommerce</strong> is now the most popular eCommerce platform on the web, so you can rest assured you're in good company. Build beautiful and functional stores without any hassle by using our Enfold Theme in conjunction with WooCommerce.
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_button label='Learn more about WooCommerce' link='manually,https://woocommerce.com/?ref=84' link_target='_blank' size='large' position='left' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue859' font='entypo-fontello' color='custom' custom_bg='#a46497' custom_font='#ffffff' admin_preview_bg='']
    
    [/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title='Layer Slider Plugin' vertical_align='middle' icon_select='image_top' icon='ue800' font='entypo-fontello' tab_image='3008' tab_image_style='' color='#333333' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [av_one_half first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_heading tag='h1' padding='0' heading='Use LayerSlider for amazing custom animations. The plugin is the only one included in the theme' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/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='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_textblock size='' font_color='' color='' admin_preview_bg='']
    Our goto slider when it comes to complex layer-based animation sliders. The Plugin is included as part of the theme but no worries, if you don't use we wont load it, to take care of your server resources.
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_button label='Learn more about the LayerSlider' link='manually,https://codecanyon.net/item/layerslider-responsive-wordpress-slider-plugin/1362246?ref=Kriesi' link_target='_blank' size='large' position='left' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue84e' font='entypo-fontello' color='custom' custom_bg='#312853' custom_font='#ffffff' admin_preview_bg='']
    
    [/av_one_half][av_one_half min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/layerslider-ipad.jpg' attachment='544' attachment_size='full' align='center' styling='no-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='rgb(255, 255, 255)'][/av_image]
    
    [/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title='Mailchimp Newsletter' vertical_align='middle' icon_select='image_top' icon='ue800' font='entypo-fontello' tab_image='3005' tab_image_style='' color='#333333' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [av_one_half first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/mailchimp-ipad-1.jpg' attachment='545' attachment_size='full' align='center' styling='no-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='rgb(255, 255, 255)'][/av_image]
    
    [/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_heading tag='h1' padding='0' heading='Mailchimp Newsletter Integration' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/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='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_textblock size='' font_color='' color='' admin_preview_bg='']
    Not technically a plugin but only the most popular newsletter service there is. And Enfold allows you to create subscription forms out of the box. Just enter your <strong>Mailchimp</strong> API key and start collecting subscribers!
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_button label='Learn more about Mailchimp' link='manually,https://mailchimp.com' link_target='_blank' size='large' position='left' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue836' font='entypo-fontello' color='custom' custom_bg='#f58eac' custom_font='#ffffff' admin_preview_bg='']
    
    [/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title='The Events Calendar' vertical_align='middle' icon_select='image_top' icon='ue800' font='entypo-fontello' tab_image='3006' tab_image_style='' color='#333333' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [av_one_half first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_heading tag='h1' padding='0' heading='Manage and organize events with this amazing plugin' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/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='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_textblock size='' font_color='' color='' admin_preview_bg='']
    A solid, feature-rich calendar and events management suite that’s scalable from soup to nuts. Also comes with a Pro version and a ton of extensions. Definitely check it out!
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_button label='Learn more about the Evens Calendar' link='manually,http://mbsy.co/6cr37' link_target='_blank' size='large' position='left' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue84e' font='entypo-fontello' color='custom' custom_bg='#1173b3' custom_font='#ffffff' admin_preview_bg='']
    
    [/av_one_half][av_one_half min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/events-ipad.jpg' attachment='542' attachment_size='full' align='center' styling='no-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='rgb(255, 255, 255)'][/av_image]
    
    [/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title='Multi Language' vertical_align='middle' icon_select='image_top' icon='ue800' font='entypo-fontello' tab_image='3011' tab_image_style='' color='#333333' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [av_one_half first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display='']
    
    [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/wpml-ipad.jpg' attachment='547' attachment_size='full' align='center' styling='no-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='rgb(255, 255, 255)'][/av_image]
    
    [/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_heading tag='h1' padding='0' heading='Create sites with multiple languages with Enfold and WPML' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/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='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_textblock size='' font_color='' color='' admin_preview_bg=''] WPML allows running fully multilingual websites with WordPress, making it easy to translate WordPress pages, posts, tags, categories and themes. And since our Themes are optimised for <strong>WPML</strong> the whole experience gets even better!
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_button label='Learn more about WPML' link='manually,http://bit.ly/kwpml' link_target='_blank' size='large' position='left' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue859' font='entypo-fontello' color='custom' custom_bg='#307a9b' custom_font='#ffffff' admin_preview_bg='']
    
    [/av_one_half][/av_tab_sub_section][/av_tab_section][av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='Testimonials' color='main_color' custom_bg='' src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-office-work.jpg' attachment='480' attachment_size='full' attach='fixed' position='center center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.9' overlay_color='#35383c' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0']
    [av_heading heading='What our customers say' 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_testimonials style='slider_large' columns='2' interval='5' font_color='custom' custom_title='#ffffff' custom_content='#e8e8e8' admin_preview_bg='rgb(34, 34, 34)']
    [av_testimonial_single src='' name='Macky Mac' subtitle='' link='' linktext='']
    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_testimonial_single src='' name='Franco Moriti' subtitle='' link='' linktext='']
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt.
    [/av_testimonial_single]
    [/av_testimonials]
    [/av_section]
    
    [av_section min_height='' min_height_px='500px' padding='no-padding' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='Support' color='main_color' custom_bg='#ffffff' 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_hr class='invisible' height='70' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [av_heading tag='h1' padding='0' heading='Real support by real people' color='' style='blockquote modern-quote modern-centered' custom_font='' size='40' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)'][/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='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    
    [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_textblock size='' font_color='' color='' admin_preview_bg='']
    <p style="text-align: center;">We offer the best support and service you can imagine. Use our support forum if you have any questions and our team will respond. We have thousands of solved threads and a customer satisfaction of 97%. We do care that your site runs great!</p>
    [/av_textblock]
    
    [/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_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-support-1.jpg' attachment='582' attachment_size='full' align='center' styling='no-styling' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='bottom-to-top' admin_preview_bg=''][/av_image]
    [/av_section]
    

    Best regards,
    Rikard

    #942658
    goosgrafisch
    Participant

    Hi Kriesi team!
    I’m totaly new to Enfold but the First impression that it’s looking good!
    I’m working on my new website and I’m struggling with some simple issues.
    I already searched the forum but don’t get the right awnsers. I already tried several CSS codes but don’t get things fixed.

    • I want to get rid of the white ‘stroke’ above and under the header. I think it’s a default margin. I tried to edit those with negative numbers but doesn’t tackles the problem.
    • I want to set the dark gray ‘stroke’ underneath the header to 50 pixels. It’s just an visual thing. I also tried to make use of an separator and set those settings to 50 px but doesn’t work. Maybe also something with default margin.
    • I want the copyright in the footer to be placed in the center. I’ve solved this now with CSS but maybe you can add this to your develop wish list?

    Thanks in advance.
    BR Jolanda Goos

    • This topic was modified 8 years ago by goosgrafisch. Reason: wrong topic title
    #942655

    Topic: Menu issues

    in forum Enfold
    goosgrafisch
    Participant

    Hi Kriesi team!
    I’m totaly new to Enfold but the First impression that it’s looking good!
    I’m working on my new website and I’m struggling with some simple issues.
    I already searched the forum but don’t get the right awnsers. I already tried several CSS codes but don’t get things fixed.

    Some menu issues I can’t figure out:
    • I want to logo to be in one line with the topmenu buttons. So that logo and menu text is vertical aligned.
    • The header picture must start underneath the semi-transparant menu. Just like https://kriesi.at/themes/enfold-restaurant/ that’s what I’m aiming for.
    • I would like a dropshadow under the topmenu. At the Header Style settings I can choose for ‘Minimal with dropshadow’ but than I’ll loose the indicators and transparency which I like. It would be great if you can select the features. But can I add an dropshadow and keep the indicators and transparency? And can you also tell me how I set the transparency?

    I also have some page-issues, I will open a new ticket for that.

    Thanks in advance.
    BR Jolanda Goos

    #942353

    In reply to: Enfold Website-Suche

    Hey ergebnisreich,
    You can change line 124 of functions-enfold.php and change
    ?s=

    for a #

    final line will be:

    <a href="#" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a>

    Or you can disallow or block search pages or every url with the search query in the robot.txt file.

    User-agent: *
    Disallow: /search
    Disallow: /*?s=

    Another option is to Change the Search-URL of WordPress

    Best regards,
    Mike

    #941958
    loreak
    Participant

    Hi,
    I use the plugin Ajax Translator Revolution DropDown

    Advanced Settings Plugin Translator=

    Custom location (jQuery): .main_menu
    Insert mode: Applend
    Custom CSS: .translator-dropdown-container.translator-dropdown-container-custom {
    margin: 45px 0 0 0 !important;
    }

    Looks good in the Desktop Version Enfold Theme OK (See attached image or visit http://www.loreak.com/nuevaweb)

    http://loreak.com/nuevaweb/wp-content/uploads/2018/04/Boceto.png

    In the mobile version is moved down :-( (See attached image)

    http://loreak.com/nuevaweb/wp-content/uploads/2018/04/wp_ss_20180414_0001-579×1030.png

    I have adjusted with CSS Burguer Menu

    /*burger menu*/

    .av-hamburger {
    padding: 35px 0 0 0;
    display: inline-block;
    cursor: pointer;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    }

    But I can’t adjust Logo and search icon. Moving Head??? Solution???

    Any solution???

    Thanks!!

    • This topic was modified 8 years ago by loreak.
    #941676

    Hi support,

    After updating to ver 4.2.6 nearly all (but not all) of my product pages display blank. I searched here and was advised to update my site PHP to 7.x.

    “The issue occurs on servers running PHP versions older than 5.6. You can either upgrade your PHP version to minimum 5.6 and preferably to 7.x or replace /wp-content/themes/enfold/header.php file with this one – https://www.dropbox.com/s/r389b5x4ippscyn/header.php?dl=0 to bring up backwards compatibility with older PHP versions.”

    I worked with my hosting provider and updated my PHP to 7.0.

    I’m still having the same issue with the product pages coming up blank.

    Currently on the site I’m working off of a backup child theme.

    #941655
    envatobunny
    Participant

    Hello Support,

    I have searched the forums to find the answer to this for a while now, forgive me if I have missed something…

    Each time I update plugins I get 49 Warning & 307 Warning (as below). I have contacted my host (Siteground) twice and they are convinced it is a theme issue.

    I hope you can help me

    Thanks Philip

    …………..

    ‘http_code’ in /home/flipkco1/public_html/capeverdeholidays/wp- content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php on line 307 Warning: Illegal string offset ‘api_error’ in /home/flipkco1/public_html/capeverdeholidays/wp- content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php on line 307 Warning: Invalid argument supplied for foreach() in /home/flipkco1/public_html/capeverdeholidays/wp- content/themes/enfold/framework/php/auto-updates/class-pixelentity-theme-update.php on line 49 Warning: Illegal string offset ‘http_code’ in /home/flipkco1/public_html/capeverdeholidays/wp- content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php on line 307 Warning: Illegal string offset ‘api_error’ in /home/flipkco1/public_html/capeverdeholidays/wp- content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php on line 307 Warning: Invalid argument supplied for foreach() in /home/flipkco1/public_html/capeverdeholidays/wp- content/themes/enfold/framework/php/auto-updates/class-pixelentity-theme-update.php on line 49 Disabling Maintenance mode… Warning: Illegal string offset ‘http_code’ in /home/flipkco1/public_html/capeverdeholidays/wp- content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php on line 307 Warning: Illegal string offset ‘api_error’ in /home/flipkco1/public_html/capeverdeholidays/wp- content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php on line 307 Warning: Invalid argument supplied for foreach() in /home/flipkco1/public_html/capeverdeholidays/wp- content/themes/enfold/framework/php/auto-updates/class-pixelentity-theme-update.php on line 49 Warning: Illegal string offset ‘http_code’ in /home/flipkco1/public_html/capeverdeholidays/wp- content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php on line 307 Warning: Illegal string offset ‘api_error’ in /home/flipkco1/public_html/capeverdeholidays/wp- content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php on
    line 307 Warning: Invalid argument supplied for foreach() in /home/flipkco1/public_html/capeverdeholidays/wp- content/themes/enfold/framework/php/auto-updates/class-pixelentity-theme-update.php on line 49 All updates have been completed.

    #941500

    In reply to: Tool-Tip for Iconbox

    Hey Ismael,
    thanks for the quick feedback!

    Mhhh, “overwritten on updates” does not sound comfortable …

    I wanted to use the tooltip for a hint on links to Youtube videos … under the new European Data Protection Regulation, which will come on 25 May 2018 (could also be interesting for “enfold” and corresponding adjustments).
    But then I will use first only local videos…

    By the way … high praise to your work … whenever I search for solutions, I find these in your posts!!!
    So, Mr. Kriesi … hope you get that ;-)

    See ya
    Daniel

    #941481

    1: Its not in a category. Only single events (its a posttype) are IN categorys. Which categorys these are you can see in the single-event i linked in my last post (box to the left)
    2: The last theme-update messed it up (see Googlechache and have an eye onto the now different URLs): http://webcache.googleusercontent.com/search?q=cache:5M4G1hv_9ZYJ:www.flugtraeumer.de/termine+&cd=2&hl=de&ct=clnk&gl=de&client=firefox-b

    This issue (double links in breadcrumb) is very typical for Enfold:
    https://www.google.de/search?q=enfold+double+breadcrumb&ie=utf-8&oe=utf-8&client=firefox-b&gfe_rd=cr&dcr=0&ei=LJDQWr3dHYeT8Qewmo3YDA

    I know that there is one or some lines to add in functions.php to solve things like this.
    Please provide us with that
    Thanks danny

    #941386

    In reply to: Hauptmenü

    Hi,

    Danke dass Du unser Theme verwendest.

    In Dashboard -> Enfold -> Shop Options -> Header Shopping Cart Icon Selectbox die 3. auswählen (Always Display attached to the main menu)

    In Dashboard -> Enfold -> Main Menu -> Tab General -> uncheck Append search icon to main menu

    Best regards,
    Günter

    #941168
    alliancepp
    Participant

    Hey Support, Can you provide me with some quick CSS to enlarge the Search Icon in the Main Menu of my Enfold site. I’ve tried some Quick CSS from a post from 2014 but it didn’t work. Thanks for your expert help.

    #941038
    agentursaelzer
    Participant

    Hi There,

    i started a new project with enfold. I wanted to import the Enfold 2017 demo data. But the import didn´t work (i get a message which said: import didn´t work, refresh the site). I tried to refresh the site, cleared the cache and also used another browser but it won´t work.

    I also searched if other people had the same problems. I find a topic which said i have to install the latest updated by using the API Key.So i tried that too – didn´t work. I used the plugin Transient Cleaner also didn´t work. :-(

    The other problem is, that the LayerSlider don´t accept my purchase code.

    Thanks for reading, i hope someone can help me.
    Greets Julia

    #940828
    oliverbeck
    Participant

    Hi

    The instant search is very slow. It takes between 10 and 20 seconds until I get some results. Does anyone have similar problems? I don’t know which component the problem is, so I’m asking here. Some information about the system:

    – WordPress 4.9.5
    WooCommerce 3.2.6
    – Enfold 4.2
    – PHP 7.1.16

    Thanks for any hints

    Kind regards, Oliver

    #940683

    In reply to: Mobile menu/search

    Hey,

    1- Please go to Enfold theme options > Main Menu and uncheck “Append search icon to main menu”

    2- Please edit font color in Advanced Styling as well. If that does not help, please also post a screenshot showing the changes you would like to make. Your mobile menu has a black background on my end at the moment.

    Best regards,
    Yigit

    #940524
    deeluuxe
    Participant

    Hello!

    After testing the cookies on a default WP installation without any plugins I discovered Enfold sets a cookie when the site is entered by a visitor. The name of the cookie is PHPSESSID and results from the Enfold theme – the default WP themes doesn´t set any cookie.

    I searched the sourcecode for “session_start” and found it here:
    – masonry_entries.php (/enfold/config-templatebuilder/avia-shortcodes)
    – portfolio.php (/enfold/config-templatebuilder/avia-shortcodes/portfolio)
    – php.js (/enfold/config-layerslider/LayerSlider/static/codemirror/mode/php)

    Enfold version: 4.2.6

    As you know setting a cookie without acceptance by the visitor is against the law (EU GDPR). So we need to disable this cookie.
    How can this be done?

    Best regards
    Jan

    Hi Victoria

    Sorry I incorrectly mentioned minified in my original description. No, I’m not minifying anything (my mistake for mentioning that) and if you ignore that word and read the rest of my issue, the problem remains. My problem stems from avia-merged-styles loading after my child theme’s style.css (as in the title of this thread). I haven’t seen avia-merged-styles before and it looks like a new stylesheet with the latest Enfold version. I’m wondering why it is also the last stylesheet to load?

    avia-merged-styles appears in Enfold’s new asset-manager.class.php in
    function try_minifying_scripts() around line 65.

    The live version of the website at crhlaw.com.au which uses Enfold version 4.2.3 has no such css file.
    The staging version of the website as per the credentials I supplied, using Enfold version 4.2.6 now has the newly-defined Enfold avia-merged-styles stylesheet. If you search for it in the source, you’ll see it is listed as the very last stylesheet and hence whatever it contains overwrites the custom button styles I’ve specified in my child theme.

    I’m not sure how else to make clear that this is a new Enfold class, with a new function, that loads a css file after all others have loaded and so causes problems with styles defined in a child theme. I’d like my child theme to load after any Enfold stylesheets without having to code a workaround in my functions.php, as I’m going to have to replicate this on all my client websites.

    If you debug the source you’ll see what I mean ;)). Hope you can help.

    Cheers
    Diana

    #940105
    cjbuilt
    Participant

    Previous and Next post navigation buttons are missing. I have not disabled them in the Enfold options. I am running a child theme, but have made no mods or custom functions that would effect this. I do have 2 test posts, so it should work. I’ve searched the forums and have not found anything related to this issue.

    SSCM
    Participant

    We’re using a child theme for Enfold; after updating WordPress to 4.9.5, the visual editor stopped working. We updated Enfold to 4.2.6 and the visual editor worked, but the nav got wonky – it would not display at browser width before scrolling (though it did upon scrolling), and the mobile menu is gone regardless of scrolling.

    We’ve researched this behavior, and it appears to be in a line of other concerns about recent updates. One observation was to update the hosting’s php to 7.0; we’ve done that, but it’s still not resolved.

    We temporarily made the parent theme active, and got the error relating to line 6 in the header.php file, no site to be seen…so we reverted to the child theme – still no mobile nav, but at least the site is visible! =O

    We’ll make you a temporary admin in order to suss this out; we just need a user email. For the record, we have very consciously only made updates to the child theme’s content, creating any files there that needed to override the underlying theme…and the admin settings tools for Enfold don’t appear to have changed, but the behavior persists.

    Please help! Thank you.

    • This topic was modified 8 years ago by SSCM.
    #939922
    Renko
    Participant

    Hi there, we are happily using Enfold for a new website. But we have a problem (and we don’t know if it’s Enfold or WordPress generally).

    Our problem:
    We are using Masonry Gallery and we want to link the images to an external website (which is showing 360° virtual reality images). So we want to open the external links in new tab/window, but we don’t know how to do this.

    After a quick search at the support forum we encountered this solution:

    But when we insert the code in the functions.php the links of the gallery still open in the same window. (We don’t want to hijack the other thread so we are opening up a new one here. We hope that’s ok).

    What should we do? *headscratch*

    And of course we can give you a temporary login if necessary.
    Thank you for your time and solution.

    Kind regards,
    Renko

    #939915
    Felix Stroh
    Guest

    Hello Kriesi-Team,
    do you know any plugin for advanced searching on an Enfold based Website?
    We want to create keywords to search after and categories to search in.
    Thank you Felix

    #939888
    Nagytalp
    Participant

    Hello Kieresi Team!

    My burger menu is just an empty page and has no menu items in it.

    I have some modifications in my theme’s functions.php and some CSS rules @ my child theme.

    What am I tried?
    Disable plugins -> Not working
    Switch to parent theme -> Burger menu works
    Child theme with basic functions.php -> Not working
    Child theme without custom CSS rules -> Not working
    Custom rules in parent theme’s custom.css -> Burger menu works
    Cache basically disabled, but erased many times -> Still not working
    Compared my HTML output with Enfold 2017 demo and seems my burger menu not loads menu items. The #av-burger-menu-ul is empty in my case
    The site is here: http://195.201.1.25/

    I don’t know it’s related or not but I’m added support in CSS for iPhones but iDevices not renders my Child Theme’s CSS.

    Here is my functions.php:

    <?php
    
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file. 
    * WordPress will use those functions instead of the original functions then.
    */
    
    //Remove query strings
    function _remove_script_version( $src ){ 
    $parts = explode( '?', $src ); 	
    return $parts[0]; 
    } 
    add_filter( 'script_loader_src', '_remove_script_version', 15, 1 ); 
    add_filter( 'style_loader_src', '_remove_script_version', 15, 1 );
    
    //Extra fonts
    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Robot Slab'] = 'Roboto Slab:400,400italic';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Roboto'] = 'Roboto:100,300,400,400italic,500,700,900';
    return $fonts;
    }
    
    //Search form shortcode
    function bigfootsearchform( $form ) {
     
        $form = '<form role="search" method="get" target="self_" id="searchform" action="' . home_url( '/' ) . '" >
        <div>
        <input type="text" class="search-text" placeholder="Keresés" value="' . get_search_query() . '" name="s" id="s" />
        </div>
        </form>';
     
        return $form;
    }
     
    add_shortcode('bigfootsearch', 'bigfootsearchform');
    
    // Function that will return our WordPress menu
    function menu_function($atts, $content = null)
    {
    	extract(shortcode_atts(array(
    		'name' => null,
    	) , $atts));
    	return wp_nav_menu(array(
    		'menu' => $name,
    		'echo' => false
    	));
    }
    
    // Create the shortcode
    add_shortcode('menu', 'menu_function');
    
    //Register new sidebars
    function arphabet_widgets_init() {
    
    	register_sidebar( array(
    		'name'          => 'Footer Big Socket',
    		'id'            => 'footer-big-socket',
    		'before_widget' => '<div>',
    		'after_widget'  => '</div>',
    		'before_title'  => '<h3 class="widgettitle">',
    		'after_title'   => '</h3>',
    	) );
    
    }
    add_action( 'widgets_init', 'arphabet_widgets_init' );
    
    //Change logo on scroll when transparent header enabled
    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub) {
        $sub .= '<img src="/wp-content/uploads/2018/02/dandy-logo-edited-secondary-res.png"/>';
        return $sub;
    }
    
    //Hide header on scroll
    function add_hide_header(){
    ?>
    <script>
    jQuery(window).scroll(function(){
    if(jQuery(this).scrollTop() > 200) jQuery('#top #header_meta').fadeOut('1000');
    if(jQuery(this).scrollTop() < 200) jQuery('#top #header_meta').fadeIn('1000');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_hide_header');
    
    // header transparency logo switch
    function add_custom_script(){
    ?>
    <script>
    (function($){
    	var win = $(window);
    	win.scroll(function() {
    		if(win.scrollTop() == 0) {
    			$(".av_header_top:not('av_header_transparency') .logo img").css('display', 'block').css('ease-in', '0.9s');
    			$(".av_header_top:not('av_header_transparency') .subtext img , #menu-item-474 , #menu-item-475, #menu-item-476, .responsive #top .cart_dropdown, #menu-item-search").css('display', 'none').css('transition', 'cubic-bezier(0.15, 0.47, 0.45, 0.94) 0.9s');
    		} else {
    			$(".av_header_top:not('av_header_transparency') .logo img").css('display', 'none');
    			$(".av_header_top:not('av_header_transparency') .subtext img , #menu-item-474 , #menu-item-475, #menu-item-476, .responsive #top .cart_dropdown, #menu-item-search").css('display', 'block').css('transition', 'ease-in 0.9s');
    
    		}
    	});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');
    
    //Disable TMCE html formatting
    remove_filter( 'the_content', 'wpautop' );
    add_filter('tiny_mce_before_init', 'modify_valid_children', 99);
    function modify_valid_children($settings){     
        $settings['valid_children']="+a[div|p|ul|ol|li|h1|span|h2|h3|h4|h5|h5|h6]";
        return $settings;
    }
    
    function fix_tiny_mce_before_init( $in ) {
    
        // You can actually debug this without actually needing Advanced Tinymce Config enabled:
        // print_r( $in );
        // exit();
    
      $in['valid_children']="+a[div|p|ul|ol|li|h1|span|h2|h3|h4|h5|h5|h6]";
        $in[ 'force_p_newlines' ] = FALSE;
        $in[ 'remove_linebreaks' ] = FALSE;
        $in[ 'force_br_newlines' ] = FALSE;
        $in[ 'remove_trailing_nbsp' ] = FALSE;
        $in[ 'apply_source_formatting' ] = FALSE;
        $in[ 'convert_newlines_to_brs' ] = FALSE;
        $in[ 'verify_html' ] = FALSE;
        $in[ 'remove_redundant_brs' ] = FALSE;
        $in[ 'validate_children' ] = FALSE;
        $in[ 'forced_root_block' ]= FALSE;
    
        return $in;
    }
    add_filter( 'tiny_mce_before_init', 'fix_tiny_mce_before_init' );
    
    //Enable shop page editor
    add_theme_support( 'avia_custom_shop_page' );
    
    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    	dynamic_sidebar( 'Extra Header' );
    }

    Do You guys have any idea what cause this?

    Thank You if help me!

    Best Regards, Csaba!

    #939875
    eskitaco
    Participant

    Hello,

    I am using the Restaurant theme and need some assistance with a couple of items related to the Footer area. I’ve tried searching for answers but have been unable to find anything that works. Would you prefer I create three separate ticket items for these or is this alright to combine all three? Logins are below.

    1. 1. Is it possible to create a ‘fixed’ Footer, similar to how a ‘fixed’ background image works? The code I found makes the Footer fixed but always visible. I don’t want that. I would like the Footer to be ‘behind’ the page content on every page, exactly like http://craftbeer.klevermedia.co.uk/. So as you scroll down the page, the page content scrolls up to reveal the Footer. Is this possible with the Enfold theme?.
    2. 2. See screenshot below. I am using an Icon List shortcode for Footer Widget #3, but the padding between the Title and the icon and phone number is greater than the other two widgets. How can I reduce the padding to make the widget content align with the other two widgets? I pointed to the discrepancy on the screenshot.
    3. 3. How can I decrease the length of the Socket border so that it is the same size as the column width (1/1)? I don’t want the border to stretch from side-to-side, I would like the border length to be just like the one shown on the link in #1. Based on the screenshot, I would like to remove the border within the two red boxes.

    Thanks for your time and assistance.

    – eskitaco

    • This topic was modified 8 years ago by eskitaco.
    #938817
    Mige123
    Participant

    Hi there,

    after i’ve adjusted the color for frames in the enfold settings. I’ve now by the slider a line like a separatorline by all the pictures on the full slider. by the normal slider i doesn’t have this issue. is there a way (with css) to adjust the color specially for the full slider back to white (so it’s not visible)?
    i’ve searched through the forum, but with no luck.

    second question:
    is there a button to click to hide:
    <!–
    Debugging Info for Theme support:

    Theme: Enfold
    Version: 4.2.6
    Installed: enfold
    AviaFramework Version: 4.6
    AviaBuilder Version: 0.9.5
    ML:128-PU:28-PLA:9
    WP:4.9.5
    Updates: enabled
    –>
    i’m happy to recommend your templates to friends, but not really interested, that some “competitors” knows by the first look on my page, which WP-Template i’m using. :)

    thanks in advance!

    best regards,
    Michel

    premedia
    Participant

    Hello Victoria
    My reply to your last piece of CSS given to me was met with a request to close the thread – which seems strange because my topic was still about Contact Form 7 with (CSS) Enfold Styles.

    Since I was not able to get a reply on that thread I have to start again – which doubles the amount of work.

    I have copied and pasted the ending of your last CSS here and my reply to you and can only hope I find a reply to this. thanks for your help.

    My website page in discussion: you can see the problem here on desktop / wide screen view

    ***** your last reply to me*************

    Hi Pete,

    Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css

    @media only screen and (min-width: 768px) {
    #top .wpcf7-form-control-wrap.your-name input[type=text] {
    width: 95%;

    }
    .wpcf7-form div + p, .wpcf7-form div + p + p {
    width: 50%;
    float: left;

    }
    .wpcf7-form div + p + p {
    clear: right;
    }

    }
    If you need further assistance please let us know.

    Best regards,
    Victoria

    ****** MY LAST REPLY TO YOU – WHICH WAS CUT OFF WHEN THE THREAD WAS CLOSE******

    Thanks so much Victoria! thats a really clever bit of CSS!

    I’ve set it at 1368px – just wider than iPad pro screen horizontal.
    It works fine apart from a couple of small things:-

    1. On the wide desktop version where the name and email are side by side – the space between that line and the SUBJECT line below seems to be wider than when the 2 fields are stacked on top of each other.

    2. Also on desktop perhaps the gap/padding above the Name/Email line is wider making a large gap between that line on desktop view and the bulleted text above. Ideally I would like the gaps above/below field to be consistent between desktop and mobile.

    3. The CSS you provided to create black field borders is being carried into the Enfold Search field. Is there a way I can restrict this border styling to the CF7 form?

    Here’s the full quick CSS i have for this contact page at the moment including your latest fixes.

    /* CF7 Submit Button CSS Styles */
    .wpcf7 input[type=submit] {
    padding:15px 45px;
    background:#FCE228;
    color:#232323;
    font-size:16px;
    font-weight:bold;
    border:1px solid #232323;
    cursor:pointer;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    }

    /* CF7 Submit Button CSS Hover Styles */
    .wpcf7 input[type=submit]:hover {
    background-color: #232323;
    color: #FCE228;
    border:1px solid #232323;
    }

    /* CF7 Label Text Styles */
    .wpcf7 label {
    padding: 0 0 10px 0;
    font-size: 20px;
    color:#232323;
    }

    /* CF7 File Upload Button CSS Styles */

    .wpcf7 input[type=file] {
    padding:0px 0px;
    background:none;
    color:#000;
    font-size:14px;
    border:none;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    }

    /* CF7 Input Field Heights */
    .wpcf7 input[type=text] {height:40px;}
    .wpcf7 input[type=email] {height:40px;}

    /* CF7 Input Field border and radius */
    #top .main_color .input-text,
    #top .main_color input[type=’text’],
    #top .main_color input[type=’input’],
    #top .main_color input[type=’password’],
    #top .main_color input[type=’email’],
    #top .main_color input[type=’number’],
    #top .main_color input[type=’url’], #top .main_color input[type=’tel’],
    #top .main_color input[type=’search’], #top .main_color textarea, #top .main_color select {
    border-color: #232323;
    border-radius: 3px;
    margin-top: 5px;
    }

    /* CF7 name and email Fields alongside but not on mobile */
    @media only screen and (min-width: 1368px) {
    #top .wpcf7-form-control-wrap.your-name input[type=text] {
    width: 95%;

    }
    .wpcf7-form div + p, .wpcf7-form div + p + p {
    width: 50%;
    float: left;

    }
    .wpcf7-form div + p + p {
    clear: right;
    }

    }

Viewing 30 results - 3,031 through 3,060 (of 7,502 total)