-
Search Results
-
Topic: please help me out
Hello,
I run into a problem. I’m trying to add a custom css section to my element builder.
I saw documantation about it and I follow the steps but it dont work.When I paste this line: add_theme_support(‘avia_template_builder_custom_css’); into my functions.php nothing happens. Maybe can you guys help me out what the problem is.
This is my function.php page:<?php
global $avia_config;
/*
* if you run a child theme and dont want to load the default functions.php file
* set the global var below in you childthemes function.php to true:
*
* example: global $avia_config; $avia_config[‘use_child_theme_functions_only’] = true;
* The default functions.php file will then no longer be loaded. You need to make sure then
* to include framework and functions that you want to use by yourself.
*
* This is only recommended for advanced users
*/if(isset($avia_config[‘use_child_theme_functions_only’])) return;
/*
* create a global var which stores the ids of all posts which are displayed on the current page. It will help us to filter duplicate posts
*/
$avia_config[‘posts_on_current_page’] = array();/*
* wpml multi site config file
* needs to be loaded before the framework
*/require_once( ‘config-wpml/config.php’ );
/*
* These are the available color sets in your backend.
* If more sets are added users will be able to create additional color schemes for certain areas
*
* The array key has to be the class name, the value is only used as tab heading on the styling page
*/$avia_config[‘color_sets’] = array(
‘header_color’ => ‘Logo Area’,
‘main_color’ => ‘Main Content’,
‘alternate_color’ => ‘Alternate Content’,
‘footer_color’ => ‘Footer’,
‘socket_color’ => ‘Socket’
);/*
* add support for responsive mega menus
*/add_theme_support(‘avia_mega_menu’);
/*
* deactivates the default mega menu and allows us to pass individual menu walkers when calling a menu
*/add_filter(‘avia_mega_menu_walker’, ‘__return_false’);
/*
* adds support for the new avia sidebar manager
*/add_theme_support(‘avia_sidebar_manager’);
/*
* Filters for post formats etc
*/
//add_theme_support(‘avia_queryfilter’);/*
* Register theme text domain
*/
if(!function_exists(‘avia_lang_setup’))
{
add_action(‘after_setup_theme’, ‘avia_lang_setup’);
function avia_lang_setup()
{
$lang = apply_filters(‘ava_theme_textdomain_path’, get_template_directory() . ‘/lang’);
load_theme_textdomain(‘avia_framework’, $lang);
}
avia_lang_setup();
}##################################################################
# AVIA FRAMEWORK by Kriesi# this include calls a file that automatically includes all
# the files within the folder framework and therefore makes
# all functions and classes available for later userequire_once( ‘framework/avia_framework.php’ );
##################################################################
/*
* Register additional image thumbnail sizes
* Those thumbnails are generated on image upload!
*
* If the size of an array was changed after an image was uploaded you either need to re-upload the image
* or use the thumbnail regeneration plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/
*/$avia_config[‘imgSize’][‘widget’]
= array(‘width’=>36, ‘height’=>36);
// small preview pics eg sidebar news
$avia_config[‘imgSize’][‘square’]
= array(‘width’=>180, ‘height’=>180);
// small image for blogs
$avia_config[‘imgSize’][‘featured’]
= array(‘width’=>1500, ‘height’=>430 );
// images for fullsize pages and fullsize slider
$avia_config[‘imgSize’][‘featured_large’]
= array(‘width’=>1500, ‘height’=>630 );
// images for fullsize pages and fullsize slider
$avia_config[‘imgSize’][‘extra_large’]
= array(‘width’=>1500, ‘height’=>1500 , ‘crop’ => false);
// images for fullscrren slider
$avia_config[‘imgSize’][‘portfolio’]
= array(‘width’=>495, ‘height’=>400 );
// images for portfolio entries (2,3 column)
$avia_config[‘imgSize’][‘portfolio_small’]
= array(‘width’=>260, ‘height’=>185 );
// images for portfolio 4 columns
$avia_config[‘imgSize’][‘gallery’]
= array(‘width’=>845, ‘height’=>684 );
// images for portfolio entries (2,3 column)
$avia_config[‘imgSize’][‘magazine’]
= array(‘width’=>710, ‘height’=>375 );
// images for magazines
$avia_config[‘imgSize’][‘masonry’]
= array(‘width’=>705, ‘height’=>705 , ‘crop’ => false);
// images for fullscreen masonry
$avia_config[‘imgSize’][‘entry_with_sidebar’]
= array(‘width’=>845, ‘height’=>321);
// big images for blog and page entries
$avia_config[‘imgSize’][‘entry_without_sidebar’]= array(‘width’=>1210, ‘height’=>423 );
// images for fullsize pages and fullsize slider
$avia_config[‘imgSize’] = apply_filters(‘avf_modify_thumb_size’, $avia_config[‘imgSize’]);$avia_config[‘selectableImgSize’] = array(
‘square’
=> __(‘Square’,’avia_framework’),
‘featured’
=> __(‘Featured Thin’,’avia_framework’),
‘featured_large’
=> __(‘Featured Large’,’avia_framework’),
‘portfolio’
=> __(‘Portfolio’,’avia_framework’),
‘gallery’
=> __(‘Gallery’,’avia_framework’),
‘entry_with_sidebar’ => __(‘Entry with Sidebar’,’avia_framework’),
‘entry_without_sidebar’
=> __(‘Entry without Sidebar’,’avia_framework’),
‘extra_large’
=> __(‘Fullscreen Sections/Sliders’,’avia_framework’),
);avia_backend_add_thumbnail_size($avia_config);
if ( ! isset( $content_width ) ) $content_width = $avia_config[‘imgSize’][‘featured’][‘width’];
/*
* register the layout classes
*
*/$avia_config[‘layout’][‘fullsize’]
= array(‘content’ => ‘av-content-full alpha’, ‘sidebar’ => ‘hidden’,
‘meta’ => ”,’entry’ => ”);
$avia_config[‘layout’][‘sidebar_left’]
= array(‘content’ => ‘av-content-small’,
‘sidebar’ => ‘alpha’ ,’meta’ => ‘alpha’, ‘entry’ => ”);
$avia_config[‘layout’][‘sidebar_right’] = array(‘content’ => ‘av-content-small alpha’,’sidebar’ => ‘alpha’, ‘meta’ => ‘alpha’, ‘entry’ => ‘alpha’);/*
* These are some of the font icons used in the theme, defined by the entypo icon font. the font files are included by the new aviaBuilder
* common icons are stored here for easy retrieval
*/$avia_config[‘font_icons’] = apply_filters(‘avf_default_icons’, array(
//post formats + types
‘standard’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue836’),
‘link’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue822’),
‘image’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue80f’),
‘audio’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue801’),
‘quote’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue833’),
‘gallery’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue80e’),
‘video’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue80d’),
‘portfolio’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue849’),
‘product’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue859’),//social
‘behance’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue915’),
‘dribbble’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8fe’),
‘facebook’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8f3’),
‘flickr’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8ed’),
‘gplus’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8f6’),
‘linkedin’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8fc’),
‘instagram’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue909’),
‘pinterest’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8f8’),
‘skype’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue90d’),
‘tumblr’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8fa’),
‘twitter’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8f1’),
‘vimeo’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8ef’),
‘rss’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue853’),
‘youtube’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue921’),
‘xing’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue923’),
‘soundcloud’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue913’),
‘five_100_px’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue91d’),
‘vk’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue926’),
‘reddit’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue927’),
‘digg’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue928’),
‘delicious’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue929’),
‘mail’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue805’),
//woocomemrce
‘cart’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue859’),
‘details’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue84b’),//bbpress
‘supersticky’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue808’),
‘sticky’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue809’),
‘one_voice’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue83b’),
‘multi_voice’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue83c’),
‘closed’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue824’),
‘sticky_closed’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue808\ue824’),
‘supersticky_closed’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue809\ue824’),
//navigation, slider & controls
‘play’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue897’),
‘pause’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue899’),
‘next’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue879’),
‘prev’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue878’),
‘next_big’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue87d’),
‘prev_big’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue87c’),
‘close’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue814’),
‘reload’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue891’),
‘mobile_menu’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8a5’),
//image hover overlays
‘ov_external’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue832’),
‘ov_image’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue869’),
‘ov_video’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue897’),//misc
‘search’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue803’),
‘info’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue81e’),
‘clipboard’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue8d1’),
‘scrolltop’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue876’),
‘scrolldown’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue877’),
‘bitcoin’
=> array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue92a’),));
add_theme_support( ‘automatic-feed-links’ );
##################################################################
# Frontend Stuff necessary for the theme:
##################################################################/*
* Register frontend javascripts:
*/
if(!function_exists(‘avia_register_frontend_scripts’))
{
if(!is_admin()){
add_action(‘wp_enqueue_scripts’, ‘avia_register_frontend_scripts’);
}function avia_register_frontend_scripts()
{
$template_url = get_template_directory_uri();
$child_theme_url = get_stylesheet_directory_uri();//register js
wp_enqueue_script( ‘avia-compat’, $template_url.’/js/avia-compat.js’, array(‘jquery’), 2, false ); //needs to be loaded at the top to prevent bugs
wp_enqueue_script( ‘avia-default’, $template_url.’/js/avia.js’, array(‘jquery’), 3, true );
wp_enqueue_script( ‘avia-shortcodes’, $template_url.’/js/shortcodes.js’, array(‘jquery’), 3, true );
wp_enqueue_script( ‘avia-popup’, $template_url.’/js/aviapopup/jquery.magnific-popup.min.js’, array(‘jquery’), 2, true);wp_enqueue_script( ‘jquery’ );
wp_enqueue_script( ‘wp-mediaelement’ );if ( is_singular() && get_option( ‘thread_comments’ ) ) { wp_enqueue_script( ‘comment-reply’ ); }
//register styles
wp_register_style( ‘avia-style’ , $child_theme_url.”/style.css”, array(), ‘2’, ‘all’ ); //register default style.css file. only include in childthemes. has no purpose in main theme
wp_register_style( ‘avia-custom’, $template_url.”/css/custom.css”, array(), ‘2’, ‘all’ );wp_enqueue_style( ‘avia-grid’ , $template_url.”/css/grid.css”, array(), ‘2’, ‘all’ );
wp_enqueue_style( ‘avia-base’ , $template_url.”/css/base.css”, array(), ‘2’, ‘all’ );
wp_enqueue_style( ‘avia-layout’, $template_url.”/css/layout.css”, array(), ‘2’, ‘all’ );
wp_enqueue_style( ‘avia-scs’, $template_url.”/css/shortcodes.css”, array(), ‘2’, ‘all’ );
wp_enqueue_style( ‘avia-popup-css’, $template_url.”/js/aviapopup/magnific-popup.css”, array(), ‘1’, ‘screen’ );
wp_enqueue_style( ‘avia-media’ , $template_url.”/js/mediaelement/skin-1/mediaelementplayer.css”, array(), ‘1’, ‘screen’ );
wp_enqueue_style( ‘avia-print’ , $template_url.”/css/print.css”, array(), ‘1’, ‘print’ );
if ( is_rtl() ) {
wp_enqueue_style( ‘avia-rtl’, $template_url.”/css/rtl.css”, array(), ‘1’, ‘all’ );
}global $avia;
$safe_name = avia_backend_safe_string($avia->base_data[‘prefix’]);
$safe_name = apply_filters(‘avf_dynamic_stylesheet_filename’, $safe_name);if( get_option(‘avia_stylesheet_exists’.$safe_name) == ‘true’ )
{
$avia_upload_dir = wp_upload_dir();
if(is_ssl()) $avia_upload_dir[‘baseurl’] = str_replace(“http://”, “https://”, $avia_upload_dir[‘baseurl’]);$avia_dyn_stylesheet_url = $avia_upload_dir[‘baseurl’] . ‘/dynamic_avia/’.$safe_name.’.css’;
$version_number = get_option(‘avia_stylesheet_dynamic_version’.$safe_name);
if(empty($version_number)) $version_number = ‘1’;wp_enqueue_style( ‘avia-dynamic’, $avia_dyn_stylesheet_url, array(), $version_number, ‘all’ );
}wp_enqueue_style( ‘avia-custom’);
if($child_theme_url != $template_url)
{
wp_enqueue_style( ‘avia-style’);
}}
}if(!function_exists(‘avia_remove_default_video_styling’))
{
if(!is_admin()){
add_action(‘wp_footer’, ‘avia_remove_default_video_styling’, 1);
}function avia_remove_default_video_styling()
{
//remove default style for videos
wp_dequeue_style( ‘mediaelement’ );
// wp_dequeue_script( ‘wp-mediaelement’ );
// wp_dequeue_style( ‘wp-mediaelement’ );
}
}/*
* Activate native wordpress navigation menu and register a menu location
*/
if(!function_exists(‘avia_nav_menus’))
{
function avia_nav_menus()
{
global $avia_config, $wp_customize;add_theme_support(‘nav_menus’);
foreach($avia_config[‘nav_menus’] as $key => $value)
{
//wp-admin\customize.php does not support html code in the menu description – thus we need to strip it
$name = (!empty($value[‘plain’]) && !empty($wp_customize)) ? $value[‘plain’] : $value[‘html’];
register_nav_menu($key, THEMENAME.’ ‘.$name);
}
}$avia_config[‘nav_menus’] = array(
‘avia’ => array(‘html’ => __(‘Main Menu’, ‘avia_framework’)),
‘avia2’ => array(
‘html’ => __(‘Secondary Menu <br/><small>(Will be displayed if you selected a header layout that supports a submenu here)</small>’, ‘avia_framework’),
‘plain’=> __(‘Secondary Menu – will be displayed if you selected a header layout that supports a submenu’, ‘avia_framework’)),
‘avia3’ => array(
‘html’ => __(‘Footer Menu <br/><small>(no dropdowns)</small>’, ‘avia_framework’),
‘plain’=> __(‘Footer Menu (no dropdowns)’, ‘avia_framework’))
);avia_nav_menus(); //call the function immediatly to activate
}/*
* load some frontend functions in folder include:
*/require_once( ‘includes/admin/register-portfolio.php’ );
// register custom post types for portfolio entries
require_once( ‘includes/admin/register-widget-area.php’ );
// register sidebar widgets for the sidebar and footer
require_once( ‘includes/loop-comments.php’ );
// necessary to display the comments properly
require_once( ‘includes/helper-template-logic.php’ );
// holds the template logic so the theme knows which tempaltes to use
require_once( ‘includes/helper-social-media.php’ );
// holds some helper functions necessary for twitter and facebook buttons
require_once( ‘includes/helper-post-format.php’ );
// holds actions and filter necessary for post formats
require_once( ‘includes/helper-markup.php’ );
// holds the markup logic (schema.org and html5)if(current_theme_supports(‘avia_conditionals_for_mega_menu’))
{
require_once( ‘includes/helper-conditional-megamenu.php’ ); // holds the walker for the responsive mega menu
}require_once( ‘includes/helper-responsive-megamenu.php’ );
// holds the walker for the responsive mega menu//adds the plugin initalization scripts that add styles and functions
if(!current_theme_supports(‘deactivate_layerslider’)) require_once( ‘config-layerslider/config.php’ );//layerslider plugin
require_once( ‘config-bbpress/config.php’ );
//compatibility with bbpress forum plugin
require_once( ‘config-templatebuilder/config.php’ );
//templatebuilder plugin
require_once( ‘config-gravityforms/config.php’ );
//compatibility with gravityforms plugin
require_once( ‘config-woocommerce/config.php’ );
//compatibility with woocommerce plugin
require_once( ‘config-wordpress-seo/config.php’ );
//compatibility with Yoast WordPress SEO pluginif(!current_theme_supports(‘deactivate_tribe_events_calendar’))
{
require_once( ‘config-events-calendar/config.php’ );
//compatibility with the Events Calendar plugin
}if(is_admin())
{
require_once( ‘includes/admin/helper-compat-update.php’);
// include helper functions for new versions
}/*
* dynamic styles for front and backend
*/
if(!function_exists(‘avia_custom_styles’))
{
function avia_custom_styles()
{
require_once( ‘includes/admin/register-dynamic-styles.php’ );
// register the styles for dynamic frontend styling
avia_prepare_dynamic_styles();
}add_action(‘init’, ‘avia_custom_styles’, 20);
add_action(‘admin_init’, ‘avia_custom_styles’, 20);
}/*
* activate framework widgets
*/
if(!function_exists(‘avia_register_avia_widgets’))
{
function avia_register_avia_widgets()
{
register_widget( ‘avia_newsbox’ );
register_widget( ‘avia_portfoliobox’ );
register_widget( ‘avia_socialcount’ );
register_widget( ‘avia_combo_widget’ );
register_widget( ‘avia_partner_widget’ );
register_widget( ‘avia_google_maps’ );
register_widget( ‘avia_fb_likebox’ );
register_widget( ‘avia_instagram_widget’ );
}avia_register_avia_widgets(); //call the function immediatly to activate
}/*
* add post format options
*/
add_theme_support( ‘post-formats’, array(‘link’, ‘quote’, ‘gallery’,’video’,’image’,’audio’ ) );/*
* Remove the default shortcode function, we got new ones that are better ;)
*/
add_theme_support( ‘avia-disable-default-shortcodes’, true);/*
* compat mode for easier theme switching from one avia framework theme to another
*/
add_theme_support( ‘avia_post_meta_compat’);/*
* make sure that enfold widgets dont use the old slideshow parameter in widgets, but default post thumbnails
*/
add_theme_support(‘force-post-thumbnails-in-widget’);/*
* register custom functions that are not related to the framework but necessary for the theme to run
*/require_once( ‘functions-enfold.php’);
/*
* add option to edit elements via css class
*/add_theme_support(‘avia_template_builder_custom_css’);
————————————————
I hope to hear from you guys soon!
I know various aspects of this have been covered here on the support forums, but I’m not finding a guide that’s helping me through the whole process
I would like the ability to create custom icons, and add them to the icon set available to us on Enfold.
Is there a definitive guide somewhere to this on this forum or site somewhere? From the size/resolution of the icons I create, all the way to getting them to show up as an option with all the rest of the icons?Thanks in advance, to anyone who can offer a link or suggestions
Hi All!
I want to add an icon inline within a line of text. Im trying to add the download icon from the entypo collection within my text line. E.g.” To download an MP3 simply click on [ICON] ”
I saw this tutorial below for the font awesome inline but I expect the header code is not needed in enfold since font entypo is already loaded and I can use an entypo download icon?
http://www.w3schools.com/icons/fontawesome_icons_intro.asp
Look forward to any ideas you have.
thanks for your help as always.
petehttp://screencast.com/t/Y1078eC3ilZ
I have an audio player sitting inside a tabbed area. it looks fine on regular desktop view – there’s enough width to show the player and download icons etc clearly – even with the padding inside the tabbed area.
however – when I shrink the screen to mobile view – the tabbed areas then move on top of each other with each tabbed content below.
This looks ok – but the padding on left and right of tabbed area is now a problem since it takes away a lot of the tabbed area and the audio player is much harder to view clearly. How can I remove the LEFT and RIGHT padding within a tabbed content area for mobile view only?
See screenshot for illustration of the issue – this is with the browser window shrunk down to minimum width on my mac – simulating the mobile responsive view.Thanks for your help in advance.
PeteTopic: More ICONS needed
Hello,
I can’t get the houzz icon to work with social profiles, I downloaded and installed the zip file from fontello. I can use the houzz icon in an icon box.
I added the following with functionality plugin:
<?php/*
Plugin Name: Birte
Plugin URI: http://www.birtereimer.com
Description: A site-specific functionality plugin where you can paste your code snippets instead of using the theme’s functions.php file
Author: birte
Author URI:
Version: 2016.04.22
License: GPL
*/// Register new icon as a theme icon
function avia_add_custom_icon($icons) {
$icons[‘houzz’] = array( ‘font’ =>’fontello’, ‘icon’ => ‘ue801’);
return $icons;
}
add_filter(‘avf_default_icons’,’avia_add_custom_icon’, 10, 1);// Add new icon as an option for social icons
function avia_add_custom_social_icon($icons) {
$icons[‘Houzz’] = ‘houzz’;
return $icons;
}
add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);I tried it with ‘font’=>’houzz’ instead fontello, but that didn’t work either. The link to my houzz page works, it’s at the bottom right end of the socket, but the icon is invisible.
Hello all, love the theme it really is great. I am trying to style the accordion and tables on a page, but am coming up against the styles being over- ridden somewhere. A previous developer had helped work on things before, but did not add much in the way of custom code (not that I can see anyway). Basically when I inspect the accordion and table on this page as I scroll down the style is being over-ridden by a CSS rule – border-color: transparent; – When I turn this off I now have borders etc and my accordion icons show up. I can’t find where this has been activated in the code beforehand, it’s not in quick css, custom css or any of the style rules from the enfold backend dashboard (again, not that I can see so far but doesn’t mean it hasn’t!). I am using the latest version of Enfold. Would love some advice on this one, many thanks.
Hi Enfold Support,
I tried to set a different site adress for my wordpress instance which is not the place where my wordpress is installed.
I did that in “Settings” – “General”- “Site address (URL”.
Seems to work just fine – except that a few icon a broken now. That is the social links at the top, the magnifying glass for the search function as well as the down-pointing arrow at the bottom of a fullscreen slider.
When i change the site address back to what it was (the path to the wordpress instance) the icons come back just fine.
What can I do? I am not an expert in technical site administration – so sorry if this is not the right place to ask!
BTW, great, great, great theme…
I’m trying to update my client’s website by adding some custom code (very minimal) to a couple of the pages. I’ve installed the Custom CSS/JS plugin that is supposed to be an “install, code, and done!” type of plugin, but it’s not working. I’ve also tried putting custom code in for each page, but it’s not recognizing any of it, and it’s simple changes that should not take so much effort to make. For example, on one of the pages, I’ve inserted a table, which is now showing with a border. Despite many attempts by myself and the WP Engine techs (two different ones), we could not get the code to be recognized to remove the border. I’ve also had line spacing issues (too much space between the sections), as well as issues with inserting social media icons with the ‘Download App’ button at the top right below the menu so that it appears with the menu on every page – can’t get either of these to work and from what I’m seeing and from what the techs at WP Engine are telling me – Enfold is a very stubborn theme to try to customize. I’ve managed WP websites previously without any issue, so I’m not sure what to do to get this to work.
Please help/advise? I need to get this done for my client and I’m being blocked at every turn. Thanks!
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 -->Hi!
The website that I am currently designing is having some issues when I use the mobile site.
Using css code I have altered the icons of the email and cart icon to make them bigger on the website.
However, when I use my phone to view the same website, the icons are displaced, appearing over the logo.
Is there another set of css I can use to revert the icons back to their original size and position for just the mobile site?
It is all affecting the phone number text, as that has also been altered in the CSS custom field.This is the css I have used to alter the size of the icons/text:
.phone-info span {
font-size: 30px;
}#top .social_bookmarks li {
width: 8px;
height: 8px;
}#top .social_bookmarks li a {
width: 30px;
line-height: 30px;
min-height: 30px;
font-size: 30px;
}#header_meta .container {
min-height: 8px;
}
.cart_dropdown_first .cart_dropdown_link {
display: block;
padding: 0 0 0 0;
text-decoration: none;
line-height: 43px;
font-size: 30px;
position: absolute;
z-index: 10;
width: 100%;
height: 100%;
}Screenshots
Thanks.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 -->Hi, I have several issues and questions about the theme:
1. Extra gap around mansard grid
For the masonry grid, when I set no gap, the image grid still has a very thin white gap on the right as shown in the screenshot. When I set 1 pixel gap, the right gap still looks larger then the left gap. Is there a way to solve it.

