-
Search Results
-
I had a client who wanted infinite scroll for the articles on their site. Found a few posts related to Enfold and infinite scroll but nothing that was a concrete answer for what I wanted to do — using the Avia Template Builder I created a section page (it’s for a magazine) that has a blog posts content block at the bottom. I wanted that block to scroll. Turned out to be fairly simple to implement, posting this here in case it helps others.
In your child theme’s — you are using one, right ;) — functions.php file add the following:
/** * Add infinite scroll to section pages like Eat / Drink * Uses https://github.com/pklauzinski/jscroll */ add_action( 'wp_enqueue_scripts', 'load_jscroll' ); function load_jscroll(){ wp_enqueue_script('jscroll', get_stylesheet_directory_uri().'/js/jquery.jscroll.min.js', array( 'jquery') ); } function infinite_scroll() { global $avia_config; echo '<script type="text/javascript"> jQuery( ".content" ).jscroll( { nextSelector: "span.current + a", contentSelector: ".article-grid", autoTrigger: true } ) </script>'; } add_action( 'wp_footer', 'infinite_scroll' );On your page insert your blog posts element with pagination enabled. I gave mine a custom CSS class of article-grid to make it easy to target that portion of the page. In the code above you see the contentSelector parameter — that’s an optional parameter that lets you select only a portion of a page to be appended by infinite scroll. Since my page has lots of items at the top that I don’t want being reloaded as I scroll I use the custom css class to only grab the next batch of articles.
When you get to the last batch of articles you would normally see the pagination, which I didn’t want. A quick css rule takes care of that:
/** hide navigation since we're using jQuery infinite scroll */ nav.pagination{ display:none; }This is a pretty bare bones example. I’m using infinite scroll everywhere so I didn’t limit this to specific pages or content types (which you could easily do by wrapping the infinite_scroll() function in some conditional checks. Ex: is_frontpage() if you only wanted this to apply to the homepage of your site.
You can grab the js file here: github link as well as see the other options available to you.
Hopefully that helps someone else get going. Works perfectly for our needs.
Good afternoon,
Maybe this question is not suitable at this forum, but I´m sure you could help me with this issue:
I want to change the color of the button and the link of this Cookie message:This is the code we have right now:
#cookie-notice {
display: none;
position: fixed;
min-width: 100%;
height: auto;
z-index: 100000;
font-size: 13px;
line-height: 20px;
left: 0;
text-align: center;
}.cookie-notice-container {
padding: 10px;
}.cn-top {
top: 0;
}.cn-bottom {
bottom: 0;
}#cookie-notice .button {
margin-left: 10px;
}#cookie-notice .button.wp-default {
font-family: sans-serif;
line-height: 18px;
padding: 2px 12px;
background: linear-gradient(to bottom, #FEFEFE, #F4F4F4) repeat scroll 0 0 #F3F3F3;
border-color: #BBB;
color: #333;
text-shadow: 0 1px 0 #FFF;
-moz-box-sizing: border-box;
border-radius: 3px 3px 3px 3px;
border-style: solid;
border-width: 1px;
cursor: pointer;
display: inline-block;
font-size: 12px;
font-style: normal;
text-decoration: none;
white-space: nowrap;
outline: none;
}#cookie-notice .button.wp-default:hover, #cookie-notice .button.wp-default:focus {
background: linear-gradient(to bottom, #FFFFFF, #F3F3F3) repeat scroll 0 0 #F3F3F3;
border-color: #999999;
color: #222222;
}#cookie-notice .button.bootstrap {
font-family: sans-serif;
display: inline-block;
*display: inline;
padding: 4px 12px;
margin-right: 0.3em;
margin-bottom: 0;
*margin-left: .3em;
line-height: 20px;
color: #333333;
text-align: center;
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
font-style: normal;
vertical-align: middle;
cursor: pointer;
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #AB5D5C;
*background-color: #0044cc;
background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
background-image: -o-linear-gradient(top, #0088cc, #0044cc);
background-image: linear-gradient(to bottom, #0088cc, #0044cc);
background-repeat: repeat-x;
border-style: solid;
border-width: 1px;
border-color: #0044cc #0044cc #002a80;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=’#ff0088cc’, endColorstr=’#ff0044cc’, GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
padding: 2px 10px;
font-size: 12px;
text-decoration: none;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
outline: none;
}#cookie-notice .button.bootstrap:hover, #cookie-notice .button.bootstrap:focus {
color: #ffffff;
background-color: #0044cc;
*background-color: #003bb3;
background-position: 0 -15px;
-webkit-transition: background-position 0.1s linear;
-moz-transition: background-position 0.1s linear;
-o-transition: background-position 0.1s linear;
transition: background-position 0.1s linear;
}____________________________________________
And I need to change to:
Background of the full message: #444444
Font of the message: #999999
Font for links and font for the button: #8C4F4F
Background of the button background: #222222Please, could you help me to modify this?
thanks in advance
Topic: auto scrolling
Hello,
I realised web page by Enfold theme and the page is scrolling by self. One time up and one time down. Every 10 sec.. Can I fix it?
Thanx OndrejTopic: Fragen zu BLOG-Einstellungen
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 » Feed" href="https://www.l-mobile.com/feed/" /> <link rel="alternate" type="application/rss+xml" title="L-mobile » 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="https://www.l-mobile.com/" id="searchform" method="get" class=""> <div> <input type="submit" value="" id="searchsubmit" class="button avia-font-entypo-fontello" /> <input type="text" id="s" name="s" value="" 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'> </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'> </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'> </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 -->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 » Feed" href="https://www.l-mobile.com/feed/" /> <link rel="alternate" type="application/rss+xml" title="L-mobile » 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="https://www.l-mobile.com/" id="searchform" method="get" class=""> <div> <input type="submit" value="" id="searchsubmit" class="button avia-font-entypo-fontello" /> <input type="text" id="s" name="s" value="" 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'> </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'> </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'> </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 -->Topic: Custom image float style CSS
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 inI 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?
Hi guys,
so it seems like that something part of the below css:
/*Scroll-Down-Icon – Start*/
@-webkit-keyframes ani-mouse {
0% {
opacity: 1;
top: 29%;
}
15% {
opacity: 1;
top: 50%;
}
50% {
opacity: 0;
top: 50%;
}
100% {
opacity: 0;
top: 29%;
}
}
@-moz-keyframes ani-mouse {
0% {
opacity: 1;
top: 29%;
}
15% {
opacity: 1;
top: 50%;
}
50% {
opacity: 0;
top: 50%;
}
100% {
opacity: 0;
top: 29%;
}
}
@keyframes ani-mouse {
0% {
opacity: 1;
top: 29%;
}
15% {
opacity: 1;
top: 50%;
}
50% {
opacity: 0;
top: 50%;
}
100% {
opacity: 0;
top: 29%;
}
}
.scroll-btn {
display: block;
position: absolute;
left: 0;
right: 0;
top: 92%;
text-align: center;
}.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *.active {
color: #ffffff;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *:active,
.scroll-btn > *.active {
opacity: 0.8;
filter: alpha(opacity=80);
}
.scroll-btn .mouse {
position: relative;
display: block;
width: 24px;
height: 34px;
margin: 0 auto 20px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border: 2px solid white;
border-radius: 23px;
}
.scroll-btn .mouse > * {
position: absolute;
display: block;
top: 29%;
left: 50%;
width: 4px;
height: 8px;
margin: -4px 0 0 -2px;
background: white;
border-radius: 50%;
-webkit-animation: ani-mouse 2.5s linear infinite;
-moz-animation: ani-mouse 2.5s linear infinite;
animation: ani-mouse 2.5s linear infinite;/*Scroll-Down-Icon – End*/
is causing an issue with the below css for the footer background colour:
/*Footer – Start*/
#footer .flex_column.av_one_third {
background: #f4f4f4 !important;
}#footer .flex_column.av_one_third:nth-child(2) {
background: #f9f9f9 !important;
}#footer .flex_column.av_one_third:nth-child(3) {
background: #f4f4f4 !important;
}/*Footer – End*/
as well as:
/*Portfolio – Start*/
#top .av-caption-style-overlay .av-masonry-entry .av-masonry-entry-title {
font-size: 35px;
}.av-inner-masonry-content:hover {
background-color: rgba(54, 212, 46,.6)!important;
}/*Portfolio – End*/
as well as:
/*Back to top link – Start*/
#scroll-top-link {
display: none!important;
}/*Back to top link – End*/
Can you think of a solution?
Thanks
There is a downward animated arrow on a slider located on the demo website http://kriesi.at/themes/enfold-shop/. I wanted to know what slider were you using on this demo site and where I can add the animated arrow that allows you to automatically scroll to the next section of the site. How do I apply it? I can’t find the option. Thank you.
