Viewing 30 results - 391 through 420 (of 612 total)
  • Author
    Search Results
  • #672200

    In reply to: Align text block

    Hey Charlotte,

    Thank you for using Enfold.

    1-2.) This is possible but the image will get distorted in the process.

    .flex_column.av_one_half.flex_column_div.av-zero-column-padding.avia-builder-el-20.el_after_av_one_half.el_before_av_heading .av_textblock_section img {
        margin-top: -10px;
        min-height: 400px;
    }

    Add a custom css class attribute to the image element so that you can replace the generic selector above. http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Best regards,
    Ismael

    #672196

    In reply to: Scaling images

    Hi,

    Use this code to decrease the size of the logo:

    @media only screen and (max-width: 767px) {
    .approval_images .avia_image {
        width: 100px;
    }
    }

    Add a custom css class attribute to the image elements so that you can manipulate them separately. Could you please provide a screenshot of the mobile layout that you’re trying to accomplish?

    Best regards,
    Ismael

    #671395

    Also, I applied the css code below to change the “Register Now” button to a blue color. Did I do this correct? or will this effect other fullwidth submenu’s on the site? Again I’m only trying to edit the colors/style of custom css class ewts17-submenu

    #top #wrap_all .header_color .primary-background, .header_color .primary-background a, div .header_color .button, .header_color #submit, .header_color input[type='submit'], .header_color .small-preview:hover, .header_color .avia-menu-fx, .header_color .avia-menu-fx .avia-arrow, .header_color.iconbox_top .iconbox_icon, .header_color .iconbox_top a.iconbox_icon:hover, .header_color .avia-data-table th.avia-highlight-col, .header_color .avia-color-theme-color, .header_color .avia-color-theme-color:hover, .header_color .image-overlay .image-overlay-inside:before, .header_color .comment-count, .header_color .av_dropcap2, #top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text, .header_color .av-colored-style .av-countdown-cell-inner, .responsive #top .header_color .av-open-submenu.av-subnav-menu > li > a:hover, #top .header_color .av-open-submenu.av-subnav-menu li > ul a:hover {
        background-color: #066eb5;
        color: #ffffff;
        border-color: #066eb5;
    }
    
    • This reply was modified 9 years, 5 months ago by brainxchange.
    #668784

    In reply to: Lightbox grouping

    Hi,

    Try setting each element container a CSS class of “avia-slideshow” or “avia-gallery”, that will trigger individual grouping for all images contained in that element.

    Best regards,
    Josue

    #668759

    In reply to: Phone number in header

    Well here we go:

    please do not make only one custom menu point out of this ! if it has to work like a real link!

    so goto Menu and create two custom links (if you don’t know how to get to class setting for menu points ask please)

    the red urls are the links
    on phone : tel: … (you see the percent sign – this was automatically generated if you use here a blankspace)
    on email: mailto: …

    the blue underlined fields are what is shown on menu (here you can set in even images or Names like “Phone” “E-Mail” )

    for both i put in css class : shifted

    the code in your child-theme functions.php (you have to customise the menu-item id’s) :

    function av_move_social(){
    ?>
     <script>
    jQuery(window).load(function(){
    jQuery(".av-main-nav > li#menu-item-2845").detach().prependTo('#header .social_bookmarks');
    jQuery(".av-main-nav > li#menu-item-2847").detach().prependTo('#header .social_bookmarks')
    });
     </script>
    <?php
    }
    add_action('wp_footer', 'av_move_social');

    and the css code in quick.css was (here too – customise the menu-item id’s):

    
    .shifted .avia-bullet {
        display: none;
    }
    
    #menu-item-2845.shifted {
        margin-right: 80px !important;
    }
    
    #menu-item-2847.shifted {
        margin-right: 120px !important;
    }
    
    .shifted .avia-menu-text {
        display: inline-flex;
        width: 120px;
    }

    if you can not find out the item id’s make the menu points and than we will see the rest

    and this is what it looks like afterwards: http://webers-testseite.de/ikom/

    #667642

    Hi!

    Sorry for the late reply!
    Authentication required, therefore i could not login to your site. However, i saw that you added following code to apply the changes

    @media only screen and (min-width: 768px) {
    .page-id-673 .avia-builder-el-no-sibling {
        margin-bottom: -50px !important;
    }}

    What you can do is actually edit your image element and give it a custom CSS class ( please turn on custom CSS field if you have not already by referring to this post – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ ) and then change your code to following one

    @media only screen and (min-width: 768px) {
    .your-custom-class {
        margin-bottom: -50px !important;
    }}

    You can give that custom class (“your-custom-class” in example) to any image element that you would like to move 50px down.

    If i am missing a point, please point out the image you would like to edit and post authentication logins as well so we can look further into it :)

    Cheers!
    Yigit

    #666785

    Hey noefresh,

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

    
    /* Vertical Space */
    .flex_column.av_three_fourth.flex_column_div.av-zero-column-padding.avia-builder-el-5.el_after_av_one_fourth.avia-builder-el-last   {
        border-left: 1px #000 solid;
        margin-left: 0px;
        padding-left: 30px;
    }
    
    

    To remove the padding below the image and the horizontal divider please enable the custom css class name support http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ add a custom class margin-top0 to the divider and the below css in Quick css

    .margin-top0 {
    	margin-top: 0 !important;
    }
    

    Best regards,
    Vinay

    #662751

    Hi,

    Add this css code to adjust the title alignment of the “next button”:

    .avia-post-next.with-image {
        text-align: left;
    }

    Add this in the functions.php file to display the time:

    	function avia_post_nav($same_category = false, $taxonomy = 'category')
    	{
    		global $wp_version;
    	        $settings = array();
    	        $settings['same_category'] = $same_category;
    	        $settings['excluded_terms'] = '';
    			$settings['wpversion'] = $wp_version;
    
    		//dont display if a fullscreen slider is available since they overlap
    		if((class_exists('avia_sc_layerslider') && !empty(avia_sc_layerslider::$slide_count)) ||
    			class_exists('avia_sc_slider_full') && !empty(avia_sc_slider_full::$slide_count) ) $settings['is_fullwidth'] = true;
    
    		$settings['type'] = get_post_type();
    		$settings['taxonomy'] = ($settings['type'] == 'portfolio') ? 'portfolio_entries' : $taxonomy;
    
    		if(!is_singular() || is_post_type_hierarchical($settings['type'])) $settings['is_hierarchical'] = true;
    		if($settings['type'] === 'topic' || $settings['type'] === 'reply') $settings['is_bbpress'] = true;
    
    	        $settings = apply_filters('avia_post_nav_settings', $settings);
    	        if(!empty($settings['is_bbpress']) || !empty($settings['is_hierarchical']) || !empty($settings['is_fullwidth'])) return;
    
    	        if(version_compare($settings['wpversion'], '3.8', '>=' ))
    	        {
    	            $entries['prev'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	            $entries['next'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	        }
    	        else
    	        {
    	            $entries['prev'] = get_previous_post($settings['same_category']);
    	            $entries['next'] = get_next_post($settings['same_category']);
    	        }
    
    		$entries = apply_filters('avia_post_nav_entries', $entries, $settings);
            $output = "";
    
    		foreach ($entries as $key => $entry)
    		{
                if(empty($entry)) continue;
    			$the_title 	= isset($entry->av_custom_title) ? $entry->av_custom_title : avia_backend_truncate(get_the_title($entry->ID),75," ");
    			$link 		= isset($entry->av_custom_link)  ? $entry->av_custom_link  : get_permalink($entry->ID);
    			$image 		= isset($entry->av_custom_image) ? $entry->av_custom_image : get_the_post_thumbnail($entry->ID, 'thumbnail');
    			$time 		= "<time class='date-container minor-meta updated' >".get_the_time(get_option('date_format'), $entry->ID)."</time>";
    
                $tc1   = $tc2 = "";
                $class = $image ? "with-image" : "without-image";
    
                $output .= "<a class='avia-post-nav avia-post-{$key} {$class}' href='{$link}' >";
    		    $output .= "    <span class='label iconfont' ".av_icon_string($key)."></span>";
    		    $output .= "    <span class='entry-info-wrap'>";
    		    $output .= "        <span class='entry-info'>";
    		    $tc1     = "            <span class='entry-title'>{$the_title}</span>$time";
    if($image)  $tc2     = "            <span class='entry-image'>{$image}</span>";
                $output .= $key == 'prev' ?  $tc1.$tc2 : $tc2.$tc1;
                $output .= "        </span>";
                $output .= "    </span>";
    		    $output .= "</a>";
    		}
    		return $output;
    	}

    Adjust the position of the date container in the Quick CSS field.

    Best regards,
    Ismael

    #662352
    L-mobileGroup
    Participant

    Dear support

    since a few weeks we have the problem that our company mainpage changes “over night” from our our regular mainpage to a view where only header and footer is available and in main content: “registration closed”. We are using a Multisite wordpress installation with main domain and several subdomains.

    When I go in the backend to enfold settings and change “Frontpage settings” and change it back and save (after this clearing cache from gator cache) — regular mainpage is shown again.

    I enclosed a screenshot from the mainpage when problem occurs. Also source code of corrupted site. This problem always occurs between two days — I have a look to the page at the evening everything is fine — next morning page shows corrupted mainpage.

    • UPDATE: yesterday this problem occurs within the day – from one minute to another mainpage showed only “registration closed” within footer and header
    • main content missing
    • header and footer still there
    • CSS data is loaded
    • What issue could be the problem?

    Source code:

    <!DOCTYPE html>
    <html lang="de-DE" class="html_stretched responsive av-preloader-disabled av-default-lightbox  html_header_top html_logo_left html_main_nav_header html_menu_right html_custom html_header_sticky html_header_shrinking_disabled html_header_topbar_active html_mobile_menu_tablet html_header_mobile_behavior html_header_searchicon html_content_align_center html_header_unstick_top_disabled html_header_stretch_disabled html_minimal_header html_minimal_header_shadow html_entry_id_66 ">
    <head>
    <meta charset="UTF-8" />
    
    <!-- mobile setting -->
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    
    <!-- Scripts/CSS and wp_head hook -->
    <title>L-mobile macht Geschäftsprozesse mobil - L-mobile</title>
    <link rel="alternate" hreflang="de-DE" href="https://www.l-mobile.com/" />
    <link rel="alternate" hreflang="en-US" href="https://www.l-mobile.com/en/" />
    <link rel="alternate" hreflang="hu-HU" href="https://www.l-mobile.com/hu/" />
    
    <!-- This site is optimized with the Yoast SEO Premium plugin v3.3.3 - https://yoast.com/wordpress/plugins/seo/ -->
    <meta name="description" content="Am Anfang von L-mobile stand die Idee komplexe und starre Datenerfassungssysteme einfach und mobil - und damit transparenter und produktiver zu machen. "/>
    <meta name="robots" content="noodp"/>
    <link rel="canonical" href="https://www.l-mobile.com/" />
    <meta property="DC.date.issued" content="2015-12-03T14:50:53+02:00" />
    <script type='application/ld+json'>{"@context":"http:\/\/schema.org","@type":"WebSite","url":"https:\/\/www.l-mobile.com\/","name":"L-mobile GmbH","potentialAction":{"@type":"SearchAction","target":"https:\/\/www.l-mobile.com\/?s={search_term_string}","query-input":"required name=search_term_string"}}</script>
    <script type='application/ld+json'>{"@context":"http:\/\/schema.org","@type":"Organization","url":"https:\/\/www.l-mobile.com\/","sameAs":[],"name":"L-mobile GmbH","logo":"https:\/\/www.l-mobile.com\/wp-content\/uploads\/2015\/12\/L-mobile_Web.png"}</script>
    <!-- / Yoast SEO Premium plugin. -->
    
    <link rel="alternate" type="application/rss+xml" title="L-mobile &raquo; Feed" href="https://www.l-mobile.com/feed/" />
    <link rel="alternate" type="application/rss+xml" title="L-mobile &raquo; Kommentar-Feed" href="https://www.l-mobile.com/comments/feed/" />
    
    <!-- google webfont font replacement -->
    <link rel='stylesheet' id='avia-google-webfont' href='//fonts.googleapis.com/css?family=Open+Sans:400,600' type='text/css' media='all'/> 
    		<script type="text/javascript">
    			window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/72x72\/","ext":".png","source":{"concatemoji":"https:\/\/www.l-mobile.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.5.3"}};
    			!function(a,b,c){function d(a){var c,d,e,f=b.createElement("canvas"),g=f.getContext&&f.getContext("2d"),h=String.fromCharCode;if(!g||!g.fillText)return!1;switch(g.textBaseline="top",g.font="600 32px Arial",a){case"flag":return g.fillText(h(55356,56806,55356,56826),0,0),f.toDataURL().length>3e3;case"diversity":return g.fillText(h(55356,57221),0,0),c=g.getImageData(16,16,1,1).data,d=c[0]+","+c[1]+","+c[2]+","+c[3],g.fillText(h(55356,57221,55356,57343),0,0),c=g.getImageData(16,16,1,1).data,e=c[0]+","+c[1]+","+c[2]+","+c[3],d!==e;case"simple":return g.fillText(h(55357,56835),0,0),0!==g.getImageData(16,16,1,1).data[0];case"unicode8":return g.fillText(h(55356,57135),0,0),0!==g.getImageData(16,16,1,1).data[0]}return!1}function e(a){var c=b.createElement("script");c.src=a,c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var f,g,h,i;for(i=Array("simple","flag","unicode8","diversity"),c.supports={everything:!0,everythingExceptFlag:!0},h=0;h<i.length;h++)c.supports[i[h]]=d(i[h]),c.supports.everything=c.supports.everything&&c.supports[i[h]],"flag"!==i[h]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[i[h]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(g=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",g,!1),a.addEventListener("load",g,!1)):(a.attachEvent("onload",g),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),f=c.source||{},f.concatemoji?e(f.concatemoji):f.wpemoji&&f.twemoji&&(e(f.twemoji),e(f.wpemoji)))}(window,document,window._wpemojiSettings);
    		</script>
    		<style type="text/css">
    img.wp-smiley,
    img.emoji {
    	display: inline !important;
    	border: none !important;
    	box-shadow: none !important;
    	height: 1em !important;
    	width: 1em !important;
    	margin: 0 .07em !important;
    	vertical-align: -0.1em !important;
    	background: none !important;
    	padding: 0 !important;
    }
    </style>
    <link rel='stylesheet' id='contact-form-7-css'  href='https://www.l-mobile.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=4.4.2' type='text/css' media='all' />
    <link rel='stylesheet' id='dashicons-css'  href='https://www.l-mobile.com/wp-includes/css/dashicons.min.css?ver=4.5.3' type='text/css' media='all' />
    <link rel='stylesheet' id='my-calendar-reset-css'  href='https://www.l-mobile.com/wp-content/plugins/my-calendar/css/reset.css?ver=4.5.3' type='text/css' media='all' />
    <link rel='stylesheet' id='my-calendar-style-css'  href='https://www.l-mobile.com/wp-content/plugins/my-calendar/styles/twentyfourteen.css?ver=4.5.3' type='text/css' media='all' />
    <link rel='stylesheet' id='credit-tracker-plugin-styles-css'  href='https://www.l-mobile.com/wp-content/plugins/credit-tracker/css/ct-public.css?ver=1.1.9' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-wpml-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/config-wpml/wpml-mod.css?ver=4.5.3' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-grid-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/grid.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-base-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/base.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-layout-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/layout.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-scs-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/shortcodes.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-popup-css-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/js/aviapopup/magnific-popup.css?ver=1' type='text/css' media='screen' />
    <link rel='stylesheet' id='avia-media-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/js/mediaelement/skin-1/mediaelementplayer.css?ver=1' type='text/css' media='screen' />
    <link rel='stylesheet' id='avia-print-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/print.css?ver=1' type='text/css' media='print' />
    <link rel='stylesheet' id='avia-dynamic-css'  href='https://www.l-mobile.com/wp-content/uploads/dynamic_avia/enfold_child.css?ver=578730a74c186' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-custom-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/custom.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-style-css'  href='https://www.l-mobile.com/wp-content/themes/enfold-child/style.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='layerslider-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/css/layerslider.css?ver=5.6.8' type='text/css' media='all' />
          <script>
          if (document.location.protocol != "https:") {
              document.location = document.URL.replace(/^http:/i, "https:");
          }
          </script>
          <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/credit-tracker/js/ct-public.js?ver=1.1.9'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/js/avia-compat.js?ver=2'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/js/greensock.js?ver=1.11.8'></script>
    <script type='text/javascript'>
    /* <![CDATA[ */
    var LS_Meta = {"v":"5.6.8"};
    /* ]]> */
    </script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/js/layerslider.kreaturamedia.jquery.js?ver=5.6.8'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/js/layerslider.transitions.js?ver=5.6.8'></script>
    <meta name="generator" content="Powered by LayerSlider 5.6.8 - Multi-Purpose, Responsive, Parallax, Mobile-Friendly Slider Plugin for WordPress." />
    <!-- LayerSlider updates and docs at: https://kreaturamedia.com/layerslider-responsive-wordpress-slider-plugin/ -->
    <link rel='https://api.w.org/' href='https://www.l-mobile.com/wp-json/' />
    <link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.l-mobile.com/xmlrpc.php?rsd" />
    <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.l-mobile.com/wp-includes/wlwmanifest.xml" /> 
    <meta name="generator" content="WordPress 4.5.3" />
    <link rel='shortlink' href='https://www.l-mobile.com/' />
    <link rel="alternate" type="application/json+oembed" href="https://www.l-mobile.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.l-mobile.com%2F" />
    <link rel="alternate" type="text/xml+oembed" href="https://www.l-mobile.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.l-mobile.com%2F&format=xml" />
    
    <style type="text/css">
    <!--
    /* Styles by My Calendar - Joseph C Dolson http://www.joedolson.com/ */
    
    .mc-main .mc_allgemein .event-title, .mc-main .mc_allgemein .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_allgemein .event-title a:hover, .mc-main .mc_allgemein .event-title a:focus { background: #232121;}
    .mc-main .mc_projects .event-title, .mc-main .mc_projects .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_projects .event-title a:hover, .mc-main .mc_projects .event-title a:focus { background: #232121;}
    .mc-main .mc_warehouse .event-title, .mc-main .mc_warehouse .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_warehouse .event-title a:hover, .mc-main .mc_warehouse .event-title a:focus { background: #232121;}
    .mc-main .mc_trace .event-title, .mc-main .mc_trace .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_trace .event-title a:hover, .mc-main .mc_trace .event-title a:focus { background: #232121;}
    .mc-main .mc_service .event-title, .mc-main .mc_service .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_service .event-title a:hover, .mc-main .mc_service .event-title a:focus { background: #232121;}
    .mc-main .mc_industrie-4-0 .event-title, .mc-main .mc_industrie-4-0 .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_industrie-4-0 .event-title a:hover, .mc-main .mc_industrie-4-0 .event-title a:focus { background: #232121;}
    .mc-main .mc_crm-und-sales .event-title, .mc-main .mc_crm-und-sales .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_crm-und-sales .event-title a:hover, .mc-main .mc_crm-und-sales .event-title a:focus { background: #232121;}
    .mc-main .mc_infrastructure .event-title, .mc-main .mc_infrastructure .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_infrastructure .event-title a:hover, .mc-main .mc_infrastructure .event-title a:focus { background: #232121;}
    .mc-main .mc_production .event-title, .mc-main .mc_production .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_production .event-title a:hover, .mc-main .mc_production .event-title a:focus { background: #232121;}
    .mc-main .mc_l-mobile-hungary .event-title, .mc-main .mc_l-mobile-hungary .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_l-mobile-hungary .event-title a:hover, .mc-main .mc_l-mobile-hungary .event-title a:focus { background: #232121;}
    .mc-event-visible {
    display: block!important;
    }
    -->
    </style>
    <script type='text/javascript'>
    	jQuery('html').addClass('mcjs');
    	jQuery(document).ready( function($) { $('html').removeClass('mcjs') } );
    </script>
    <meta name="generator" content="WPML ver:3.4.1 stt:1,3,23;" />
    
    <style type="text/css">#lang_sel a, #lang_sel a.lang_sel_sel{color:#444444;}#lang_sel a:hover, #lang_sel a.lang_sel_sel:hover{color:#000000;}#lang_sel a.lang_sel_sel, #lang_sel a.lang_sel_sel:visited{background-color:#ffffff;}#lang_sel a.lang_sel_sel:hover{background-color:#eeeeee;}#lang_sel li ul a, #lang_sel li ul a:visited{color:#444444;}#lang_sel li ul a:hover{color:#000000;}#lang_sel li ul a, #lang_sel li ul a:link, #lang_sel li ul a:visited{background-color:#ffffff;}#lang_sel li ul a:hover{background-color:#eeeeee;}#lang_sel a, #lang_sel a:visited{border-color:#EEEEEE;} #lang_sel ul ul{border-top:1px solid #EEEEEE;}</style>
    
    <style type="text/css">#lang_sel img, #lang_sel_list img, #lang_sel_footer img { display: inline; }
    </style><link rel="profile" href="http://gmpg.org/xfn/11" />
    <link rel="alternate" type="application/rss+xml" title="L-mobile RSS2 Feed" href="https://www.l-mobile.com/feed/" />
    <link rel="pingback" href="https://www.l-mobile.com/xmlrpc.php" />
    
    <style type='text/css' media='screen'>
     #top #header_main > .container, #top #header_main > .container .main_menu ul:first-child > li > a, #top #header_main #menu-item-shop .cart_dropdown_link{ height:70px; line-height: 70px; }
     .html_top_nav_header .av-logo-container{ height:70px;  }
     .html_header_top.html_header_sticky #top #wrap_all #main{ padding-top:100px; } 
    </style>
    <!--[if lt IE 9]><script src="https://www.l-mobile.com/wp-content/themes/enfold/js/html5shiv.js"></script><![endif]-->
    <link rel="icon" href="https://www.l-mobile.com/wp-content/uploads/2015/12/favicon.ico" type="image/x-icon">
    <link rel='canonical' href='https://www.l-mobile.com/' />
    <meta name='robots' content='noindex,follow' />
    	<style type="text/css">
    		.mu_register { width: 90%; margin:0 auto; }
    		.mu_register form { margin-top: 2em; }
    		.mu_register .error { font-weight:700; padding:10px; color:#333333; background:#FFEBE8; border:1px solid #CC0000; }
    		.mu_register input[type="submit"],
    			.mu_register #blog_title,
    			.mu_register #user_email,
    			.mu_register #blogname,
    			.mu_register #user_name { width:100%; font-size: 24px; margin:5px 0; }
    		.mu_register #site-language { display: block; }
    		.mu_register .prefix_address,
    			.mu_register .suffix_address {font-size: 18px;display:inline; }
    		.mu_register label { font-weight:700; font-size:15px; display:block; margin:10px 0; }
    		.mu_register label.checkbox { display:inline; }
    		.mu_register .mu_alert { font-weight:700; padding:10px; color:#333333; background:#ffffe0; border:1px solid #e6db55; }
    	</style>
    	
    
    <!--
    Debugging Info for Theme support: 
    
    Theme: Enfold
    Version: 3.6.1
    Installed: enfold
    AviaFramework Version: 4.5.3
    AviaBuilder Version: 0.8
    - - - - - - - - - - -
    ChildTheme: Enfold Child
    ChildTheme Version: 1.0
    ChildTheme Installed: enfold
    
    ML:512-PU:23-PLA:1
    WP:4.5.3
    Updates: enabled
    -->
    
    <style type='text/css'>
    @font-face {font-family: 'entypo-fontello'; font-weight: normal; font-style: normal;
    src: url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=3');
    src: url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=3#iefix') format('embedded-opentype'), 
    url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff?v=3') format('woff'), 
    url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.ttf?v=3') format('truetype'), 
    url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.svg?v=3#entypo-fontello') format('svg');
    } #top .avia-font-entypo-fontello, body .avia-font-entypo-fontello, html body [data-av_iconfont='entypo-fontello']:before{ font-family: 'entypo-fontello'; }
    </style><!-- WiredMinds eMetrics tracking with LeadLab V6.3 START -->
    <script type="text/javascript"><!--
    var wiredminds = [];
    wiredminds.push(["setTrackParam", "wm_custnum", "cd4beaad1ea6fe59"]);
    // Begin own parameters.
    wiredminds.push(["setTrackParam", "wm_campaign_key", "utm_campaign"]);
    var wmDynamicConf = [];
    wmDynamicConf.push(["wm_page_url",".*unternehmen-l-mobile/mitarbeiter/.*", ["setTrackParam", "wm_milestone", "Mitarbeiter"]]);
    wmDynamicConf.push(["wm_page_url",".*unternehmen-l-mobile/karriere/.*|.*unternehmen-l-mobile/jobs/.*", ["setTrackParam", "wm_milestone", "Karriere"]]);
    wmDynamicConf.push(["wm_page_url",".*unternehmen-l-mobile/standorte/.*", ["setTrackParam", "wm_milestone", "Standorte"]]);
    wmDynamicConf.push(["wm_page_url",".*referenzen/.*", ["setTrackParam", "wm_milestone", "Referenzen"]]);
    wmDynamicConf.push(["wm_page_url",".*partner/.*", ["setTrackParam", "wm_milestone", "Partner"]]);
    wmDynamicConf.push(["wm_page_url",".*kontakt/.*", ["setTrackParam", "wm_milestone", "Kontakt"]]);
    wiredminds.push(["setDynamicParams", wmDynamicConf]); 
    wiredminds.push(["setTrackParam", "wm_content_width", 1000]); // For centered layouts set content width
    wiredminds.push(["registerHeatmapEvent", "mousedown"]);
    // End own parameters.
    wiredminds.push(["count"]); 
    (function() {
    	function wm_async_load() {
    		var wm = document.createElement("script");
    		wm.type = "text/javascript";
    		wm.async = true;
    		wm.src = "//wm2.wiredminds.de/track/count.js";
    		var el = document.getElementsByTagName('script')[0];
    		el.parentNode.insertBefore(wm, el);
    	}
    	if (window.addEventListener) {
    		window.addEventListener('load', wm_async_load, false);
    	} else if (window.attachEvent){
    		window.attachEvent('onload', wm_async_load);
    	}
    })();
    // -->
    </script>
    <noscript>
    <div>
    <a href="http://www.wiredminds.de"><img
     src="//wm2.wiredminds.de/track/ctin.php?wm_custnum=cd4beaad1ea6fe59&nojs=1"
     alt="" style="border:0px;"/></a></div></noscript>
    <!-- WiredMinds eMetrics tracking with LeadLab V6.3 END -->
    
    <!-- Google Analytics START -->
    <script>
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
    
      ga('create', 'UA-68037290-1', 'auto');
      ga('require', 'linkid');
      ga('send', 'pageview');
    
    </script>
    <!-- Google Analytics END -->
    </head>
    
    <body id="top" class="home page page-id-66 page-template-default stretched open_sans " itemscope="itemscope" itemtype="https://schema.org/WebPage" >
    
    	
    	<div id='wrap_all'>
    
    	
    <header id='header' class='all_colors header_color light_bg_color  av_header_top av_logo_left av_main_nav_header av_menu_right av_custom av_header_sticky av_header_shrinking_disabled av_header_stretch_disabled av_mobile_menu_tablet av_header_searchicon av_header_unstick_top_disabled av_seperator_small_border av_minimal_header av_minimal_header_shadow av_bottom_nav_disabled '  role="banner" itemscope="itemscope" itemtype="https://schema.org/WPHeader" >
    
    <a id="advanced_menu_toggle" href="#" aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello'></a><a id="advanced_menu_hide" href="#" 	aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello'></a>		<div id='header_meta' class='container_wrap container_wrap_meta  av_icon_active_right av_extra_header_active av_secondary_right av_phone_active_left av_entry_id_66'>
    		
    			      <div class='container'>
    			      <ul class='noLightbox social_bookmarks icon_count_2'><li class='social_bookmarks_xing av-social-link-xing social_icon_1'><a target='_blank' href='https://www.xing.com/company/l-mobile' aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello' title='Xing'><span class='avia_hidden_link_text'>Xing</span></a></li></ul><nav class='sub_menu'  role="navigation" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement" ><ul id="avia2-menu" class="menu"><li id="menu-item-959" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-has-children menu-item-959"><a href="https://www.l-mobile.com/">L-mobile Produktportfolio ∇</a>
    <ul class="sub-menu">
    	<li id="menu-item-961" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-961"><a href="http://warehouse.l-mobile.com">L-mobile warehouse</a></li>
    	<li id="menu-item-965" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-965"><a href="http://trace.l-mobile.com">L-mobile trace</a></li>
    	<li id="menu-item-964" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-964"><a href="http://production.l-mobile.com">L-mobile production</a></li>
    	<li id="menu-item-963" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-963"><a href="http://industrie40.l-mobile.com">L-mobile industrie 4.0</a></li>
    	<li id="menu-item-966" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-966"><a href="http://crm-sales.l-mobile.com">L-mobile CRM & sales</a></li>
    	<li id="menu-item-962" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-962"><a href="http://service.l-mobile.com">L-mobile service</a></li>
    	<li id="menu-item-969" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-969"><a href="http://projects.l-mobile.com">L-mobile projects</a></li>
    	<li id="menu-item-967" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-967"><a href="http://infrastructure.l-mobile.com">L-mobile infrastructure</a></li>
    </ul>
    </li>
    </ul><ul class='avia_wpml_language_switch avia_wpml_language_switch_extra'><li class='language_de avia_current_lang'><a href='https://www.l-mobile.com/'>	<span class='language_flag'><img title='Deutsch' src='https://www.l-mobile.com/wp-content/plugins/sitepress-multilingual-cms/res/flags/de.png' alt='Deutsch' /></span>	<span class='language_native'>Deutsch</span>	<span class='language_translated'>Deutsch</span>	<span class='language_code'>de</span></a></li><li class='language_en '><a href='https://www.l-mobile.com/en/'>	<span class='language_flag'><img title='English' src='https://www.l-mobile.com/wp-content/plugins/sitepress-multilingual-cms/res/flags/en.png' alt='English' /></span>	<span class='language_native'>English</span>	<span class='language_translated'>Englisch</span>	<span class='language_code'>en</span></a></li><li class='language_hu '><a href='https://www.l-mobile.com/hu/'>	<span class='language_flag'><img title='Magyar' src='https://www.l-mobile.com/wp-content/plugins/sitepress-multilingual-cms/res/flags/hu.png' alt='Magyar' /></span>	<span class='language_native'>Magyar</span>	<span class='language_translated'>Ungarisch</span>	<span class='language_code'>hu</span></a></li></ul></nav><div class='phone-info with_nav'><span>Rufen Sie uns an <strong>+49 (0) 7193 93 12-0</strong></span></div>			      </div>
    		</div>
    
    		<div  id='header_main' class='container_wrap container_wrap_logo'>
    	
            <div class='container av-logo-container'><div class='inner-container'><strong class='logo'><a href='https://www.l-mobile.com/'><img height='100' width='300' src='https://www.l-mobile.com/wp-content/uploads/2016/01/L-mobile_Web.jpg' alt='L-mobile' /></a></strong><nav class='main_menu' data-selectname='Seite auswählen'  role="navigation" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement" ><div class="avia-menu av-main-nav-wrap"><ul id="avia-menu" class="menu av-main-nav"><li id="menu-item-151" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-has-children menu-item-top-level menu-item-top-level-1"><a href="https://www.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile Produktportfolio</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a>
    
    <ul class="sub-menu">
    	<li id="menu-item-159" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://warehouse.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile warehouse</span></a></li>
    	<li id="menu-item-160" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://production.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile production</span></a></li>
    	<li id="menu-item-161" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://industrie40.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile industrie 4.0</span></a></li>
    	<li id="menu-item-162" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://trace.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile trace</span></a></li>
    	<li id="menu-item-163" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://service.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile service</span></a></li>
    	<li id="menu-item-164" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://crm-sales.l-mobile.com/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile CRM & sales</span></a></li>
    	<li id="menu-item-165" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://projects.l-mobile.com/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile projects</span></a></li>
    	<li id="menu-item-166" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://infrastructure.l-mobile.com/?" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile infrastructure</span></a></li>
    </ul>
    </li>
    <li id="menu-item-169" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-top-level menu-item-top-level-2"><a href="https://www.l-mobile.com/unternehmen-l-mobile/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Das Unternehmen</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a>
    
    <ul class="sub-menu">
    	<li id="menu-item-172" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/unternehmensphilosophie/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Unternehmensphilosophie</span></a></li>
    	<li id="menu-item-190" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/auszeichnungen/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Auszeichnungen</span></a></li>
    	<li id="menu-item-1912" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/event-kalender/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Event Kalender</span></a></li>
    	<li id="menu-item-206" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/standorte/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Wo finden Sie L-mobile</span></a></li>
    	<li id="menu-item-223" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/mitarbeiter/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Mitarbeiter</span></a></li>
    	<li id="menu-item-248" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/karriere/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Karriere</span></a></li>
    	<li id="menu-item-332" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/jobs/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Jobbörse</span></a></li>
    </ul>
    </li>
    <li id="menu-item-448" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-3"><a href="https://www.l-mobile.com/referenzen/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Referenzen</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-469" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-4"><a href="https://www.l-mobile.com/partner/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Partner</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-466" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-5"><a href="https://www.l-mobile.com/kontakt/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Kontakt</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown">
    							<a href="?s=" rel="nofollow" data-avia-search-tooltip="
    
    <form action=&quot;https://www.l-mobile.com/&quot; id=&quot;searchform&quot; method=&quot;get&quot; class=&quot;&quot;>
    	<div>
    		<input type=&quot;submit&quot; value=&quot;&quot; id=&quot;searchsubmit&quot; class=&quot;button avia-font-entypo-fontello&quot; />
    		<input type=&quot;text&quot; id=&quot;s&quot; name=&quot;s&quot; value=&quot;&quot; placeholder='Suche' />
    			</div>
    </form>" aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello'><span class="avia_hidden_link_text">Suche</span></a>
    	        		   </li></ul></div></nav></div> </div> 
    		<!-- end container_wrap-->
    		</div>
    		
    		<div class='header_bg'></div>
    
    <!-- end header -->
    </header>
    		
    	<div id='main' class='all_colors' data-scroll-offset='70'>
    
    	<div id="signup-content" class="widecolumn">
    <div class="mu_register wp-signup-container">
    Die Registrierung wurde deaktiviert.</div>
    </div>
    
    						<div class='container_wrap footer_color' id='footer'>
    
    					<div class='container'>
    
    						<div class='flex_column av_one_fourth  first el_before_av_one_fourth'><section id="text_icl-6" class="widget clearfix widget_text_icl"><h3 class="widgettitle">Praxis-Info</h3>        <div class="textwidget">Alles über mobile Geschäftsprozesse.<br/><a title="L-mobile Praxis-Info" target="_blank" href="http://praxis-info.l-mobile.com/f/16463-86716/">Anmelden</a> für die L-mobile Praxis-Info!</div>
    <span class="seperator extralight-border"></span></section><section id="text_icl-47" class="widget clearfix widget_text_icl"><h3 class="widgettitle">L-mobile downloadcenter</h3>        <div class="textwidget">Alle Dokumente im Überblick finden Sie im <a title="L-mobile downloadcenter" href="http://downloadcenter.l-mobile.com/">Downloadcenter</a>.</div>
    <span class="seperator extralight-border"></span></section></div><div class='flex_column av_one_fourth  el_after_av_one_fourth  el_before_av_one_fourth '><section id="text_icl-4" class="widget clearfix widget_text_icl"><h3 class="widgettitle">Jobbörse</h3>        <div class="textwidget">Wir sind ständig auf der Suche nach neuen Kollegen.<br/><a title="L-mobile GmbH Jobbörse" target="_blank" href="https://www.l-mobile.com/unternehmen-l-mobile/jobs/">Hier zur Jobbörse</a></div>
    <span class="seperator extralight-border"></span></section><section id="avia_partner_widget-2" class="widget clearfix avia_partner_widget"><a target="_blank" href="http://www.kununu.com/de/bw/sulzbach-an-der-murr/it/l-mobile-solutions5" class="preloading_background  avia_partner1 link_list_item1 " ><img class="rounded" src="https://www.l-mobile.com/wp-content/uploads/2015/12/top_company.png" title="" alt=""/></a><a target="_blank" href="http://www.kununu.com/de/bw/sulzbach-an-der-murr/it/l-mobile-solutions5" class="preloading_background avia_partner2 link_list_item1 " ><img class="rounded" src="https://www.l-mobile.com/wp-content/uploads/2015/12/open_company.png" title="" alt=""/></a><span class="seperator extralight-border"></span></section></div><div class='flex_column av_one_fourth  el_after_av_one_fourth  el_before_av_one_fourth '><section id="text_icl-30" class="widget clearfix widget_text_icl"><h3 class="widgettitle">Veranstaltungen</h3>        <div class="textwidget"><ul id='upcoming-events' class='upcoming-events'>
    <li class="future-event mc_crm-und-sales"><strong>26. Juli 2016</strong>, 10:00:<br/> <a title='CRM und sales Webcast' href='https://www.l-mobile.com/event-kalender/crm-und-sales-webcast-14/?mc_id=76'>CRM und sales Webcast</a><div style='height:5px'>&nbsp;</div></li>
    
    <li class="future-event mc_industrie-4-0"><strong>3. August 2016</strong>, 10:00:<br/> <a title='industrie 4.0 Webcast' href='https://www.l-mobile.com/event-kalender/industrie-4-0-webcast-13/?mc_id=68'>industrie 4.0 Webcast</a><div style='height:5px'>&nbsp;</div></li>
    
    <li class="future-event mc_projects"><strong>4. August 2016</strong>, 10:00:<br/> <a title='projects Webcast' href='https://www.l-mobile.com/event-kalender/projects-webcast-20/?mc_id=57'>projects Webcast</a><div style='height:5px'>&nbsp;</div></li>
    </ul></div>
    <span class="seperator extralight-border"></span></section></div><div class='flex_column av_one_fourth  el_after_av_one_fourth  el_before_av_one_fourth '><section id="text_icl-2" class="widget clearfix widget_text_icl"><h3 class="widgettitle">L-mobile Online Präsentation</h3>        <div class="textwidget"><div class="teamviewer">
    
    <div class="link-exe">
    
    <a target="_blank" href="https://go.teamviewer.com/l-mobile" title="Online-Präsentation in der App">App für Windows</a>
    </div>
    <hr style="border:solid #fff 1px;margin:0 7px 0 70px;">
    <div class="link-browser">
    <a target="_blank" title="Online-Präsentation im Browser" href="https://go.teamviewer.com/v11/flash.aspx?lng=de">Im Browser starten</a>
    
    </div>
    
    <div class="link-beratung">
    
    <a target="_blank" title="Persönlichen Termin vereinbaren" href="https://www.l-mobile.com/online-praesentation-wie-sie-es-wuenschen/">Persönlichen Termin vereinbaren</a>
    </div>
    </div>
    
    </div>
    <span class="seperator extralight-border"></span></section></div>
    
    					</div>
    
    				<!-- ####### END FOOTER CONTAINER ####### -->
    				</div>
    
    	
    
    			
    
    			
    				<footer class='container_wrap socket_color' id='socket'  role="contentinfo" itemscope="itemscope" itemtype="https://schema.org/WPFooter" >
                        <div class='container'>
    
                            <span class='copyright'>© Copyright 2016 - L-mobile | mobile Softwarelösungen</span>
    
                            <nav class='sub_menu_socket'  role="navigation" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement" ><div class="avia3-menu"><ul id="avia3-menu" class="menu"><li id="menu-item-60" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-1"><a href="https://www.l-mobile.com/impressum/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Impressum</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-2027" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-2"><a href="https://www.l-mobile.com/datenschutzerklaerung/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Datenschutzerklärung</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    </ul></div></nav>
                        </div>
    
    	            <!-- ####### END SOCKET CONTAINER ####### -->
    				</footer>
    
    					<!-- end main -->
    		</div>
    		
    		<!-- end wrap_all --></div>
    
     <script type='text/javascript'>
     /* <![CDATA[ */  
    var avia_framework_globals = avia_framework_globals || {};
        avia_framework_globals.frameworkUrl = 'https://www.l-mobile.com/wp-content/themes/enfold/framework/';
        avia_framework_globals.installedAt = 'https://www.l-mobile.com/wp-content/themes/enfold/';
        avia_framework_globals.ajaxurl = 'https://www.l-mobile.com/wp-admin/admin-ajax.php?lang=de';
    /* ]]> */ 
    </script>
     
     <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/contact-form-7/includes/js/jquery.form.min.js?ver=3.51.0-2014.06.20'></script>
    <script type='text/javascript'>
    /* <![CDATA[ */
    var _wpcf7 = {"loaderUrl":"https:\/\/www.l-mobile.com\/wp-content\/plugins\/contact-form-7\/images\/ajax-loader.gif","recaptchaEmpty":"Bitte best\u00e4tige, dass du nicht eine Maschine bist.","sending":"Senden ...","cached":"1"};
    /* ]]> */
    </script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=4.4.2'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/js/avia.js?ver=3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/js/shortcodes.js?ver=3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/js/aviapopup/jquery.magnific-popup.min.js?ver=2'></script>
    <script type='text/javascript'>
    /* <![CDATA[ */
    var mejsL10n = {"language":"de-DE","strings":{"Close":"Schlie\u00dfen","Fullscreen":"Vollbild","Download File":"Datei herunterladen","Download Video":"Video herunterladen","Play\/Pause":"Abspielen\/Pause","Mute Toggle":"Stumm schalten","None":"Keine","Turn off Fullscreen":"Vollbild ausschalten","Go Fullscreen":"Vollbild einschalten","Unmute":"Laut schalten","Mute":"Stumm","Captions\/Subtitles":"Untertitel"}};
    var _wpmejsSettings = {"pluginPath":"\/wp-includes\/js\/mediaelement\/"};
    /* ]]> */
    </script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/mediaelement/mediaelement-and-player.min.js?ver=2.18.1-a'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/mediaelement/wp-mediaelement.min.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/comment-reply.min.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/wp-embed.min.js?ver=4.5.3'></script>
    <script type='text/javascript'>
    /* <![CDATA[ */
    var icl_vars = {"current_language":"de","icl_home":"https:\/\/www.l-mobile.com\/","ajax_url":"https:\/\/www.l-mobile.com\/wp-admin\/admin-ajax.php","url_type":"1"};
    /* ]]> */
    </script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/sitepress-multilingual-cms/res/js/sitepress.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/my-calendar/js/mc-grid.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/my-calendar/js/mc-list.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/my-calendar/js/mc-mini.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/my-calendar/js/mc-ajax.js?ver=4.5.3'></script>
    <a href='#top' title='Nach oben scrollen' id='scroll-top-link' aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello'><span class="avia_hidden_link_text">Nach oben scrollen</span></a>
    
    <div id="fb-root"></div>
    </body>
    </html>
    
    <!-- Gator Cached page on [2016-07-17 13:01:37] -->
    <!-- Served by Advanced Cache www.l-mobile.com -->
    #661206
    L-mobileGroup
    Participant

    Hallo Zusammen

    wir haben seit einiger Zeit das Problem das sich quasi über Nacht in unserer Firmen Multisite Installation die Startseite ändert… Dies geschieht tatsächlich jeweils über Nacht…. Wir bringen das Problem mit Enfold in Verbindung da sich hier in den Theme Einstellungen das Problem auch wieder beheben lässt, jedoch leider nur für kurze Zeit.

    Ich habe einen Screenshot angefügt um das Problem zu veranschaulichen. Wir erhalten gerade nahezu jeden Morgen die unerfreuliche Startseiten Ansicht “Die Registrierung wurde deaktiviert”.

    • Content der Startseite fehlt
    • Header und Footer sind da
    • CSS Dateien werden geladen

    Das Problem kann behoben werden in dem wir im wordpress Backend unter ENFOLD –> Enfold Child (DE) Optionen –> Frontpage Settings –> die Startseiten Auswahl abändern wieder zurückstellen und dann speichern –> wir leeren dann noch den Cache von Gator Cache –> Startseite wieder da……

    Gibt es da bekannte Ursachen/ mögliche Zusammenhänge für das Problem?

    Grüße und Danke für Eure Hilfe Marc Bracher

    Source code:

    
    <!DOCTYPE html>
    <html lang="de-DE" class="html_stretched responsive av-preloader-disabled av-default-lightbox  html_header_top html_logo_left html_main_nav_header html_menu_right html_custom html_header_sticky html_header_shrinking_disabled html_header_topbar_active html_mobile_menu_tablet html_header_mobile_behavior html_header_searchicon html_content_align_center html_header_unstick_top_disabled html_header_stretch_disabled html_minimal_header html_minimal_header_shadow html_entry_id_66 ">
    <head>
    <meta charset="UTF-8" />
    
    <!-- mobile setting -->
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    
    <!-- Scripts/CSS and wp_head hook -->
    <title>L-mobile macht Geschäftsprozesse mobil - L-mobile</title>
    <link rel="alternate" hreflang="de-DE" href="https://www.l-mobile.com/" />
    <link rel="alternate" hreflang="en-US" href="https://www.l-mobile.com/en/" />
    <link rel="alternate" hreflang="hu-HU" href="https://www.l-mobile.com/hu/" />
    
    <!-- This site is optimized with the Yoast SEO Premium plugin v3.3.3 - https://yoast.com/wordpress/plugins/seo/ -->
    <meta name="description" content="Am Anfang von L-mobile stand die Idee komplexe und starre Datenerfassungssysteme einfach und mobil - und damit transparenter und produktiver zu machen. "/>
    <meta name="robots" content="noodp"/>
    <link rel="canonical" href="https://www.l-mobile.com/" />
    <meta property="DC.date.issued" content="2015-12-03T14:50:53+02:00" />
    <script type='application/ld+json'>{"@context":"http:\/\/schema.org","@type":"WebSite","url":"https:\/\/www.l-mobile.com\/","name":"L-mobile GmbH","potentialAction":{"@type":"SearchAction","target":"https:\/\/www.l-mobile.com\/?s={search_term_string}","query-input":"required name=search_term_string"}}</script>
    <script type='application/ld+json'>{"@context":"http:\/\/schema.org","@type":"Organization","url":"https:\/\/www.l-mobile.com\/","sameAs":[],"name":"L-mobile GmbH","logo":"https:\/\/www.l-mobile.com\/wp-content\/uploads\/2015\/12\/L-mobile_Web.png"}</script>
    <!-- / Yoast SEO Premium plugin. -->
    
    <link rel="alternate" type="application/rss+xml" title="L-mobile &raquo; Feed" href="https://www.l-mobile.com/feed/" />
    <link rel="alternate" type="application/rss+xml" title="L-mobile &raquo; Kommentar-Feed" href="https://www.l-mobile.com/comments/feed/" />
    
    <!-- google webfont font replacement -->
    <link rel='stylesheet' id='avia-google-webfont' href='//fonts.googleapis.com/css?family=Open+Sans:400,600' type='text/css' media='all'/> 
    		<script type="text/javascript">
    			window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/72x72\/","ext":".png","source":{"concatemoji":"https:\/\/www.l-mobile.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=4.5.3"}};
    			!function(a,b,c){function d(a){var c,d,e,f=b.createElement("canvas"),g=f.getContext&&f.getContext("2d"),h=String.fromCharCode;if(!g||!g.fillText)return!1;switch(g.textBaseline="top",g.font="600 32px Arial",a){case"flag":return g.fillText(h(55356,56806,55356,56826),0,0),f.toDataURL().length>3e3;case"diversity":return g.fillText(h(55356,57221),0,0),c=g.getImageData(16,16,1,1).data,d=c[0]+","+c[1]+","+c[2]+","+c[3],g.fillText(h(55356,57221,55356,57343),0,0),c=g.getImageData(16,16,1,1).data,e=c[0]+","+c[1]+","+c[2]+","+c[3],d!==e;case"simple":return g.fillText(h(55357,56835),0,0),0!==g.getImageData(16,16,1,1).data[0];case"unicode8":return g.fillText(h(55356,57135),0,0),0!==g.getImageData(16,16,1,1).data[0]}return!1}function e(a){var c=b.createElement("script");c.src=a,c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var f,g,h,i;for(i=Array("simple","flag","unicode8","diversity"),c.supports={everything:!0,everythingExceptFlag:!0},h=0;h<i.length;h++)c.supports[i[h]]=d(i[h]),c.supports.everything=c.supports.everything&&c.supports[i[h]],"flag"!==i[h]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[i[h]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(g=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",g,!1),a.addEventListener("load",g,!1)):(a.attachEvent("onload",g),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),f=c.source||{},f.concatemoji?e(f.concatemoji):f.wpemoji&&f.twemoji&&(e(f.twemoji),e(f.wpemoji)))}(window,document,window._wpemojiSettings);
    		</script>
    		<style type="text/css">
    img.wp-smiley,
    img.emoji {
    	display: inline !important;
    	border: none !important;
    	box-shadow: none !important;
    	height: 1em !important;
    	width: 1em !important;
    	margin: 0 .07em !important;
    	vertical-align: -0.1em !important;
    	background: none !important;
    	padding: 0 !important;
    }
    </style>
    <link rel='stylesheet' id='contact-form-7-css'  href='https://www.l-mobile.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=4.4.2' type='text/css' media='all' />
    <link rel='stylesheet' id='dashicons-css'  href='https://www.l-mobile.com/wp-includes/css/dashicons.min.css?ver=4.5.3' type='text/css' media='all' />
    <link rel='stylesheet' id='my-calendar-reset-css'  href='https://www.l-mobile.com/wp-content/plugins/my-calendar/css/reset.css?ver=4.5.3' type='text/css' media='all' />
    <link rel='stylesheet' id='my-calendar-style-css'  href='https://www.l-mobile.com/wp-content/plugins/my-calendar/styles/twentyfourteen.css?ver=4.5.3' type='text/css' media='all' />
    <link rel='stylesheet' id='credit-tracker-plugin-styles-css'  href='https://www.l-mobile.com/wp-content/plugins/credit-tracker/css/ct-public.css?ver=1.1.9' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-wpml-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/config-wpml/wpml-mod.css?ver=4.5.3' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-grid-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/grid.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-base-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/base.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-layout-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/layout.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-scs-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/shortcodes.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-popup-css-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/js/aviapopup/magnific-popup.css?ver=1' type='text/css' media='screen' />
    <link rel='stylesheet' id='avia-media-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/js/mediaelement/skin-1/mediaelementplayer.css?ver=1' type='text/css' media='screen' />
    <link rel='stylesheet' id='avia-print-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/print.css?ver=1' type='text/css' media='print' />
    <link rel='stylesheet' id='avia-dynamic-css'  href='https://www.l-mobile.com/wp-content/uploads/dynamic_avia/enfold_child.css?ver=578730a74c186' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-custom-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/css/custom.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='avia-style-css'  href='https://www.l-mobile.com/wp-content/themes/enfold-child/style.css?ver=2' type='text/css' media='all' />
    <link rel='stylesheet' id='layerslider-css'  href='https://www.l-mobile.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/css/layerslider.css?ver=5.6.8' type='text/css' media='all' />
          <script>
          if (document.location.protocol != "https:") {
              document.location = document.URL.replace(/^http:/i, "https:");
          }
          </script>
          <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/credit-tracker/js/ct-public.js?ver=1.1.9'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/js/avia-compat.js?ver=2'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/js/greensock.js?ver=1.11.8'></script>
    <script type='text/javascript'>
    /* <![CDATA[ */
    var LS_Meta = {"v":"5.6.8"};
    /* ]]> */
    </script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/js/layerslider.kreaturamedia.jquery.js?ver=5.6.8'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/js/layerslider.transitions.js?ver=5.6.8'></script>
    <meta name="generator" content="Powered by LayerSlider 5.6.8 - Multi-Purpose, Responsive, Parallax, Mobile-Friendly Slider Plugin for WordPress." />
    <!-- LayerSlider updates and docs at: https://kreaturamedia.com/layerslider-responsive-wordpress-slider-plugin/ -->
    <link rel='https://api.w.org/' href='https://www.l-mobile.com/wp-json/' />
    <link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.l-mobile.com/xmlrpc.php?rsd" />
    <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.l-mobile.com/wp-includes/wlwmanifest.xml" /> 
    <meta name="generator" content="WordPress 4.5.3" />
    <link rel='shortlink' href='https://www.l-mobile.com/' />
    <link rel="alternate" type="application/json+oembed" href="https://www.l-mobile.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.l-mobile.com%2F" />
    <link rel="alternate" type="text/xml+oembed" href="https://www.l-mobile.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.l-mobile.com%2F&format=xml" />
    
    <style type="text/css">
    <!--
    /* Styles by My Calendar - Joseph C Dolson http://www.joedolson.com/ */
    
    .mc-main .mc_allgemein .event-title, .mc-main .mc_allgemein .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_allgemein .event-title a:hover, .mc-main .mc_allgemein .event-title a:focus { background: #232121;}
    .mc-main .mc_projects .event-title, .mc-main .mc_projects .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_projects .event-title a:hover, .mc-main .mc_projects .event-title a:focus { background: #232121;}
    .mc-main .mc_warehouse .event-title, .mc-main .mc_warehouse .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_warehouse .event-title a:hover, .mc-main .mc_warehouse .event-title a:focus { background: #232121;}
    .mc-main .mc_trace .event-title, .mc-main .mc_trace .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_trace .event-title a:hover, .mc-main .mc_trace .event-title a:focus { background: #232121;}
    .mc-main .mc_service .event-title, .mc-main .mc_service .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_service .event-title a:hover, .mc-main .mc_service .event-title a:focus { background: #232121;}
    .mc-main .mc_industrie-4-0 .event-title, .mc-main .mc_industrie-4-0 .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_industrie-4-0 .event-title a:hover, .mc-main .mc_industrie-4-0 .event-title a:focus { background: #232121;}
    .mc-main .mc_crm-und-sales .event-title, .mc-main .mc_crm-und-sales .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_crm-und-sales .event-title a:hover, .mc-main .mc_crm-und-sales .event-title a:focus { background: #232121;}
    .mc-main .mc_infrastructure .event-title, .mc-main .mc_infrastructure .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_infrastructure .event-title a:hover, .mc-main .mc_infrastructure .event-title a:focus { background: #232121;}
    .mc-main .mc_production .event-title, .mc-main .mc_production .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_production .event-title a:hover, .mc-main .mc_production .event-title a:focus { background: #232121;}
    .mc-main .mc_l-mobile-hungary .event-title, .mc-main .mc_l-mobile-hungary .event-title a { background: #565454; color: #ffffff; }
    .mc-main .mc_l-mobile-hungary .event-title a:hover, .mc-main .mc_l-mobile-hungary .event-title a:focus { background: #232121;}
    .mc-event-visible {
    display: block!important;
    }
    -->
    </style>
    <script type='text/javascript'>
    	jQuery('html').addClass('mcjs');
    	jQuery(document).ready( function($) { $('html').removeClass('mcjs') } );
    </script>
    <meta name="generator" content="WPML ver:3.4.1 stt:1,3,23;" />
    
    <style type="text/css">#lang_sel a, #lang_sel a.lang_sel_sel{color:#444444;}#lang_sel a:hover, #lang_sel a.lang_sel_sel:hover{color:#000000;}#lang_sel a.lang_sel_sel, #lang_sel a.lang_sel_sel:visited{background-color:#ffffff;}#lang_sel a.lang_sel_sel:hover{background-color:#eeeeee;}#lang_sel li ul a, #lang_sel li ul a:visited{color:#444444;}#lang_sel li ul a:hover{color:#000000;}#lang_sel li ul a, #lang_sel li ul a:link, #lang_sel li ul a:visited{background-color:#ffffff;}#lang_sel li ul a:hover{background-color:#eeeeee;}#lang_sel a, #lang_sel a:visited{border-color:#EEEEEE;} #lang_sel ul ul{border-top:1px solid #EEEEEE;}</style>
    
    <style type="text/css">#lang_sel img, #lang_sel_list img, #lang_sel_footer img { display: inline; }
    </style><link rel="profile" href="http://gmpg.org/xfn/11" />
    <link rel="alternate" type="application/rss+xml" title="L-mobile RSS2 Feed" href="https://www.l-mobile.com/feed/" />
    <link rel="pingback" href="https://www.l-mobile.com/xmlrpc.php" />
    
    <style type='text/css' media='screen'>
     #top #header_main > .container, #top #header_main > .container .main_menu ul:first-child > li > a, #top #header_main #menu-item-shop .cart_dropdown_link{ height:70px; line-height: 70px; }
     .html_top_nav_header .av-logo-container{ height:70px;  }
     .html_header_top.html_header_sticky #top #wrap_all #main{ padding-top:100px; } 
    </style>
    <!--[if lt IE 9]><script src="https://www.l-mobile.com/wp-content/themes/enfold/js/html5shiv.js"></script><![endif]-->
    <link rel="icon" href="https://www.l-mobile.com/wp-content/uploads/2015/12/favicon.ico" type="image/x-icon">
    <link rel='canonical' href='https://www.l-mobile.com/' />
    <meta name='robots' content='noindex,follow' />
    	<style type="text/css">
    		.mu_register { width: 90%; margin:0 auto; }
    		.mu_register form { margin-top: 2em; }
    		.mu_register .error { font-weight:700; padding:10px; color:#333333; background:#FFEBE8; border:1px solid #CC0000; }
    		.mu_register input[type="submit"],
    			.mu_register #blog_title,
    			.mu_register #user_email,
    			.mu_register #blogname,
    			.mu_register #user_name { width:100%; font-size: 24px; margin:5px 0; }
    		.mu_register #site-language { display: block; }
    		.mu_register .prefix_address,
    			.mu_register .suffix_address {font-size: 18px;display:inline; }
    		.mu_register label { font-weight:700; font-size:15px; display:block; margin:10px 0; }
    		.mu_register label.checkbox { display:inline; }
    		.mu_register .mu_alert { font-weight:700; padding:10px; color:#333333; background:#ffffe0; border:1px solid #e6db55; }
    	</style>
    	
    
    <!--
    Debugging Info for Theme support: 
    
    Theme: Enfold
    Version: 3.6.1
    Installed: enfold
    AviaFramework Version: 4.5.3
    AviaBuilder Version: 0.8
    - - - - - - - - - - -
    ChildTheme: Enfold Child
    ChildTheme Version: 1.0
    ChildTheme Installed: enfold
    
    ML:512-PU:23-PLA:1
    WP:4.5.3
    Updates: enabled
    -->
    
    <style type='text/css'>
    @font-face {font-family: 'entypo-fontello'; font-weight: normal; font-style: normal;
    src: url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=3');
    src: url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=3#iefix') format('embedded-opentype'), 
    url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff?v=3') format('woff'), 
    url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.ttf?v=3') format('truetype'), 
    url('https://www.l-mobile.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.svg?v=3#entypo-fontello') format('svg');
    } #top .avia-font-entypo-fontello, body .avia-font-entypo-fontello, html body [data-av_iconfont='entypo-fontello']:before{ font-family: 'entypo-fontello'; }
    </style><!-- WiredMinds eMetrics tracking with LeadLab V6.3 START -->
    <script type="text/javascript"><!--
    var wiredminds = [];
    wiredminds.push(["setTrackParam", "wm_custnum", "cd4beaad1ea6fe59"]);
    // Begin own parameters.
    wiredminds.push(["setTrackParam", "wm_campaign_key", "utm_campaign"]);
    var wmDynamicConf = [];
    wmDynamicConf.push(["wm_page_url",".*unternehmen-l-mobile/mitarbeiter/.*", ["setTrackParam", "wm_milestone", "Mitarbeiter"]]);
    wmDynamicConf.push(["wm_page_url",".*unternehmen-l-mobile/karriere/.*|.*unternehmen-l-mobile/jobs/.*", ["setTrackParam", "wm_milestone", "Karriere"]]);
    wmDynamicConf.push(["wm_page_url",".*unternehmen-l-mobile/standorte/.*", ["setTrackParam", "wm_milestone", "Standorte"]]);
    wmDynamicConf.push(["wm_page_url",".*referenzen/.*", ["setTrackParam", "wm_milestone", "Referenzen"]]);
    wmDynamicConf.push(["wm_page_url",".*partner/.*", ["setTrackParam", "wm_milestone", "Partner"]]);
    wmDynamicConf.push(["wm_page_url",".*kontakt/.*", ["setTrackParam", "wm_milestone", "Kontakt"]]);
    wiredminds.push(["setDynamicParams", wmDynamicConf]); 
    wiredminds.push(["setTrackParam", "wm_content_width", 1000]); // For centered layouts set content width
    wiredminds.push(["registerHeatmapEvent", "mousedown"]);
    // End own parameters.
    wiredminds.push(["count"]); 
    (function() {
    	function wm_async_load() {
    		var wm = document.createElement("script");
    		wm.type = "text/javascript";
    		wm.async = true;
    		wm.src = "//wm2.wiredminds.de/track/count.js";
    		var el = document.getElementsByTagName('script')[0];
    		el.parentNode.insertBefore(wm, el);
    	}
    	if (window.addEventListener) {
    		window.addEventListener('load', wm_async_load, false);
    	} else if (window.attachEvent){
    		window.attachEvent('onload', wm_async_load);
    	}
    })();
    // -->
    </script>
    <noscript>
    <div>
    <a href="http://www.wiredminds.de"><img
     src="//wm2.wiredminds.de/track/ctin.php?wm_custnum=cd4beaad1ea6fe59&nojs=1"
     alt="" style="border:0px;"/></a></div></noscript>
    <!-- WiredMinds eMetrics tracking with LeadLab V6.3 END -->
    
    <!-- Google Analytics START -->
    <script>
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
    
      ga('create', 'UA-68037290-1', 'auto');
      ga('require', 'linkid');
      ga('send', 'pageview');
    
    </script>
    <!-- Google Analytics END -->
    </head>
    
    <body id="top" class="home page page-id-66 page-template-default stretched open_sans " itemscope="itemscope" itemtype="https://schema.org/WebPage" >
    
    	
    	<div id='wrap_all'>
    
    	
    <header id='header' class='all_colors header_color light_bg_color  av_header_top av_logo_left av_main_nav_header av_menu_right av_custom av_header_sticky av_header_shrinking_disabled av_header_stretch_disabled av_mobile_menu_tablet av_header_searchicon av_header_unstick_top_disabled av_seperator_small_border av_minimal_header av_minimal_header_shadow av_bottom_nav_disabled '  role="banner" itemscope="itemscope" itemtype="https://schema.org/WPHeader" >
    
    <a id="advanced_menu_toggle" href="#" aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello'></a><a id="advanced_menu_hide" href="#" 	aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello'></a>		<div id='header_meta' class='container_wrap container_wrap_meta  av_icon_active_right av_extra_header_active av_secondary_right av_phone_active_left av_entry_id_66'>
    		
    			      <div class='container'>
    			      <ul class='noLightbox social_bookmarks icon_count_2'><li class='social_bookmarks_xing av-social-link-xing social_icon_1'><a target='_blank' href='https://www.xing.com/company/l-mobile' aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello' title='Xing'><span class='avia_hidden_link_text'>Xing</span></a></li></ul><nav class='sub_menu'  role="navigation" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement" ><ul id="avia2-menu" class="menu"><li id="menu-item-959" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-has-children menu-item-959"><a href="https://www.l-mobile.com/">L-mobile Produktportfolio ∇</a>
    <ul class="sub-menu">
    	<li id="menu-item-961" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-961"><a href="http://warehouse.l-mobile.com">L-mobile warehouse</a></li>
    	<li id="menu-item-965" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-965"><a href="http://trace.l-mobile.com">L-mobile trace</a></li>
    	<li id="menu-item-964" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-964"><a href="http://production.l-mobile.com">L-mobile production</a></li>
    	<li id="menu-item-963" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-963"><a href="http://industrie40.l-mobile.com">L-mobile industrie 4.0</a></li>
    	<li id="menu-item-966" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-966"><a href="http://crm-sales.l-mobile.com">L-mobile CRM & sales</a></li>
    	<li id="menu-item-962" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-962"><a href="http://service.l-mobile.com">L-mobile service</a></li>
    	<li id="menu-item-969" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-969"><a href="http://projects.l-mobile.com">L-mobile projects</a></li>
    	<li id="menu-item-967" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-967"><a href="http://infrastructure.l-mobile.com">L-mobile infrastructure</a></li>
    </ul>
    </li>
    </ul><ul class='avia_wpml_language_switch avia_wpml_language_switch_extra'><li class='language_de avia_current_lang'><a href='https://www.l-mobile.com/'>	<span class='language_flag'><img title='Deutsch' src='https://www.l-mobile.com/wp-content/plugins/sitepress-multilingual-cms/res/flags/de.png' alt='Deutsch' /></span>	<span class='language_native'>Deutsch</span>	<span class='language_translated'>Deutsch</span>	<span class='language_code'>de</span></a></li><li class='language_en '><a href='https://www.l-mobile.com/en/'>	<span class='language_flag'><img title='English' src='https://www.l-mobile.com/wp-content/plugins/sitepress-multilingual-cms/res/flags/en.png' alt='English' /></span>	<span class='language_native'>English</span>	<span class='language_translated'>Englisch</span>	<span class='language_code'>en</span></a></li><li class='language_hu '><a href='https://www.l-mobile.com/hu/'>	<span class='language_flag'><img title='Magyar' src='https://www.l-mobile.com/wp-content/plugins/sitepress-multilingual-cms/res/flags/hu.png' alt='Magyar' /></span>	<span class='language_native'>Magyar</span>	<span class='language_translated'>Ungarisch</span>	<span class='language_code'>hu</span></a></li></ul></nav><div class='phone-info with_nav'><span>Rufen Sie uns an <strong>+49 (0) 7193 93 12-0</strong></span></div>			      </div>
    		</div>
    
    		<div  id='header_main' class='container_wrap container_wrap_logo'>
    	
            <div class='container av-logo-container'><div class='inner-container'><strong class='logo'><a href='https://www.l-mobile.com/'><img height='100' width='300' src='https://www.l-mobile.com/wp-content/uploads/2016/01/L-mobile_Web.jpg' alt='L-mobile' /></a></strong><nav class='main_menu' data-selectname='Seite auswählen'  role="navigation" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement" ><div class="avia-menu av-main-nav-wrap"><ul id="avia-menu" class="menu av-main-nav"><li id="menu-item-151" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-has-children menu-item-top-level menu-item-top-level-1"><a href="https://www.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile Produktportfolio</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a>
    
    <ul class="sub-menu">
    	<li id="menu-item-159" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://warehouse.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile warehouse</span></a></li>
    	<li id="menu-item-160" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://production.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile production</span></a></li>
    	<li id="menu-item-161" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://industrie40.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile industrie 4.0</span></a></li>
    	<li id="menu-item-162" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://trace.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile trace</span></a></li>
    	<li id="menu-item-163" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://service.l-mobile.com" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile service</span></a></li>
    	<li id="menu-item-164" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://crm-sales.l-mobile.com/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile CRM & sales</span></a></li>
    	<li id="menu-item-165" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://projects.l-mobile.com/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile projects</span></a></li>
    	<li id="menu-item-166" class="menu-item menu-item-type-custom menu-item-object-custom"><a href="http://infrastructure.l-mobile.com/?" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">L-mobile infrastructure</span></a></li>
    </ul>
    </li>
    <li id="menu-item-169" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-top-level menu-item-top-level-2"><a href="https://www.l-mobile.com/unternehmen-l-mobile/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Das Unternehmen</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a>
    
    <ul class="sub-menu">
    	<li id="menu-item-172" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/unternehmensphilosophie/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Unternehmensphilosophie</span></a></li>
    	<li id="menu-item-190" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/auszeichnungen/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Auszeichnungen</span></a></li>
    	<li id="menu-item-1912" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/event-kalender/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Event Kalender</span></a></li>
    	<li id="menu-item-206" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/standorte/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Wo finden Sie L-mobile</span></a></li>
    	<li id="menu-item-223" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/mitarbeiter/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Mitarbeiter</span></a></li>
    	<li id="menu-item-248" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/karriere/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Karriere</span></a></li>
    	<li id="menu-item-332" class="menu-item menu-item-type-post_type menu-item-object-page"><a href="https://www.l-mobile.com/unternehmen-l-mobile/jobs/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Jobbörse</span></a></li>
    </ul>
    </li>
    <li id="menu-item-448" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-3"><a href="https://www.l-mobile.com/referenzen/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Referenzen</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-469" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-4"><a href="https://www.l-mobile.com/partner/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Partner</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-466" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-5"><a href="https://www.l-mobile.com/kontakt/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Kontakt</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown">
    							<a href="?s=" rel="nofollow" data-avia-search-tooltip="
    
    <form action=&quot;https://www.l-mobile.com/&quot; id=&quot;searchform&quot; method=&quot;get&quot; class=&quot;&quot;>
    	<div>
    		<input type=&quot;submit&quot; value=&quot;&quot; id=&quot;searchsubmit&quot; class=&quot;button avia-font-entypo-fontello&quot; />
    		<input type=&quot;text&quot; id=&quot;s&quot; name=&quot;s&quot; value=&quot;&quot; placeholder='Suche' />
    			</div>
    </form>" aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello'><span class="avia_hidden_link_text">Suche</span></a>
    	        		   </li></ul></div></nav></div> </div> 
    		<!-- end container_wrap-->
    		</div>
    		
    		<div class='header_bg'></div>
    
    <!-- end header -->
    </header>
    		
    	<div id='main' class='all_colors' data-scroll-offset='70'>
    
    	<div id="signup-content" class="widecolumn">
    <div class="mu_register wp-signup-container">
    Die Registrierung wurde deaktiviert.</div>
    </div>
    
    						<div class='container_wrap footer_color' id='footer'>
    
    					<div class='container'>
    
    						<div class='flex_column av_one_fourth  first el_before_av_one_fourth'><section id="text_icl-6" class="widget clearfix widget_text_icl"><h3 class="widgettitle">Praxis-Info</h3>        <div class="textwidget">Alles über mobile Geschäftsprozesse.<br/><a title="L-mobile Praxis-Info" target="_blank" href="http://praxis-info.l-mobile.com/f/16463-86716/">Anmelden</a> für die L-mobile Praxis-Info!</div>
    <span class="seperator extralight-border"></span></section><section id="text_icl-47" class="widget clearfix widget_text_icl"><h3 class="widgettitle">L-mobile downloadcenter</h3>        <div class="textwidget">Alle Dokumente im Überblick finden Sie im <a title="L-mobile downloadcenter" href="http://downloadcenter.l-mobile.com/">Downloadcenter</a>.</div>
    <span class="seperator extralight-border"></span></section></div><div class='flex_column av_one_fourth  el_after_av_one_fourth  el_before_av_one_fourth '><section id="text_icl-4" class="widget clearfix widget_text_icl"><h3 class="widgettitle">Jobbörse</h3>        <div class="textwidget">Wir sind ständig auf der Suche nach neuen Kollegen.<br/><a title="L-mobile GmbH Jobbörse" target="_blank" href="https://www.l-mobile.com/unternehmen-l-mobile/jobs/">Hier zur Jobbörse</a></div>
    <span class="seperator extralight-border"></span></section><section id="avia_partner_widget-2" class="widget clearfix avia_partner_widget"><a target="_blank" href="http://www.kununu.com/de/bw/sulzbach-an-der-murr/it/l-mobile-solutions5" class="preloading_background  avia_partner1 link_list_item1 " ><img class="rounded" src="https://www.l-mobile.com/wp-content/uploads/2015/12/top_company.png" title="" alt=""/></a><a target="_blank" href="http://www.kununu.com/de/bw/sulzbach-an-der-murr/it/l-mobile-solutions5" class="preloading_background avia_partner2 link_list_item1 " ><img class="rounded" src="https://www.l-mobile.com/wp-content/uploads/2015/12/open_company.png" title="" alt=""/></a><span class="seperator extralight-border"></span></section></div><div class='flex_column av_one_fourth  el_after_av_one_fourth  el_before_av_one_fourth '><section id="text_icl-30" class="widget clearfix widget_text_icl"><h3 class="widgettitle">Veranstaltungen</h3>        <div class="textwidget"><ul id='upcoming-events' class='upcoming-events'>
    <li class="future-event mc_crm-und-sales"><strong>26. Juli 2016</strong>, 10:00:<br/> <a title='CRM und sales Webcast' href='https://www.l-mobile.com/event-kalender/crm-und-sales-webcast-14/?mc_id=76'>CRM und sales Webcast</a><div style='height:5px'>&nbsp;</div></li>
    
    <li class="future-event mc_industrie-4-0"><strong>3. August 2016</strong>, 10:00:<br/> <a title='industrie 4.0 Webcast' href='https://www.l-mobile.com/event-kalender/industrie-4-0-webcast-13/?mc_id=68'>industrie 4.0 Webcast</a><div style='height:5px'>&nbsp;</div></li>
    
    <li class="future-event mc_projects"><strong>4. August 2016</strong>, 10:00:<br/> <a title='projects Webcast' href='https://www.l-mobile.com/event-kalender/projects-webcast-20/?mc_id=57'>projects Webcast</a><div style='height:5px'>&nbsp;</div></li>
    </ul></div>
    <span class="seperator extralight-border"></span></section></div><div class='flex_column av_one_fourth  el_after_av_one_fourth  el_before_av_one_fourth '><section id="text_icl-2" class="widget clearfix widget_text_icl"><h3 class="widgettitle">L-mobile Online Präsentation</h3>        <div class="textwidget"><div class="teamviewer">
    
    <div class="link-exe">
    
    <a target="_blank" href="https://go.teamviewer.com/l-mobile" title="Online-Präsentation in der App">App für Windows</a>
    </div>
    <hr style="border:solid #fff 1px;margin:0 7px 0 70px;">
    <div class="link-browser">
    <a target="_blank" title="Online-Präsentation im Browser" href="https://go.teamviewer.com/v11/flash.aspx?lng=de">Im Browser starten</a>
    
    </div>
    
    <div class="link-beratung">
    
    <a target="_blank" title="Persönlichen Termin vereinbaren" href="https://www.l-mobile.com/online-praesentation-wie-sie-es-wuenschen/">Persönlichen Termin vereinbaren</a>
    </div>
    </div>
    
    </div>
    <span class="seperator extralight-border"></span></section></div>
    
    					</div>
    
    				<!-- ####### END FOOTER CONTAINER ####### -->
    				</div>
    
    	
    
    			
    
    			
    				<footer class='container_wrap socket_color' id='socket'  role="contentinfo" itemscope="itemscope" itemtype="https://schema.org/WPFooter" >
                        <div class='container'>
    
                            <span class='copyright'>© Copyright 2016 - L-mobile | mobile Softwarelösungen</span>
    
                            <nav class='sub_menu_socket'  role="navigation" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement" ><div class="avia3-menu"><ul id="avia3-menu" class="menu"><li id="menu-item-60" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-1"><a href="https://www.l-mobile.com/impressum/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Impressum</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    <li id="menu-item-2027" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-top-level menu-item-top-level-2"><a href="https://www.l-mobile.com/datenschutzerklaerung/" itemprop="url"><span class="avia-bullet"></span><span class="avia-menu-text">Datenschutzerklärung</span><span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span></a></li>
    </ul></div></nav>
                        </div>
    
    	            <!-- ####### END SOCKET CONTAINER ####### -->
    				</footer>
    
    					<!-- end main -->
    		</div>
    		
    		<!-- end wrap_all --></div>
    
     <script type='text/javascript'>
     /* <![CDATA[ */  
    var avia_framework_globals = avia_framework_globals || {};
        avia_framework_globals.frameworkUrl = 'https://www.l-mobile.com/wp-content/themes/enfold/framework/';
        avia_framework_globals.installedAt = 'https://www.l-mobile.com/wp-content/themes/enfold/';
        avia_framework_globals.ajaxurl = 'https://www.l-mobile.com/wp-admin/admin-ajax.php?lang=de';
    /* ]]> */ 
    </script>
     
     <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/contact-form-7/includes/js/jquery.form.min.js?ver=3.51.0-2014.06.20'></script>
    <script type='text/javascript'>
    /* <![CDATA[ */
    var _wpcf7 = {"loaderUrl":"https:\/\/www.l-mobile.com\/wp-content\/plugins\/contact-form-7\/images\/ajax-loader.gif","recaptchaEmpty":"Bitte best\u00e4tige, dass du nicht eine Maschine bist.","sending":"Senden ...","cached":"1"};
    /* ]]> */
    </script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=4.4.2'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/js/avia.js?ver=3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/js/shortcodes.js?ver=3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/themes/enfold/js/aviapopup/jquery.magnific-popup.min.js?ver=2'></script>
    <script type='text/javascript'>
    /* <![CDATA[ */
    var mejsL10n = {"language":"de-DE","strings":{"Close":"Schlie\u00dfen","Fullscreen":"Vollbild","Download File":"Datei herunterladen","Download Video":"Video herunterladen","Play\/Pause":"Abspielen\/Pause","Mute Toggle":"Stumm schalten","None":"Keine","Turn off Fullscreen":"Vollbild ausschalten","Go Fullscreen":"Vollbild einschalten","Unmute":"Laut schalten","Mute":"Stumm","Captions\/Subtitles":"Untertitel"}};
    var _wpmejsSettings = {"pluginPath":"\/wp-includes\/js\/mediaelement\/"};
    /* ]]> */
    </script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/mediaelement/mediaelement-and-player.min.js?ver=2.18.1-a'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/mediaelement/wp-mediaelement.min.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/comment-reply.min.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-includes/js/wp-embed.min.js?ver=4.5.3'></script>
    <script type='text/javascript'>
    /* <![CDATA[ */
    var icl_vars = {"current_language":"de","icl_home":"https:\/\/www.l-mobile.com\/","ajax_url":"https:\/\/www.l-mobile.com\/wp-admin\/admin-ajax.php","url_type":"1"};
    /* ]]> */
    </script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/sitepress-multilingual-cms/res/js/sitepress.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/my-calendar/js/mc-grid.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/my-calendar/js/mc-list.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/my-calendar/js/mc-mini.js?ver=4.5.3'></script>
    <script type='text/javascript' src='https://www.l-mobile.com/wp-content/plugins/my-calendar/js/mc-ajax.js?ver=4.5.3'></script>
    <a href='#top' title='Nach oben scrollen' id='scroll-top-link' aria-hidden='true' data-av_icon='' data-av_iconfont='entypo-fontello'><span class="avia_hidden_link_text">Nach oben scrollen</span></a>
    
    <div id="fb-root"></div>
    </body>
    </html>
    
    <!-- Gator Cached page on [2016-07-17 13:01:37] -->
    <!-- Served by Advanced Cache www.l-mobile.com -->
    
    • This topic was modified 9 years, 6 months ago by L-mobileGroup.
    #658824

    Hi,

    Thank you for sharing the mockup, to modify specific icon box please add the below css to quick css and the custom css class name “icon-offset” to the icon box element.

    .icon-offset .avia-image-container-inner {
        margin-top: -200px;
    }

    Let us know if you have any questions.

    Best regards,
    Vinay

    #657965

    Ok I solved more or less all the issues axcept one. First I work with the woocommerce multilingual settings as stated above. This give me the possibility of opening the product in each language from teh standard avia layout builder of Enfold. In this way I can check all settings (example I found that in the automatic copy the Name Your Price Option was not set and that’s why it didn’t appear in the front end).

    I downloaded a wpml-config.xml file that I copied in my child theme and the menu now has the same color taken from my custom css style sheet.

    However the custom shortcodes don’t work. They appear in the avia layout builder in the administrative panel (while editing the product), but nothing appears in the front-end. It is like the php function I wrote is not working in the front end translated page.

    The code is the following… maybe I should add something the php file.

    It takes takes the formatted name from each variation of the product (which are cruise dates) and it extrapolates the variation name and its stock availability (= places available in each cruise date).

    <?php
    
    if( !class_exists( 'woocommerce' ) )
    {
    	add_shortcode('csr_calendar_button', 'avia_please_install_woo');
    	return;
    }
    
    if ( !class_exists( 'avia_csr_calendar_button' ) )
    {
    	class avia_csr_calendar_button extends aviaShortcodeTemplate
    	{
    		/**
    		 * Create the config array for the shortcode button
    		 */
    		function shortcode_insert_button()
    		{
    			$this->config['name']		= __('CSR Calendar', 'avia_framework' );
    			$this->config['tab']		= __('Plugin Additions', 'avia_framework' );
    			$this->config['icon']		= AviaBuilder::$path['imagesURL']."sc-button.png";
    			$this->config['order']		= 23;
    			$this->config['target']		= 'avia-target-insert';
    			$this->config['shortcode'] 	= 'csr_calendar_button';
    			$this->config['tooltip'] 	= __('Display the "CSR Calendar" button for the current product', 'avia_framework' );
    			$this->config['drag-level'] = 3;
    			$this->config['tinyMCE'] 	= array('disable' => "true");
    			$this->config['posttype'] 	= array('product',__('This element can only be used on single product pages','avia_framework'));
    		}
    
    		/**
    		 * Editor Element - this function defines the visual appearance of an element on the AviaBuilder Canvas
    		 * Most common usage is to define some markup in the $params['innerHtml'] which is then inserted into the drag and drop container
    		 * Less often used: $params['data'] to add data attributes, $params['class'] to modify the className
    		 *
    		 *
    		 * @param array $params this array holds the default values for $content and $args.
    		 * @return $params the return array usually holds an innerHtml key that holds item specific markup.
    		 */
    		function editor_element($params)
    		{
    			$params['innerHtml'] = "<img src='".$this->config['icon']."' title='".$this->config['name']."' />";
    			$params['innerHtml'].= "<div class='avia-element-label'>".$this->config['name']."</div>";
    			$params['content'] 	 = NULL; //remove to allow content elements
    			return $params;
    		}
    
    		/**
    		 * Frontend Shortcode Handler
    		 *
    		 * @param array $atts array of attributes
    		 * @param string $content text within enclosing form of shortcode element
    		 * @param string $shortcodename the shortcode found, when == callback name
    		 * @return string $output returns the modified html string
    		 */
    		function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
    		{
    			$output = "";
    			$meta['el_class'];
    			
    			global $woocommerce, $product;
    			if(!is_object($woocommerce) || !is_object($woocommerce->query) || empty($product)) return;
    
    			// $product = wc_get_product();
    			
    			$output .= "<div class='av-woo-calendar-button ".$meta['el_class']."'>";
    			ob_start();?>
    			
                    <table cellspacing="0" cellpadding="2">
                        <thead>
                            <tr>
                                <th scope="col" style="text-align:left; background-color:rgba(255,255,255,1); vertical-align:middle;"><?php _e('Cruise', 'woothemes'); ?></th>
                                <th scope="col" style="text-align:center;background-color:rgba(255,255,255,1);"><?php _e('Places<br/>available', 'woothemes'); ?></th>
                            </tr>
                        </thead>
                        <tbody>
                        <?php
                        
                        $args = array(
                            'post_type'			=> 'product_variation',
                            'post_status' 		=> 'publish',
                            'posts_per_page' 	=> -1,
                            'orderby'			=> 'title',
                            'order'				=> 'ASC',
                           'meta_query' => array(
                                array(
                                    'key' 		=> '_stock',
                                    'value' 	=> array('', false, null),
                                    'compare' 	=> 'NOT IN'
                                )
                            )
                        );
                        
                        $loop = new WP_Query( $args );
                    
                        while ( $loop->have_posts() ) : $loop->the_post();
                        
                                        $product = new WC_Product_Variation( $loop->post->ID );
    									
                                if (get_the_title( $loop->post->post_parent ) == 'CSR Expeditions Payment')
                                {		
    								$variation_formatted_name = $product->get_formatted_name();
    								$variation_name_array = explode("&ndash;", $variation_formatted_name);
    								$variation_name = $variation_name_array[2];
    								$variation_price = $variation_name_array[3];
    								$variation_sku = $variation_name_array[0];
    								$variation_name_only = explode(":", $variation_name);
    								$variation_name_only = $variation_name_only[1];
                            ?>
                            
                            <tr>
                                <td><?php  echo $variation_name_only ."&ndash;" . $variation_price; ?></td>
                                <?php
    								if (intval ($product->stock) >0)
    								{ ?>
                               			<td style="text-align:center; font-size: 13px; background-color:#70C940; color:rgba(255,255,255,1);"><?php echo intval ($product->stock); ?></td>
    								<?php
                                    }
    								else
    								{ ?>
                               			<td style="text-align:center; font-size: 13px; background-color:#D11E1B;color:rgba(255,255,255,1);"> <?php echo intval ($product->stock); ?></td>
                                    <?php    
    								}
    								
    							?>
                            </tr>
                            <?php
                                }
                        endwhile; 
                        
                        ?>
                        </tbody>
                    </table>
    
    			<?php
    			
    			$output .= ob_get_clean();
    			$output .= "</div>";
    			return $output;
    		}
    	}
    }
    
    #657825
    gerardbao
    Participant

    Hi there,

    I’m trying to create a custom class for an image container so it floats up above a widget box (sort of like the icon content box).

    .avia-image-container.avia-align-center .avia-image-container-inner {
    background: #ffffff none repeat scroll 0 0;
    display: inline-block;
    margin: -68px auto 0;
    vertical-align: bottom;
    }

    After updating the margin, I was able to get the image to float up above the border like I want it too.
    However I only want it applied to a specific custom CSS as noted in

    I set a custom class (float-icon-box) for the middle site search box on my homepage. Modified the Quick CSS, and it the image container doesn’t float up like it should.
    .float-icon-box {
    display: inline-block;
    margin: -68px auto 0;
    vertical-align: bottom;
    }

    Any suggestions?

    #656129

    In reply to: Add new Element to ALB

    hello,

    i have create a Titeloben.php in shortcodes folder in my child-theme. I attached the php file. What must i change so that the shortcode is working and its a new element. this is the content:

    <?php
    /**
     * COLUMNS
     * Shortcode which creates columns for better content separation
     */
    
     // Don't load directly
    if ( !defined('ABSPATH') ) { die('-1'); }
    
    if ( !class_exists( 'avia_sc_titeloben' ) )
    {
    	class avia_sc_titeloben extends aviaShortcodeTemplate{
    
    			static $section_count = 0;
    			static $add_to_closing = "";
    			static $close_overlay = "";
    
    			/**
    			 * Create the config array for the shortcode button
    			 */
    			function shortcode_insert_button()
    			{
    				$this->config['name']		= __('TitelOben', 'avia_framework' );
    				$this->config['icon']		= AviaBuilder::$path['imagesURL']."sc-titeloben.png";
    				$this->config['tab']		= __('Layout Elements', 'avia_framework' );
    				$this->config['order']		= 20;
    				$this->config['shortcode'] 	= 'titeloben';
    				$this->config['html_renderer'] 	= false;
    				$this->config['tinyMCE'] 	= array('disable' => "true");
    				$this->config['tooltip'] 	= __('Creates a section with unique background image and colors', 'avia_framework' );
    				$this->config['drag-level'] = 1;
    				$this->config['drop-level'] = 1;
    
    			}
    
    			/**
    			 * Editor Element - this function defines the visual appearance of an element on the AviaBuilder Canvas
    			 * Most common usage is to define some markup in the $params['innerHtml'] which is then inserted into the drag and drop container
    			 * Less often used: $params['data'] to add data attributes, $params['class'] to modify the className
    			 *
    			 *
    			 * @param array $params this array holds the default values for $content and $args.
    			 * @return $params the return array usually holds an innerHtml key that holds item specific markup.
    			 */
    
    			function editor_element($params)
    			{
    				extract($params);
    				$name = $this->config['shortcode'];
    				$data['shortcodehandler'] 	= $this->config['shortcode'];
        			$data['modal_title'] 		= $this->config['name'];
        			$data['modal_ajax_hook'] 	= $this->config['shortcode'];
    				$data['dragdrop-level'] 	= $this->config['drag-level'];
    				$data['allowed-shortcodes']	= $this->config['shortcode'];
    
        			if(!empty($this->config['modal_on_load']))
        			{
        				$data['modal_on_load'] 	= $this->config['modal_on_load'];
        			}
    
        			$dataString  = AviaHelper::create_data_string($data);
    
    				$output  = "<div class='avia_layout_section avia_pop_class avia-no-visual-updates ".$name." av_drag' ".$dataString.">";
    
    				$output .= "    <div class='avia_sorthandle menu-item-handle'>";
    				$output .= "        <span class='avia-element-title'>".$this->config['name']."</span>";
    			    //$output .= "        <a class='avia-new-target'  href='#new-target' title='".__('Move Section','avia_framework' )."'>+</a>";
    				$output .= "        <a class='avia-delete'  href='#delete' title='".__('Delete Section','avia_framework' )."'>x</a>";
    
    				if(!empty($this->config['popup_editor']))
        			{
        				$output .= "    <a class='avia-edit-element'  href='#edit-element' title='".__('Edit Section','avia_framework' )."'>edit</a>";
        			}
    				$output .= "<a class='avia-save-element'  href='#save-element' title='".__('Save Element as Template','avia_framework' )."'>+</a>";
    				$output .= "        <a class='avia-clone'  href='#clone' title='".__('Clone Section','avia_framework' )."' >".__('Clone Section','avia_framework' )."</a></div>";
    				$output .= "    <div class='avia_inner_shortcode avia_connect_sort av_drop' data-dragdrop-level='".$this->config['drop-level']."'>";
    				$output .= "<textarea data-name='text-shortcode' cols='20' rows='4'>".ShortcodeHelper::create_shortcode_by_array($name, $content, $args)."</textarea>";
    				if($content)
    				{
    					$content = $this->builder->do_shortcode_backend($content);
    				}
    				$output .= $content;
    				$output .= "</div></div>";
    
    				return $output;
    			}
    
    			/**
    			 * Popup Elements
    			 *
    			 * If this function is defined in a child class the element automatically gets an edit button, that, when pressed
    			 * opens a modal window that allows to edit the element properties
    			 *
    			 * @return void
    			 */
    			function popup_elements()
    			{
    			    global  $avia_config;
    
    				$this->elements = array(
    
    					array(
    							"type" 	=> "tab_container", 'nodescription' => true
    						),
    											
    					array(
    							"type" 	=> "tab",
    							"name"	=> __("Section Layout",'avia_framework' ),
    							'nodescription' => true
    						),
    					
    					
    					array(
    						"name" 	=> __("Section Minimum Height",'avia_framework' ),
    						"id" 	=> "min_height",
    						"desc"  => __("Define a minimum height for the section. Content within the section will be centered vertically within the section",'avia_framework' ),
    						"type" 	=> "select",
    						"std" 	=> "",
    						"subtype" => array(   __('No minimum height, use content within section to define Section height','avia_framework' )	=>'',
    						                      __('At least 100&percnt; of Browser Window height','avia_framework' )=>'100',
    						                      __('At least 75&percnt; of Browser Window height','avia_framework' )	=>'75',
    											  __('At least 50&percnt; of Browser Window height','avia_framework' )	=>'50',
    											  __('At least 25&percnt; of Browser Window height','avia_framework' )	=>'25',
    											  __('Custom height in pixel','avia_framework' )	=>'custom',
    						                  )
    				    ),
    				    
    				    array(	
    							"name" 	=> __("Section custom height", 'avia_framework' ),
    							"desc" 	=> __("Define a minimum height for the section. Use a pixel value. eg: 500px", 'avia_framework' ) ,
    							"id" 	=> "min_height_px",
    							"required"=> array('min_height','equals','custom'),
    							"std" 	=> "500px",
    							"type" 	=> "input"),
    					
    				
    				    array(
    						"name" 	=> __("Section Padding",'avia_framework' ),
    						"id" 	=> "padding",
    						"desc"  => __("Define the sections top and bottom padding",'avia_framework' ),
    						"type" 	=> "select",
    						"std" 	=> "default",
    						"subtype" => array(   __('No Padding','avia_framework' )	=>'no-padding',
    											  __('Small Padding','avia_framework' )	=>'small',
    						                      __('Default Padding','avia_framework' )	=>'default',
    						                      __('Large Padding','avia_framework' )	=>'large',
    						                      __('Huge Padding','avia_framework' )	=>'huge',
    						                  )
    				    ),
    
    /*
    				   array(
    						"name" 	=> __("Section Top Border Styling",'avia_framework' ),
    						"id" 	=> "shadow",
    						"desc"  => __("Chose a border styling for the top of your section",'avia_framework' ),
    						"type" 	=> "select",
    						"std" 	=> "no-shadow",
    						"subtype" => array( __('Display simple top border','avia_framework' )	=>'no-shadow',  
    											__('Display a small styling shadow at the top of the section','avia_framework' )	=>'shadow',
    											__('No border styling','avia_framework' )	=>'no-border-styling',
    						                      
    						                  )
    				    ),
    				    
    				    
    				    array(
    						"name" 	=> __("Section Bottom Border Styling",'avia_framework' ),
    						"id" 	=> "bottom_border",
    						"desc"  => __("Chose a border styling for the bottom of your section",'avia_framework' ),
    						"type" 	=> "select",
    						"std" 	=> "no-border-styling",
    						"subtype" => array(   
    											__('No border styling','avia_framework' )	=>'no-border-styling',
    											__('Display a small arrow that points down to the next section','avia_framework' )	=>'border-extra-arrow-down',
    						                  )
    				    ),
    				    
    				    array(	
    						"name" 	=> __("Display a scroll down arrow", 'avia_framework' ),
    						"desc" 	=> __("Check if you want to show a button at the bottom of the section that takes the user to the next section by scrolling down", 'avia_framework' ) ,
    						"id" 	=> "scroll_down",
    						"std" 	=> "",
    						"type" 	=> "checkbox"),
    */
    
    				  array(	"name" 	=> __("For Developers: Section ID", 'avia_framework' ),
    							"desc" 	=> __("Apply a custom ID Attribute to the section, so you can apply a unique style via CSS. This option is also helpful if you want to use anchor links to scroll to a sections when a link is clicked", 'avia_framework' )."<br/><br/>".
    									   __("Use with caution and make sure to only use allowed characters. No special characters can be used.", 'avia_framework' ),
    				            "id" 	=> "id",
    				            "type" 	=> "input",
    				            "std" => ""),
    				            
    					array(
    							"type" 	=> "close_div",
    							'nodescription' => true
    						),
    					array(
    							"type" 	=> "tab",
    							"name"  => __("Section Background" , 'avia_framework'),
    							'nodescription' => true
    						),
    						
    					/*	
    			        array(
    						"name" 	=> __("Section Colors",'avia_framework' ),
    						"id" 	=> "color",
    						"desc"  => __("The section will use the color scheme you select. Color schemes are defined on your styling page",'avia_framework' ) .
    						           '<br/><a target="_blank" href="'.admin_url('admin.php?page=avia#goto_styling').'">'.__("(Show Styling Page)",'avia_framework' )."</a>",
    						"type" 	=> "select",
    						"std" 	=> "main_color",
    						"subtype" =>  array_flip($avia_config['color_sets'])
    				    ),
    */
    				    array(
    							"name" 	=> __("Custom Background Color", 'avia_framework' ),
    							"desc" 	=> __("Select a custom background color for your Section here. Leave empty if you want to use the background color of the color scheme defined above", 'avia_framework' ),
    							"id" 	=> "custom_bg",
    							"type" 	=> "colorpicker",
    							"std" 	=> "",
    						),
    
    					array(
    							"name" 	=> __("Custom Background Image",'avia_framework' ),
    							"desc" 	=> __("Either upload a new, or choose an existing image from your media library. Leave empty if you want to use the background image of the color scheme defined above",'avia_framework' ),
    							"id" 	=> "src",
    							"type" 	=> "image",
    							"title" => __("Insert Image",'avia_framework' ),
    							"button" => __("Insert",'avia_framework' ),
    							"std" 	=> ""),
    					
    					
    					array(
    							"name" 	=> __("Custom Logo",'avia_framework' ),
    							"desc" 	=> __("Either upload a new, or choose an existing image from your media library. Leave empty if you want to use the background image of the color scheme defined above",'avia_framework' ),
    							"id" 	=> "srclogo",
    							"type" 	=> "image",
    							"title" => __("Insert Image",'avia_framework' ),
    							"button" => __("Insert",'avia_framework' ),
    							"std" 	=> ""),
    					
    					
    					
    					
    					
    					array(
    						"name" 	=> __("Background Attachment",'avia_framework' ),
    						"desc" 	=> __("Background can either scroll with the page, be fixed or scroll with a parallax motion", 'avia_framework' ),
    						"id" 	=> "attach",
    						"type" 	=> "select",
    						"std" 	=> "scroll",
                            "required" => array('src','not',''),
    						"subtype" => array(
    							
    							__('Parallax','avia_framework' ) =>'parallax'
    							
    							)
    						),
    					
                        array(
    						"name" 	=> __("Background Image Position",'avia_framework' ),
    						"id" 	=> "position",
    						"type" 	=> "select",
    						"std" 	=> "top left",
                            "required" => array('src','not',''),
    						"subtype" => array(   __('Top Left','avia_framework' )       =>'top left',
    						                      __('Top Center','avia_framework' )     =>'top center',
    						                      __('Top Right','avia_framework' )      =>'top right',
    						                      __('Bottom Left','avia_framework' )    =>'bottom left',
    						                      __('Bottom Center','avia_framework' )  =>'bottom center',
    						                      __('Bottom Right','avia_framework' )   =>'bottom right',
    						                      __('Center Left','avia_framework' )    =>'center left',
    						                      __('Center Center','avia_framework' )  =>'center center',
    						                      __('Center Right','avia_framework' )   =>'center right'
    						                      )
    				    ),
    /*
    	               array(
    						"name" 	=> __("Background Repeat",'avia_framework' ),
    						"id" 	=> "repeat",
    						"type" 	=> "select",
    						"std" 	=> "no-repeat",
                            "required" => array('src','not',''),
    						"subtype" => array(   __('No Repeat','avia_framework' )          =>'no-repeat',
    						                      __('Repeat','avia_framework' )             =>'repeat',
    						                      __('Tile Horizontally','avia_framework' )  =>'repeat-x',
    						                      __('Tile Vertically','avia_framework' )    =>'repeat-y',
    						                      __('Stretch to fit (stretches image to cover the element)','avia_framework' )     =>'stretch',
    						                      __('Scale to fit (scales image so the whole image is always visible)','avia_framework' )     =>'contain'
    						                      )
    				  ),
    
    	               */
    
    					
    					array(	
    						"name" 	=> __("Background Video", 'avia_framework' ),
    						"desc" 	=> __('You can also place a video as background for your section. Enter the URL to the Video. Currently supported are Youtube, Vimeo and direct linking of web-video files (mp4, webm, ogv)', 'avia_framework' ) .'<br/><br/>'.
    						__('Working examples Youtube & Vimeo:', 'avia_framework' ).'<br/>
    					<strong>http://vimeo.com/1084537</strong><br/> 
    					<strong>http://www.youtube.com/watch?v=5guMumPFBag</strong><br/><br/>',
    						"id" 	=> "video",
    						"std" 	=> "",
    						"type" 	=> "input"),
    						
    					array(	
    							"name" 	=> __("Video Aspect Ratio", 'avia_framework' ),
    							"desc" 	=> __("In order to calculate the correct height and width for the video slide you need to enter a aspect ratio (width:height). usually: 16:9 or 4:3.", 'avia_framework' )."<br/>".__("If left empty 16:9 will be used", 'avia_framework' ) ,
    							"id" 	=> "video_ratio",
    							"required"=> array('video','not',''),
    							"std" 	=> "16:9",
    							"type" 	=> "input"),
    					
    					array(	
    							"name" 	=> __("Hide video on Mobile Devices?", 'avia_framework' ),
    							"desc" 	=> __("You can chose to hide the video entirely on Mobile devices and instead display the Section Background image", 'avia_framework' )."<br/><small>".__("Most mobile devices can't autoplay videos to prevent bandwidth problems for the user", 'avia_framework' ) ."</small>" ,
    							"id" 	=> "video_mobile_disabled",
    							"required"=> array('video','not',''),
    							"std" 	=> "",
    							"type" 	=> "checkbox"),
    					
    					
    					array(
    							"type" 	=> "close_div",
    							'nodescription' => true
    						),
    					
    
    					
    array(
    							"type" 	=> "tab",
    							"name"  => __("Section Background Overlay" , 'avia_framework'),
    							'nodescription' => true
    						),
    					
    					array(	
    							"name" 	=> __("Enable Overlay?", 'avia_framework' ),
    							"desc" 	=> __("Check if you want to display a transparent color and/or pattern overlay above your section background image/video", 'avia_framework' ),
    							"id" 	=> "overlay_enable",
    							"std" 	=> "",
    							"type" 	=> "checkbox"),
    					
    					 array(
    						"name" 	=> __("Overlay Opacity",'avia_framework' ),
    						"desc" 	=> __("Set the opacity of your overlay: 0.1 is barely visible, 1.0 is opaque ", 'avia_framework' ),
    						"id" 	=> "overlay_opacity",
    						"type" 	=> "select",
    						"std" 	=> "0.5",
                            "required" => array('overlay_enable','not',''),
    						"subtype" => array(   __('0.1','avia_framework' )=>'0.1',
    						                      __('0.2','avia_framework' )=>'0.2',
    						                      __('0.3','avia_framework' )=>'0.3',
    						                      __('0.4','avia_framework' )=>'0.4',
    						                      __('0.5','avia_framework' )=>'0.5',
    						                      __('0.6','avia_framework' )=>'0.6',
    						                      __('0.7','avia_framework' )=>'0.7',
    						                      __('0.8','avia_framework' )=>'0.8',
    						                      __('0.9','avia_framework' )=>'0.9',
    						                      __('1.0','avia_framework' )=>'1',
    						                      )
    				  		),
    				  		
    				  	array(
    							"name" 	=> __("Overlay Color", 'avia_framework' ),
    							"desc" 	=> __("Select a custom  color for your overlay here. Leave empty if you want no color overlay", 'avia_framework' ),
    							"id" 	=> "overlay_color",
    							"type" 	=> "colorpicker",
                            	"required" => array('overlay_enable','not',''),
    							"std" 	=> "",
    						),
    				  	
    				  	array(
                            "required" => array('overlay_enable','not',''),
    						"id" 	=> "overlay_pattern",
    						"name" 	=> __("Background Image", 'avia_framework'),
    						"desc" 	=> __("Select an existing or upload a new background image", 'avia_framework'),
    						"type" 	=> "select",
    						"subtype" => array(__('No Background Image', 'avia_framework')=>'',__('Upload custom image', 'avia_framework')=>'custom'),
    						"std" 	=> "",
    						"folder" => "images/background-images/",
    						"folderlabel" => "",
    						"group" => "Select predefined pattern",
    						"exclude" => array('fullsize-', 'gradient')
    					),
    				  	
    				  	
    				  	array(
    							"name" 	=> __("Custom Pattern",'avia_framework' ),
    							"desc" 	=> __("Upload your own seamless pattern",'avia_framework' ),
    							"id" 	=> "overlay_custom_pattern",
    							"type" 	=> "image",
    							"fetch" => "url",
    							"secondary_img"=>true,
                            	"required" => array('overlay_pattern','equals','custom'),
    							"title" => __("Insert Pattern",'avia_framework' ),
    							"button" => __("Insert",'avia_framework' ),
    							"std" 	=> ""),
    					
    					array(
    							"type" 	=> "close_div",
    							'nodescription' => true
    						),
    
    							
    					array(
    							"type" 	=> "close_div",
    							'nodescription' => true
    						),
                    );
    			}
    
    			/**
    			 * Frontend Shortcode Handler
    			 *
    			 * @param array $atts array of attributes
    			 * @param string $content text within enclosing form of shortcode element
    			 * @param string $shortcodename the shortcode found, when == callback name
    			 * @return string $output returns the modified html string
    			 */
    			function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
    			{
    				global $avia_config;
    			
    				avia_sc_titeloben::$section_count ++;
    			    $atts = shortcode_atts(array(	'src' => '', 
    			    								'position' => 'top left', 
    			    								'repeat' => 'no-repeat', 
    			    								'attach' => 'scroll', 
    			    								'color' => 'main_color', 
    			    								'custom_bg' => '', 
    			    								'padding'=>'default' , 
    			    								'shadow'=>'shadow', 
    			    								'id'=>'', 
    			    								'min_height' => '', 
    			    								'min_height_px' => '', 
    			    								'video' => '', 
    			    								'video_ratio'=>'16:9', 
    			    								'video_mobile_disabled'=>'',
    			    								'custom_markup' => '',
    			    								'attachment' => '',
    			    								'attachment_size' => '',
    			    								'bottom_border' => '',
    			    								'overlay_enable' => '',
    			    								'overlay_opacity' => '',
    			    								'overlay_color' => '',
    			    								'overlay_pattern' => '',
    			    								'overlay_custom_pattern' => '',
    			    								'scroll_down' => ''
    			    								
    			    								), 
    			    							$atts, $this->config['shortcode']);
    							    							
    			    							
    				extract($atts);
    			    $output      = "";
    			    $class       = "avia-section ".$color." avia-section-".$padding." avia-".$shadow;
    			    $background  = "";
    				
    				
    				$params['id'] = !empty($id) ? AviaHelper::save_string($id,'-') :"av_section_".avia_sc_titeloben::$section_count;
    				$params['custom_markup'] = $meta['custom_markup'];
    				$params['attach'] = "";
    				
    				if(!empty($attachment) && !empty($attachment_size))
    				{
    					$attachment_entry = get_post( $attachment );
    					
    					if(!empty($attachment_entry))
    					{
    	                	if(!empty($attachment_size))
    						{
    							$src = wp_get_attachment_image_src($attachment_entry->ID, $attachment_size);
    							$src = !empty($src[0]) ? $src[0] : "";
    						}
    					}
    				}
    				else
    				{
    					$attachment = false;
    				}
    				
    				if($custom_bg != "")
    			    {
    			         $background .= "background-color: {$custom_bg}; ";
    			    }
    				
    				
    				/*set background image*/
    				if($src != "")
    				{
    					if($repeat == 'stretch')
    					{
    						$background .= "background-repeat: no-repeat; ";
    						$class .= " avia-full-stretch";
    					} 
    					else if($repeat == "contain")
    					{
    						$background .= "background-repeat: no-repeat; ";
    						$class .= " avia-full-contain";
    					}
    					else
    					{
    						$background .= "background-repeat: {$repeat}; ";
    					}
    				
    				     $background .= "background-image: url({$src}); ";
    				     $background .= $attach == 'parallax' ? "background-attachment: scroll; " : "background-attachment: {$attach}; ";
    				     $background .= "background-position: {$position}; ";
    				     
    				     
    				     
    				    if($attach == 'parallax')
    					{
    						$attachment_class = "";
    						if($repeat == 'stretch' || $repeat == 'no-repeat' ){ $attachment_class .= " avia-full-stretch"; }
    						if($repeat == 'contain'  ){ $attachment_class .= " avia-full-contain"; }
    					
    						$class .= " av-parallax-section";
    						$speed = apply_filters('avf_parallax_speed', "0.3", $params['id']); 
    						$params['attach'] .= "<div class='av-parallax' data-avia-parallax-ratio='{$speed}' >";
    						$params['attach'] .= "<div class='av-parallax-inner {$color} {$attachment_class}' style = '{$background}' >";
    						$params['attach'] .= "</div>";
    						$params['attach'] .= "</div>";
    						$background = "";
    					}
    					
    					
    					$params['data'] = "data-section-bg-repeat='{$repeat}'";
    					
    				}
    				else
    				{
    					$attach = "scroll";
    				}
    				
    				
    				if($custom_bg != "")
    			    {
    			         $background .= "background-color: {$custom_bg}; ";
    			    }
    
    			    
    				
    			
    			    if($background) $background = "style = '{$background}'";
    			    
    			    
    			    /*check/create overlay*/
    				$overlay 	= "";
    				$pre_wrap 	= "<div class='av-section-color-overlay-wrap'>" ;
    				if(!empty($overlay_enable))
    				{
    					$overlay_src = "";
    					$overlay = "opacity: {$overlay_opacity}; ";
    					if(!empty($overlay_color)) $overlay .= "background-color: {$overlay_color}; ";
    					if(!empty($overlay_pattern))
    					{
    						if($overlay_pattern == "custom")
    						{
    							$overlay_src = $overlay_custom_pattern;
    						}
    						else
    						{
    							$overlay_src = str_replace('{{AVIA_BASE_URL}}', AVIA_BASE_URL, $overlay_pattern);
    						}
    					}
    					
    					if(!empty($overlay_src)) $overlay .= "background-image: url({$overlay_src}); background-repeat: repeat;";
    					$overlay = "<div class='av-section-color-overlay' style='{$overlay}'></div>";
    					$class .= " av-section-color-overlay-active";
    					
    					$params['attach'] .= $pre_wrap . $overlay;
    					
    				}
    				
    				
    				
    				
    				if(!empty($scroll_down))
    				{	
    					if(!$overlay)
    					{
    					$params['attach'] .= $pre_wrap;	
    					}
    					$params['attach'] .= "<a href='#next-section' title='' class='scroll-down-link' ". av_icon_string( 'scrolldown' ). "></a>";
    				}
    			    
    			    
    			    
    				$class .= " avia-bg-style-".$attach;
    			    $params['class'] = $class." ".$meta['el_class'];
    			    $params['bg']    = $background;
    				$params['min_height'] = $min_height;
    				$params['min_height_px'] = $min_height_px;
    				$params['video'] = $video;
    				$params['video_ratio'] = $video_ratio;
    				$params['video_mobile_disabled'] = $video_mobile_disabled;
    				
    			    if(isset($meta['index']))
    			    {
    			    	if($meta['index'] == 0) 
    			    	{
    			    		$params['main_container'] = true;
    			    	}
    			    	
    			    	if($meta['index'] == 0 || (isset($meta['siblings']['prev']['tag']) && in_array($meta['siblings']['prev']['tag'], AviaBuilder::$full_el_no_section )))
    			    	{
    			    		$params['close'] = false;
    			    	}
    			    }
    		
    				
    				$avia_config['layout_container'] = "section";
    				
    				$output .= avia_new_section($params);
    				$output .=  ShortcodeHelper::avia_remove_autop($content,true) ;
    				
    				/*set extra arrow element*/
    				if(strpos($bottom_border, 'border-extra') !== false)
    				{
    					$backgroundEl = "";
    					$backgroundElColor = !empty($custom_bg) ? $custom_bg : $avia_config['backend_colors']['color_set'][$color]['bg'];
    					
    					if($backgroundElColor) $backgroundEl = " style='background-color:{$backgroundElColor};' ";
    					
    					avia_sc_titeloben::$add_to_closing = "<div class='av-extra-border-element {$bottom_border}'><div class='av-extra-border-outer'><div class='av-extra-border-inner' {$backgroundEl}></div></div></div>";
    				}
    				else
    				{
    					avia_sc_titeloben::$add_to_closing = "";
    				}
    				
    				
    				//next section needs an extra closing tag if overlay with wrapper was added:
    				if($overlay || !empty($scroll_down)) 
    				{ 
    					avia_sc_titeloben::$close_overlay = "</div>";
    				}
    				else
    				{
    					avia_sc_titeloben::$close_overlay = "";
    				}
    				
    				//if the next tag is a section dont create a new section from this shortcode
    				if(!empty($meta['siblings']['next']['tag']) && in_array($meta['siblings']['next']['tag'], AviaBuilder::$full_el))
    				{
    				    $skipSecond = true;
    				}
    
    				//if there is no next element dont create a new section. if we got a sidebar always create a next section at the bottom
    				if(empty($meta['siblings']['next']['tag']) && !avia_has_sidebar())
    				{
    				    $skipSecond = true;
    				}
    
    				if(empty($skipSecond))
    				{
    					$new_params['id'] = "after_section_".( avia_sc_titeloben::$section_count );
    					$output .= avia_new_section($new_params);
    				}
    				
    				unset($avia_config['layout_container']);
    				return $output;
    			}
    	}
    }
    
    if(!function_exists('avia_new_section'))
    {
    	function avia_new_section($params = array())
    	{
    		global $avia_section_markup, $avia_config;
    		
    	    $defaults = array(	'class'=>'main_color', 
    	    					'bg'=>'', 
    	    					'close'=>true, 
    	    					'open'=>true, 
    	    					'open_structure' => true, 
    	    					'open_color_wrap' => true, 
    	    					'data'=>'', 
    	    					"style"=>'', 
    	    					'id' => "", 
    	    					'main_container' => false, 
    	    					'min_height' => '',
    	    					'min_height_px' => '',
    	    					'video' => '',
    	    					'video_ratio' => '16:9',
    	    					'video_mobile_disabled' => '',
    	    					'attach' => "",
    	    					'before_new' => "",
    	    					'custom_markup' => ''
    	    					);
    	    
    	    
    	    
    	    $defaults = array_merge($defaults, $params);
    	    extract($defaults);
    			
    	    $post_class = "";
    	    $output     = "";
    	    $bg_slider  = "";
    	    $container_style = "";
    	    if($id) $id = "id='{$id}'";
    	
    	    //close old content structure. only necessary when previous element was a section. other fullwidth elements dont need this
    	    if($close) 
    	    {
    	    	$cm		 = avia_section_close_markup();
    	    	$output .= "</div></div>{$cm}</div>".avia_sc_titeloben::$add_to_closing.avia_sc_titeloben::$close_overlay."</div>";
    	    	
    		}
    	    //start new
    	    if($open)
    	    {	
    	        if(function_exists('avia_get_the_id')) $post_class = "post-entry-".avia_get_the_id();
    	
    	        if($open_color_wrap)
    	        {
    	        	if(!empty($min_height)) 
    	        	{
    	        		$class .= " av-minimum-height av-minimum-height-".$min_height;
    	        		if($min_height == 'custom' && $min_height_px != "")
    	        		{
    	        			$min_height_px 		= (int)$min_height_px;
    	        			$container_style 	= "style='height:{$min_height_px}px'";
    	        		}
    	        	}
    	        	
    	        	if(!empty($video)) 
    	        	{
    	        		$slide = array( 
    	        						'shortcode' => 'av_slideshow',  
    	        						'content' => '', 
    	        						'attr' => array( 	'id'=>'', 
    	        											'video'=>$video , 
    	        											'slide_type' => 'video', 
    	        											'video_mute' => true,
    	        											'video_loop' => true,
    	        											'video_ratio' => $video_ratio,
    	        											'video_controls' => 'disabled',
    	        											'video_section_bg' => true,
    	        											'video_format'=> '',
    	        											'video_mobile'	=>'',
    	        											'video_mobile_disabled'=> $video_mobile_disabled
    	        										)  
    	        						);
    	        		
    	        		
    	        		$bg_slider = new avia_slideshow( array('content' => array($slide) ) );
    	        		$bg_slider->set_extra_class('av-section-video-bg');
    	        		$class .= " av-section-with-video-bg";
    	        		$class .= !empty($video_mobile_disabled) ? " av-section-mobile-video-disabled" : "";
    	        		$data .= "  data-section-video-ratio='{$video_ratio}'";
    	        		
    	        	}
    	        	$output .= $before_new;
    	        	
    	        	if($class == "main_color") $class .= " av_default_container_wrap";
    	        	
    	        	$output .= "<div {$id} class='{$class} container_wrap ".avia_layout_class( 'main' , false )."' {$bg} {$data} {$style}>"; 
    	        	$output .= !empty($bg_slider) ? $bg_slider->html() : "";
    	        	$output .= $attach;
    	        	$output .= apply_filters('avf_section_container_add','',$defaults);
    	        }
    	
    	
    			//this applies only for sections. other fullwidth elements dont need the container for centering
    	        if($open_structure)
    	        {
    	        	if(!empty($main_container))
    	        	{
    					$markup = 'main '.avia_markup_helper(array('context' =>'content','echo'=>false, 'custom_markup'=>$custom_markup));
    					$avia_section_markup = 'main';
    				}
    				else
    				{
    					$markup = "div";
    				}
    				
    		        $output .= "<div class='container' {$container_style}>";
    		        $output .= "<{$markup} class='template-page content  ".avia_layout_class( 'content' , false )." units'>";
    		        $output .= "<div class='post-entry post-entry-type-page {$post_class}'>";
    		        $output .= "<div class='entry-content-wrapper clearfix'>";
    		        
    		       
    
    	        }
    	    }
    	    return $output;
    	
    	}
    }
    
    if(!function_exists('avia_section_close_markup'))
    {
    	function avia_section_close_markup()
    	{
    		global $avia_section_markup, $avia_config;
    		
    		if(!empty($avia_section_markup))
    		{
    			$avia_section_markup = false;
    						$close_markup = "</main><!-- close content main element -->";
    			
    		}
    		else
    		{
    			$close_markup = "</div><!-- close content main div -->"; 
    		}
    		
    		return $close_markup;
    	}
    }
    
    if(!function_exists('avia_section_after_element_content'))
    {
    	function avia_section_after_element_content($meta, $second_id = "", $skipSecond = false, $extra = "")
    	{
    	
    		$output = "</div>"; //close section
    		$output .= $extra;
    					
    		//if the next tag is a section dont create a new section from this shortcode
    		if(!empty($meta['siblings']['next']['tag']) && in_array($meta['siblings']['next']['tag'], AviaBuilder::$full_el )){ $skipSecond = true; }
    	
    		//if there is no next element dont create a new section.
    		if(empty($meta['siblings']['next']['tag'])) { $skipSecond = true; }
    		
    		if(empty($skipSecond)) { $output .= avia_new_section(array('close'=>false, 'id' => $second_id)); }
    		
    		return $output;
    	}
    }
    
    
    #655555

    In reply to: Enfold – Resume

    Hi Zrated09,

    If you enable debug mode in order to see shortcodes: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/. You can then paste the following shortcode in a new page:

    [av_layout_row border='' min_height='0' color='main_color' mobile='av-fixed-cells' id='']
    [av_cell_one_third vertical_align='top' padding='3px,0px,0px,0px' background_color='#a0cdd2' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [/av_cell_one_third][av_cell_one_third vertical_align='top' padding='3px,0px,0px,0px' background_color='#88aeb3' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [/av_cell_one_third][av_cell_one_third vertical_align='top' padding='3px,0px,0px,0px' background_color='#697e81' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat']
    
    [/av_cell_one_third]
    [/av_layout_row]
    
    [av_section min_height='' min_height_px='500px' padding='large' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    
    [av_one_fifth first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='no_margin' custom_margin='aviaTBcustom_margin' margin='0px' margin_sync='true' padding='0px,20px,0px,0px' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_image src='http://kriesi.at/themes/enfold-resume/files/2016/02/logo-profile-1.jpg' attachment='116' attachment_size='full' align='left' styling='circle' hover='' link='lightbox' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation'][/av_image]
    
    [/av_one_fifth][av_three_fifth min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px,20px,0px,0px' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_heading tag='h3' padding='0' heading='James T. Enfold' color='' style='blockquote modern-quote' custom_font='' size='40' subheading_active='subheading_below' subheading_size='18' custom_class='']
    iOS & Android Developer
    [/av_heading]
    
    [/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='']
    
    [av_textblock size='13' font_color='' color='']
    Email: <a href="mailto: (Email address hidden if logged out) "> (Email address hidden if logged out) </a>
    Phone: <a href="tel:(555) 4167890">(555) 4167890</a>
    Web: <a href="http://kriesi.at">kriesi.at</a>
    [/av_textblock]
    
    [/av_one_fifth][av_hr class='big' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_hr class='invisible' height='-32' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_heading tag='h1' padding='0' heading='Introduction' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_one_third][av_two_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='fade-in']
    
    [av_textblock size='' font_color='' color='']
    Donec pede justo, <strong>fringilla</strong> 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. Cras dapibus.
    
    Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, <strong>enim</strong>. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.
    [/av_textblock]
    
    [av_image src='http://test.kriesi.at/enfold-cv/wp-content/uploads/sites/15/2016/02/signature-1.png' attachment='77' attachment_size='full' align='left' styling='no-styling' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation'][/av_image]
    
    [/av_two_third][av_hr class='big' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_hr class='invisible' height='-32' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_heading tag='h1' padding='0' heading='Professional Profile' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/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='fade-in']
    
    [av_textblock size='' font_color='' color='']
    Donec pede justo, <strong>fringilla</strong> 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. Cras dapibus.
    [/av_textblock]
    
    [/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='fade-in']
    
    [av_textblock size='' font_color='' color='']
    Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, <strong>enim</strong>. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.
    [/av_textblock]
    
    [/av_one_third][av_hr class='big' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_heading tag='h1' padding='0' heading='Recent Work' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_one_third][av_two_third min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_masonry_gallery ids='89,90,91,92' items='8' columns='2' paginate='none' size='fixed' gap='large' overlay_fx='active' caption_elements='none' caption_display='always' container_links='active' id='']
    
    [/av_two_third][av_hr class='big' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_hr class='invisible' height='-28' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_heading tag='h1' padding='0' heading='Recent Jobs' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_one_third][av_two_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='fade-in']
    
    [av_heading tag='h1' padding='0' heading='Senior iOS Developer' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='subheading_above' subheading_size='15' custom_class='']
    2015 - now
    [/av_heading]
    
    [av_textblock size='' font_color='' color='']
    Donec pede justo, <strong>fringilla</strong> vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullaollis pretium.
    <ul>
    <li>Integer tincidunt. Cras dapibus.</li>
    <li>Vivamus elementum semper nisi.</li>
    <li>Aenean vulputate eleifend tellus.</li>
    </ul>
    [/av_textblock]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='' custom_margin_top='10px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue8bf' font='entypo-fontello']
    
    [av_heading tag='h1' padding='0' heading='Junior iOS Developer' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='subheading_above' subheading_size='15' custom_class='']
    2012 - 2015
    [/av_heading]
    
    [av_textblock size='' font_color='' color='']
    Aenean vulputate eleifend tellus. Donec pede justo, <strong>fringilla</strong> vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, ju.
    <ul>
    <li>Nullaollis pretium.</li>
    <li>Vivamus elementum semper nisi.</li>
    </ul>
    [/av_textblock]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='' custom_margin_top='10px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue8bf' font='entypo-fontello']
    
    [av_heading tag='h1' padding='0' heading=' iOS Trainee' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='subheading_above' subheading_size='15' custom_class='']
    2008 - 2012
    [/av_heading]
    
    [av_textblock size='' font_color='' color='']
    Donec pede justo, <strong>fringilla</strong> vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullaollis pretium.
    <ul>
    <li>Integer tincidunt. Cras dapibus.</li>
    <li>Vivamus elementum semper nisi.</li>
    <li>Aenean vulputate eleifend tellus.</li>
    </ul>
    [/av_textblock]
    
    [/av_two_third][av_hr class='big' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_hr class='invisible' height='-32' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_heading tag='h1' padding='0' heading='Skills' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_one_third][av_two_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='fade-in']
    
    [av_textblock size='' font_color='' color='']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, <strong>nascetur</strong> ridiculus mus.
    [/av_textblock]
    
    [av_progress bar_styling='av-striped-bar' bar_animation='av-animated-bar']
    [av_progress_bar title='iOS Development' progress='90' color='theme-color' icon_select='no' icon='43' font='entypo-fontello']
    [av_progress_bar title='Android Development' progress='80' color='theme-color' icon_select='no' icon='ue800' font='entypo-fontello']
    [av_progress_bar title='HTML & CSS' progress='70' color='theme-color' icon_select='no' icon='ue800' font='entypo-fontello']
    [av_progress_bar title='Javascript' progress='70' color='theme-color' icon_select='no' icon='ue800' font='entypo-fontello']
    [av_progress_bar title='PHP' progress='60' color='theme-color' icon_select='no' icon='ue800' font='entypo-fontello']
    [/av_progress]
    
    [/av_two_third][av_hr class='big' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_hr class='invisible' height='-28' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_heading tag='h1' padding='0' heading='Education' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_one_third][av_two_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='fade-in']
    
    [av_heading tag='h1' padding='0' heading='Some Ivy League College' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='subheading_above' subheading_size='15' custom_class='']
    2004 - 2008
    [/av_heading]
    
    [av_textblock size='' font_color='' color='']
    Donec pede justo, <strong>fringilla</strong> vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullaollis pretium.
    [/av_textblock]
    
    [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='' custom_margin_top='10px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue8bf' font='entypo-fontello']
    
    [av_heading tag='h1' padding='0' heading='Some funky Highschool in Jersey' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='subheading_above' subheading_size='15' custom_class='']
    2000 - 2004
    [/av_heading]
    
    [av_textblock size='' font_color='' color='']
    Aenean vulputate eleifend tellus. Donec pede justo, <strong>fringilla</strong> vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, ju.
    [/av_textblock]
    
    [/av_two_third][av_hr class='big' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_one_third first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='']
    
    [av_hr class='invisible' height='-28' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']
    
    [av_heading tag='h1' padding='0' heading='Social Media' color='' style='blockquote modern-quote' custom_font='' size='' subheading_active='' subheading_size='15' custom_class=''][/av_heading]
    
    [/av_one_third][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='']
    
    [av_font_icon icon='ue8f3' font='entypo-fontello' style='border' caption='' link='manually,#' linktarget='' size='40px' position='center' color=''][/av_font_icon]
    
    [/av_one_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='']
    
    [av_font_icon icon='ue8f1' font='entypo-fontello' style='border' caption='' link='manually,#' linktarget='' size='40px' position='center' color=''][/av_font_icon]
    
    [/av_one_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='']
    
    [av_font_icon icon='ue8fc' font='entypo-fontello' style='border' caption='' link='manually,#' linktarget='' size='40px' position='center' color=''][/av_font_icon]
    
    [/av_one_fifth][/av_section][av_google_map height='400px' zoom='16' saturation='-50' hue='#a0cdd2' zoom_control='aviaTBzoom_control']
    [av_gmap_location address='5th Avenue' city='' country='New York' long='-73.96537339999998' lat='40.7747314' marker='112' imagesize='40' tooltip_display=''][/av_gmap_location]
    [/av_google_map]
    

    Best regards,
    Rikard

    #651164

    Hi,

    please always open a new ticket for a new question/issue.

    First turn on custom class for all ALB elements: kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
    Second give your headline in question a custom css class. Then use something like this in Quick CSS field:

    @media only screen 
      and (min-width: 414px) 
      and (max-width: 736px) {
    .your-custom-headline-class {
    position: relative;
    top: -1453px;
    }
    .avia-image-container.avia-align-center {
    top: 85px;
    }}
    

    Best regards,
    Andy

    #650081

    Hey tonyska,

    Thank you for using Enfold.

    Please add this in the Quick CSS field:

    @media only screen and (max-width: 480px) {
    .avia-slideshow-inner {
        min-height: 300px;
    }
    
    .avia-slideshow-inner li img {
        min-height: 300px;
        min-width: 560px;
        left: -100px;
        position: relative;
    }
    }

    This will increase the height of the slider images while making more space for the button. Turn on the custom css class so that you can specify a unique class attribute to the slider: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    I am wondering if it’s possible to make the entire slider image clickable on mobile, so that the user doesn’t have to find the button and can just tap the image to go to the link.

    This is possible but it will require a more complex solution so let’s try the css code first.

    Best regards,
    Ismael

    #650061

    Hi,

    Remove the button then replace it with a code block. Add this code:

    
    <div class="gallery-wrap">
    <div class="avia-button-wrap avia-button-left"><a href="IMAGE URL HERE" class="galleryItem avia-button  avia-icon_select-no avia-color-aqua avia-size-medium avia-position-left" data-group="3"><span class="avia_iconbox_title" >SEE SAMPLE BOXES</span></a></div>
    <a class="galleryItem galleryItemSet" href="IMAGE URL HERE" data-group="3"></a>
                        <a class="galleryItem galleryItemSet" href="IMAGE URL HERE" data-group="3"></a>
                        <a class="galleryItem galleryItemSet" href="IMAGE URL HERE" data-group="3"></a></div>
    

    Add the image url in place of the placeholders (IMAGE URL HERE). After that, add this in the functions.php file:

    // custom lightbox
    function add_custom_script_lightbox(){
    ?>
    <script>
    (function($){
    	$(document).ready(function() {
    		var groups = {};
    		$('.galleryItem').each(function() {
    		  var id = parseInt($(this).attr('data-group'), 10);
    
    		  if(!groups[id]) {
    		    groups[id] = [];
    		  }
    
    		  groups[id].push( this );
    		});
    
    		$.each(groups, function() {
    
    		  $(this).magnificPopup({
    		      type: 'image',
    		      closeOnContentClick: true,
    		      closeBtnInside: false,
    		      gallery: { enabled:true }
    		  })
    
    		});
    	});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script_lightbox');
    

    And this css code in the Quick CSS field:

    .mfp-ready .mfp-figure {
        opacity: 1;
    }
    
    .galleryItemSet {
        display: none;
    }

    Best regards,
    Ismael

    #646960
    alby54
    Participant

    Hi, I often use a script in my functions.php to assing a class to the Extended Layout’s container modules…
    add_theme_support('avia_template_builder_custom_css');
    This function , though, does not create a class inside the proper element but in its parent container.
    Is there a way to assign it to the real element so that if I have 3 titles or 3 images in a flex_column each one of them can have its own class?
    Thank you.

    #641950

    i think that there is no exact line from top to bottom in the half (see your arrow in the image) seems to be because you choose on one column (space between columns) and on the other not

    And btw: you should place only once an id. You got two color sections with same id.
    if you haven’t it allready activated you can put in your functions.php of your child-theme :
    add_theme_support('avia_template_builder_custom_css');
    than you can set a class for most of the alb elements.
    You can set on css more than one class for different divs

    • This reply was modified 9 years, 7 months ago by Guenni007.
    #639833

    There are 2 issues I noticed so I had to remove the code temporarily so it wouldn’t mess up my site:

    1. I already have some custom css (below) that adjusts the height of the fullscreen slider. The code you provided adjusts the height of all of the color sections as well as the fullscreen slider on my homepage (which I don’t want) making it extremely short. I added a custom css class of fullscreen_color_section Can you modify the code to use this custom css class so it only targets the color section on this page?

    @media only screen and (max-width: 420px) {
    .home div#fullscreen_slider_0 {
    max-height: 490px !important;
    overflow: hidden;
    }
    
    .home .avia-builder-el-0.avia-fullscreen-slider .avia-slideshow {
    height: 490px !important;
    }}
    
    @media only screen and (max-width: 767px) and (min-width: 480px) {
    .home div#fullscreen_slider_0 {
    max-height: 295px !important;
    overflow: hidden;
    }
    
    .home .avia-builder-el-0.avia-fullscreen-slider .avia-slideshow {
    height: 295px !important;
    }}
    

    2. Here is what I’m seeing on my iPhone 6 with Safari. (See Image) where the special heading is not centered and too high.

    #639691
    Guenni007
    Participant

    i would like to use the testimonials image to insert the logo of customers.
    Via css i can get rid of box radius and size dimensions but it is allways croped!
    on avia-shortcodes in testimonials.php i see that there are image filters for that testimonial image (avatar size filters)
    is it possible to get rid of that cropping?
    Even if i goto wordpress media options and change thumbnail size to not crop to (80×80) in testimonials the image is cropped.

    When i set in testimonials.php:

    
    	//avatar size filter
    	$avatar_size = apply_filters('avf_testimonials_avatar_size', $src, $class);

    so the ‘square’ filter is gone the images are still cropped to 180px

    Thanks

    • This topic was modified 9 years, 7 months ago by Guenni007.
    #631539

    In reply to: several questions

    Hey marilusnm,

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

    
    html { background: white !important; }
    
    #top .avia-post-nav:hover {
        background: rgba(255,0,0,0.8);
    }
    #top .avia-post-nav {
        background: rgba(0,255,0,0.1);
        padding: 10px;
    }
    .avia-post-nav .entry-image {
        height: 65px;
        width: 65px;
    }
    

    255,0,0 is RGB value of the color and 0.8 is opacity level
    3- Recommended width is 1500px.
    4- Please go to enfold/framework/php/class-breadcrumb.php file and find “You are here:” and change it as needed
    5- Please go to WooCommerce > Settings > Shipping and choose “Only ship to the customer’s billing address”

    Best regards,
    Yigit

    #628179

    In reply to: Portfolio Ordering

    Hey jakejauhari,

    Thank you for using Enfold.

    The lightbox and category filter are two different scripts. This is possible but you have to disable the rest of the lightbox script for the rest of the site or modify the js > avia.js file, look for this code around line 903:

    exclude			:	'.noLightbox, .noLightbox a, .fakeLightbox, .lightbox-added, a[href*="dropbox.com"]',
    

    .. replace it with:

    exclude			:	'.grid-image, .noLightbox, .noLightbox a, .fakeLightbox, .lightbox-added, a[href*="dropbox.com"]',
    

    Add this in the functions.php file:

    // custom lightbox
    function add_custom_script_lightbox(){
    ?>
    <script>
    (function($){
    	$(document).ready(function() {
    		var setDataGroup = function() {
    		 $('.grid-entry').each(function() {
    			  var grid  = $(this),
    				  gridm = $(this).find('.grid-image'),
    				  gridc = $(this).attr('class');
    
    			  if (/bathroom_sort/.test(gridc)) {
    				  gridm.attr('data-group', '1');
    			  } else if (/bedroom_sort/.test(gridc)) {
    				  gridm.attr('data-group', '2');
    			  } else {
    				  gridm.attr('data-group', '3');
    			  }
    
    			  $(gridm).removeClass('lightbox-added');
    		  });
    		  console.log('test1');
    	 }
    
    		var setMpopup = function() {
    		var groups = {};
    		$('.grid-image').each(function() {
    
    		  var id = parseInt($(this).attr('data-group'), 10);
    
    		  if(!groups[id]) {
    		    groups[id] = [];
    		  }
    
    		  groups[id].push( this );
    		});
    
    		$.each(groups, function() {
    
    		  $(this).magnificPopup({
    		      type: 'image',
    		      closeOnContentClick: true,
    		      closeBtnInside: false,
    		      gallery: { enabled:true }
    		  })
    
    		});
    		console.log('test2');
    	}
    	setDataGroup();
    	setTimeout(setMpopup(), 100);
    	});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script_lightbox');
    

    And the following code in the Quick CSS field:

    .mfp-ready .mfp-figure {
        opacity: 1;
    }

    This is going to group the images in the lightbox. The script above will only work for the bathroom and bedroom items but you can add more filter in this line:

     if (/bathroom_sort/.test(gridc)) {
    				  gridm.attr('data-group', '1');
    			  } else if (/bedroom_sort/.test(gridc)) {
    				  gridm.attr('data-group', '2');
    			  } else {
    				  gridm.attr('data-group', '3');
    			  }
    

    Best regards,
    Ismael

    #624341

    Hi,

    Adding an image with a static dimension will not work well as responsive background image specially when the width of the container is percentage base such as columns. Remove the image background image then replicate it using css. This should work:

    .flex_cell.no_margin.av_one_third.avia-builder-el-4.el_after_av_cell_two_third.avia-builder-el-last.av-zero-padding {
        background: white;
        border: 20px solid gray;
    }

    Turn on the custom css class field so that you can specify a unique class attribute for the columns. http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Best regards,
    Ismael

    Hey!

    Please turn on custom CSS field for ALB elements – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then edit your image and give it a custom class and then add following code to Quick CSS in Enfold theme options under General Styling tab

    .your-custom-class .avia-image-container-inner { 
        background: url(https://tsgaz.net/rendezvous/wp-content/uploads/2016/04/picture-frame.png)!important;
        padding: 90px;
        background-repeat: no-repeat!important;
        background-position: 50% 50%!important;
        background-size: contain!important;
    }

    and adjust values as needed

    Cheers!
    Yigit

    Hi Kai!

    Thanks for getting in touch with us!

    Sorry but this will take more than a bit of CSS. In your WordPress installation please go to the footer.php file and find this code in line 190:

    <a href='#top' title='<?php _e('Scroll to top','avia_framework'); ?>' id='scroll-top-link' <?php echo av_icon_string( 'scrolltop' ); ?>><span class="avia_hidden_link_text"><?php _e('Scroll to top','avia_framework'); ?></span></a>

    and add this line above it:

    <img class='custom_icon' src='http://www.yoursite.com/yourimage.png' />

    Add the following to Quick CSS field to move the scroll to top image down and position your image above it:

    .custom_icon {
        position: fixed;
        border-radius: 2px;
        height: 50px;
        width: 50px;
        line-height: 50px;
        text-decoration: none;
        text-align: center;
        right: 50px;
        bottom: 5px;
        z-index: 1030;
    }
    
    #scroll-top-link {
        bottom: 5px !important;
    }
    

    Let me know if you need further assistance.

    Best regards,
    Jordan

    #610909

    In reply to: Button styling

    Hey!

    Remove the custom css class selector:

    .avia-button {
        background: #7db9e8;
        background: -moz-linear-gradient(top, #7db9e8 0%, #2989d8 50%, #1e5799 100%);
        background: -webkit-linear-gradient(top, #7db9e8 0%,#2989d8 50%,#1e5799 100%);
        background: linear-gradient(to bottom, #7db9e8 0%,#2989d8 50%,#1e5799 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7db9e8', endColorstr='#1e5799',GradientType=0 );
    }

    Cheers!
    Ismael

    #610860

    Topic: Messed up the footer

    in forum Enfold
    lamzzes
    Participant

    Hello, while trying to add an image to my footer through the footer.php file in my editor I’ve messed up the code so it wouldn’t load the website now. Could you please help me figure out what is the problem.

    Here is the current text I have in the footer.php

    <?php

    do_action( ‘ava_before_footer’ );

    global $avia_config;
    $blank = isset($avia_config[‘template’]) ? $avia_config[‘template’] : “”;

    //reset wordpress query in case we modified it
    wp_reset_query();

    //get footer display settings
    $the_id = avia_get_the_id(); //use avia get the id instead of default get id. prevents notice on 404 pages
    $footer = get_post_meta($the_id, ‘footer’, true);
    $footer_widget_setting = !empty($footer) ? $footer : avia_get_option(‘display_widgets_socket’);

    //check if we should display a footer
    if(!$blank && $footer_widget_setting != ‘nofooterarea’ )
    {
    if( $footer_widget_setting != ‘nofooterwidgets’ )
    {
    //get columns
    $columns = avia_get_option(‘footer_columns’);
    ?>
    <div class=’container_wrap footer_color’ id=’footer’>

    <div class=’container’>

    <?php
    do_action(‘avia_before_footer_columns’);

    //create the footer columns by iterating

    switch($columns)
    {
    case 1: $class = ”; break;
    case 2: $class = ‘av_one_half’; break;
    case 3: $class = ‘av_one_third’; break;
    case 4: $class = ‘av_one_fourth’; break;
    case 5: $class = ‘av_one_fifth’; break;
    case 6: $class = ‘av_one_sixth’; break;
    }

    $firstCol = “first el_before_{$class}”;

    //display the footer widget that was defined at appearenace->widgets in the wordpress backend
    //if no widget is defined display a dummy widget, located at the bottom of includes/register-widget-area.php
    for ($i = 1; $i <= $columns; $i++)
    {
    $class2 = “”; // initialized to avoid php notices
    if($i != 1) $class2 = ” el_after_{$class} el_before_{$class}”;
    echo “<div class=’flex_column {$class} {$class2} {$firstCol}’>”;
    if (function_exists(‘dynamic_sidebar’) && dynamic_sidebar(‘Footer – column’.$i) ) : else : avia_dummy_widget($i); endif;
    echo “</div>”;
    $firstCol = “”;
    }

    do_action(‘avia_after_footer_columns’);

    ?>
    </div>

    <?php

    <!– ####### END FOOTER CONTAINER ####### –>
    </div>

    <?php } //endif nofooterwidgets ?>

    //copyright
    $copyright = do_shortcode( avia_get_option(‘copyright’, “© “.__(‘Copyright’,’avia_framework’).” – “.get_bloginfo(‘name’).”“) );

    // you can filter and remove the backlink with an add_filter function
    // from your themes (or child themes) functions.php file if you dont want to edit this file
    // you can also just keep that link. I really do appreciate it ;)
    $kriesi_at_backlink = kriesi_backlink(get_option(THEMENAMECLEAN.”_initial_version”));

    //you can also remove the kriesi.at backlink by adding [nolink] to your custom copyright field in the admin area
    if($copyright && strpos($copyright, ‘[nolink]’) !== false)
    {
    $kriesi_at_backlink = “”;
    $copyright = str_replace(“[nolink]”,””,$copyright);
    }

    if( $footer_widget_setting != ‘nosocket’ )
    {

    ?>

    <footer class=’container_wrap socket_color’ id=’socket’ <?php avia_markup_helper(array(‘context’ => ‘footer’)); ?>>
    <div class=’container’>

    <span class=’copyright’><?php echo $copyright . $kriesi_at_backlink; ?></span>

    <?php
    if(avia_get_option(‘footer_social’, ‘disabled’) != “disabled”)
    {
    $social_args = array(‘outside’=>’ul’, ‘inside’=>’li’, ‘append’ => ”);
    echo avia_social_media_icons($social_args, false);
    }

    $avia_theme_location = ‘avia3’;
    $avia_menu_class = $avia_theme_location . ‘-menu’;

    $args = array(
    ‘theme_location’=>$avia_theme_location,
    ‘menu_id’ =>$avia_menu_class,
    ‘container_class’ =>$avia_menu_class,
    ‘fallback_cb’ => ”,
    ‘depth’=>1,
    ‘echo’ => false,
    ‘walker’ => new avia_responsive_mega_menu(array(‘megamenu’=>’disabled’))
    );

    $menu = wp_nav_menu($args);

    if($menu){
    echo “<nav class=’sub_menu_socket’ “.avia_markup_helper(array(‘context’ => ‘nav’, ‘echo’ => false)).”>”;
    echo $menu;
    echo “</nav>”;
    }
    ?>

    </div>

    <!– ####### END SOCKET CONTAINER ####### –>
    </footer>

    <?php
    } //end nosocket check

    } //end blank & nofooterarea check
    ?>
    <!– end main –>
    </div>

    <?php
    //display link to previeous and next portfolio entry
    echo avia_post_nav();

    echo “<!– end wrap_all –></div>”;

    if(isset($avia_config[‘fullscreen_image’]))
    { ?>
    <!–[if lte IE 8]>
    <style type=”text/css”>
    .bg_container {
    -ms-filter:”progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $avia_config[‘fullscreen_image’]; ?>’, sizingMethod=’scale’)”;
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $avia_config[‘fullscreen_image’]; ?>’, sizingMethod=’scale’);
    }
    </style>
    <![endif]–>
    <?php
    echo “<div class=’bg_container’ style=’background-image:url(“.$avia_config[‘fullscreen_image’].”);’></div>”;
    }
    ?>

    <?php

    /* Always have wp_footer() just before the closing </body>
    * tag of your theme, or you will break many plugins, which
    * generally use this hook to reference JavaScript files.
    */

    wp_footer();

    ?>
    ‘ id=’scroll-top-link’ <?php echo av_icon_string( ‘scrolltop’ ); ?>><span class=”avia_hidden_link_text”><?php _e(‘Scroll to top’,’avia_framework’); ?></span>

    <div id=”fb-root”></div>
    </body>
    </html>

    You feedback will be greatly appreciated.

    Best regards,
    Simeon

    #609438

    if you want no animation at all:
    but the images has to load on page load – this animation “mimics” that loading time – the non animation mode looks very boaring – sorry
    btw. if you only want to influence some Masonries you have to use custom css class.

    .avia_desktop.avia_transform3d .av-masonry-entry {
        perspective: none;
    }
    .avia_sortable_active .isotope {
        transition: none ;
    }
    .avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry {
        animation: none;
    }
    .av-masonry-image-container, .av-inner-masonry-content, .av-masonry-pagination {
        transition: none;
    }
    .avia_desktop .av-masonry-entry:hover .av-masonry-image-container {
        transform: none
    }
Viewing 30 results - 391 through 420 (of 612 total)