2. Define custom masonry gap between elements
Is there a way to define custom gap between elements besides current options of no gap, 1 and large.3. Lightbox window size
For lightbox window size and background image opacity. I used following css to increase window size to 1280 and bg black opacity to 0.9 showing less original content..mfp-iframe-holder .mfp-content {
max-width: 1280px;
position:center;
top:30px;
}.mfp-zoom-in.mfp-ready.mfp-bg, .mfp-zoom-in.mfp-ready .mfp-preloader {
opacity: 0.9 !important;
background: black !important;
}This works on fullwidth slide element, when I click an image/video link. But when I use masonry gallery, it seems the Lightbox window and bg opacity still use the default setting. The window is smaller then 1280 pixel. My uploaded image is 1920×1080.

Could you list the reference for all the essential lightbox CSS formats, so that I could customise lightbox frame’s size, position, and icons.
4. Masonry overlay
I would like to customise the masonry grid’s overlay frame, such as size, position, colour, opacity, font size, font colour, font opacity…
Also I wonder if I could replace with my own overlay design instead of a simple rectangular frame. And, how to set a different parameters for mobile. I currently use these css to change overlay opacity on the mobile. But I also need to change its position and size(height) as well as the font colour. Since the default black colour won’t be readable on a transparent overly frame. I’d like to set a black overlay frame with white title.5. Hide lightbox arrow icon on mobile
Since the lightbox effect on mobile makes the popup image a very limited space, I don’t want to show the arrow icon and title text which severely distract the image.

Also on mobile, is there a way to make image full screen when I click an image link or a link in the masonry grid. Since the limited space on mobile is not ideal for lightbox effect. It’s better if the user could simply view image in full screen and be able to zoom and pan freely.6. Text color
After I set primary font colour to a certain colour, everytime when I set a word to bold in the Text Block, it automatically switches to that colour. Can I make its colour not bond to the primary colour settings. Since I just simply want to set a black bold text when the main paragraph font colour is black.7. Re-order masonry categories items, not the image grid, but the names of the categories.
I’d like to customize the order of the category items not the grid images. Please see attached.

If this could not be achieved. Can I hide the categories on Mobile which takes a lot of space, or can I decrease the font size of the category items on mobile.

8. Different font size on mobile
How can I set different font size on mobile, including main paragraph size, overlay font size.9. Customized overlay shape
When using a fullwidth slide, it shows a default overlay icon when I hover on the image link. Is there a way to replace it with my own design (jpg, or animated gif)10. Automatically link to different url based on ip address
I wonder if there is an ip detect plugin compatible with Enfold that determines user’s ip address and automatically link to different url. Since in China, vimeo and youtube are blocked, I’d like to create one link, while have users in China access automatically towards Chinese video site and users in other countries still access links to vimeo.Topic: JS child theme problem
OK, so trying to edit avia.js – I’ve added to child theme in /js folder, and added this code to functions.php to make it include:
— https://kriesi.at/support/topic/use-avia-js-in-child-theme/Doesn’t seem to be working right though – in Chrome inspector ‘resources’ I see two avia.js being loaded now – the old one and the new one. The old one seems to be overwriting my edits!
What I’m trying to achieve is to stop mobile scrolling to top on menu tap (thread is here – https://kriesi.at/support/topic/advanced-menu-toggle-on-desktop-seems-to-be-an-anchor-tag/#post-626159)
… it’s one tiny edit to the js file.I have no idea about PHP syntax, so I have a feeling the functions.php is not working properly – can you take a look?
<?php /* * Add your own functions here. You can also copy some of the theme functions into this file. * WordPress will use those functions instead of the original functions then. */ /* Register frontend javascripts */ if(!is_admin()) { add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100); } function avia_register_child_frontend_scripts() { $child_theme_url = get_stylesheet_directory_uri(); //register js wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, false ); wp_enqueue_script( 'avia-default-child' ); } // STOP SCROLL TO TOP ON MOBILE MENU function removeScrollToTop(){ ?> <script> jQuery(document).scroll(function() { jQuery("#advanced_menu_toggle").removeAttr("href"); jQuery("#advanced_menu_hide").removeAttr("href"); }); </script> <?php } add_action('wp_head', 'removeScrollToTop'); // INCLUDE OTHER CUSTOM FILES add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1); function avia_include_shortcode_template($paths) { $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; } // hide logo add_filter('avf_logo_subtext', 'kriesi_logo_addition'); function kriesi_logo_addition($sub) { $sub .= "Bill Tribble"; return $sub; } //set builder mode to debug add_action('avia_builder_mode', "builder_set_debug"); function builder_set_debug() { return "debug"; } // TURN ON CUSTOM CLASSES add_theme_support('avia_template_builder_custom_css'); // CHANGE MOBILE MENU ICON add_filter('avf_default_icons', function($icons) { $icons['mobile_menu'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue811'); return $icons; }, 10, 1); add_filter('avf_portfolio_cpt_args','avia_add_portfolio_revision', 10, 1); function avia_add_portfolio_revision($args) { $args['supports'] = array('title','thumbnail','excerpt','editor','comments','revisions'); return $args; } // PAUSE VIDEOS WHEN NOT IN VIEW wp_enqueue_script( 'isInViewport', get_bloginfo( 'stylesheet_directory' ) . '/js/isInViewport.js', array( 'jquery' ), CHILD_THEME_VERSION ); // EDIT PASSWORD FORM TEXT function my_password_form() { global $post; $label = 'pwbox-'.( empty( $post->ID ) ? rand() : $post->ID ); $o = '<div class="center-text"><form action="' . esc_url( site_url( 'wp-login.php?action=postpass', 'login_post' ) ) . '" method="post"> <p> ' . __( "Sorry, but this project is protected by a Non Disclosure Agreement (NDA). You'll need a password to see the case study - please " ) . '<a href="http://www.btribble.dev#contact">' . __("contact me" ) . '</a>' . __(" for access." ) . ' </p> <label for="' . $label . '">' . __( "Password:" ) . ' </label><input name="post_password" id="' . $label . '" type="password" size="20" maxlength="20" /><input type="submit" name="Submit" value="' . esc_attr__( "Submit" ) . '" /> </form></div> '; return $o; } add_filter( 'the_password_form', 'my_password_form' ); ?>Any suggestions on how to fix this welcome! My aim is to stop the mobile menu scrolling to top when tapped.
Thanks!
Hello, is there a way that I can add one or more of the social media icons found here
to my social media icons in my Enfold theme? These icons are not among the fontello icons.If there isn’t a way to do this, then could I just create my own icon somehow and add it?
Thanks,
SabineTopic: Font Awesome
Hi,
I have tried installing fonts/icons (via the Icon Font Manager with a downloaded zip file) and only some of them install. Other fonts/icons just show up as a square box. In particular, I’m trying to install the “cab” and the “pin” or “pushpin” from Font Awesome. After reading some posts, I installed the code shown below into my child functions.php but it didn’t didn’t help (I have not upgraded to the latest version yet – had issues when I updated to the latest WordPress, so for now, I don’t want to update the theme, either). Can you tell me if I need to do something else in order to get these other fonts/icons, and does it matter what set I am downloading (there seem to be different sets designed by different people)?add_action( ‘wp_enqueue_scripts’, ‘enqueue_font_awesome’ );
function enqueue_font_awesome() {wp_enqueue_style( ‘font-awesome’, ‘//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css’ );
}
Topic: Adding Social Profiles
Okay, I have spent hours trying to figure out what I am doing wrong.
I figured out how to add social profiles, I have them appear in the social bar with the others.
My issue is the yelp logo is not showing up. The space is there for it, you can click on it and it functions like it should.
This is what I have done so far:
Placed in functions.php:
// Register new icon as a theme icon
function avia_add_custom_icon($icons) {
$icons[‘yelp’] = array( ‘font’ =>’fontello’, ‘icon’ => ‘ue800’);
$icons[‘foursquare’] = array( ‘font’ =>’fontello’, ‘icon’ => ‘ue801’);
return $icons;
}
add_filter(‘avf_default_icons’,’avia_add_custom_icon’, 10, 1);// Add new icon as an option for social icons
function avia_add_custom_social_icon($icons) {
$icons[‘Yelp’] = ‘yelp’;
$icons[‘Foursquare’] = ‘foursquare’;
return $icons;
}
add_filter(‘avf_social_icons_options’,’avia_add_custom_social_icon’, 10, 1);Downloaded icons from http://fontello.com/ and installed in the theme using the import Iconfont Manager.
Went to social profiles and selected Yelp and input the url.
Thank you for your help.
Side note:
I added
#top #wrap_all .av-social-link-yelp a{background-color:#B4282E; color:#ffffff; }
Because I want the backgrounds to remain solid with the inner logo being white.
Topic: add Social Icons to header

