-
Search Results
-
Hi, I removed the header as proposed in the forum with custom css:
#header { display: none !important; }
.html_header_top.html_header_sticky #top #wrap_all #main {
padding-top: 0 !important;
}But there is still white space above the main content. How can I remove it?
An alternative scenario for me would be to leave the header but be able to remove the menu and have the logo full width (100%).
Either solution would be fine for me.On my site at the top https://easyflyers.com/ I am using full width easy slider with a vimeo video in the background. Everything looks great but if the user clicks on the video, it pauses the video and I see the controls and the vimeo information from the video at the top as well
how do I hide all of this when the video is paused?
Topic: Mobile first
HI guys,
I hope you are fine today :-)I have received mobile moke-ups for a website I have to work on. Since I only have mobile moke-up, which method should I adopt to develop laptop screens? Is there any way or plugin which would allow me to make a kind of “reversed” responsiv?
Not sure to be clear.
Best regards
Topic: Mobile is not responsive.
I’m using a color section with 1/1 layout element. trying to get simple image with text overlay to display the same between desktop and mobile.
Mobile isn’t responsive at all. mobile image or text does not resize.
supposedly EnFold is suppose to be good at this, but not from my experience?
any help here??
thanks, Wes
Hello, in the mobile version, I would like the tab section to be a bit wider. As you can see in the screenshot, it’s not fully aligned with the other content.

Also, in the mobile version, the active tab has a purple background color, which I think looks great. In the desktop version, this isn’t the case. How can I change that?
Best regards
Topic: Warning: Undefined array key
Hi
I started seeing this error on the page below:Warning: Undefined array key “file” in /customers/e/d/0/joshuatree.dk/httpd.www/wp-includes/media.php on line 1444 Warning: Undefined array key “width” in /customers/e/d/0/joshuatree.dk/httpd.www/wp-includes/media.php on line 1458 Warning: Undefined array key “width” in /customers/e/d/0/joshuatree.dk/httpd.www/wp-includes/media.php on line 1463 Warning: Undefined array key “height” in /customers/e/d/0/joshuatree.dk/httpd.www/wp-includes/media.php on line 1463 Warning: Undefined array key “width” in /customers/e/d/0/joshuatree.dk/httpd.www/wp-includes/media.php on line 1458 Warning: Undefined array key “width” in /customers/e/d/0/joshuatree.dk/httpd.www/wp-includes/media.php on line 1463 Warning: Undefined array key “height” in /customers/e/d/0/joshuatree.dk/httpd.www/wp-includes/media.php on line 1463
I deleted the header.php file from my child theme as I saw to do on another thread. That code looked like this and I don’t know what script I originally added to that file – can you see what that might be and if I need it?
<?php if ( ! defined('ABSPATH') ){ die(); } global $avia_config; $lightbox_option = avia_get_option( 'lightbox_active' ); $avia_config['use_standard_lightbox'] = empty( $lightbox_option ) || ( 'lightbox_active' == $lightbox_option ) ? 'lightbox_active' : 'disabled'; /** * Allow to overwrite the option setting for using the standard lightbox * Make sure to return 'disabled' to deactivate the standard lightbox - all checks are done against this string * * @added_by Günter * @since 4.2.6 * @param string $use_standard_lightbox 'lightbox_active' | 'disabled' * @return string 'lightbox_active' | 'disabled' */ $avia_config['use_standard_lightbox'] = apply_filters( 'avf_use_standard_lightbox', $avia_config['use_standard_lightbox'] ); $style = $avia_config['box_class']; $responsive = avia_get_option('responsive_active') != "disabled" ? "responsive" : "fixed_layout"; $blank = isset($avia_config['template']) ? $avia_config['template'] : ""; $av_lightbox = $avia_config['use_standard_lightbox'] != "disabled" ? 'av-default-lightbox' : 'av-custom-lightbox'; $preloader = avia_get_option('preloader') == "preloader" ? 'av-preloader-active av-preloader-enabled' : 'av-preloader-disabled'; $sidebar_styling = avia_get_option('sidebar_styling'); $filterable_classes = avia_header_class_filter( avia_header_class_string() ); $av_classes_manually = "av-no-preview"; /*required for live previews*/ $av_classes_manually .= avia_is_burger_menu() ? " html_burger_menu_active" : " html_text_menu_active"; /** * @since 4.2.3 we support columns in rtl order (before they were ltr only). To be backward comp. with old sites use this filter. */ $rtl_support = 'yes' == apply_filters( 'avf_rtl_column_support', 'yes' ) ? ' rtl_columns ' : ''; ?><!DOCTYPE html> <html <?php language_attributes(); ?> class="<?php echo "html_{$style} ".$responsive." ".$preloader." ".$av_lightbox." ".$filterable_classes." ".$av_classes_manually ?> "> <head> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <?php /* * outputs a rel=follow or nofollow tag to circumvent google duplicate content for archives * located in framework/php/function-set-avia-frontend.php */ if (function_exists('avia_set_follow')) { echo avia_set_follow(); } ?> <!-- mobile setting --> <?php if( strpos($responsive, 'responsive') !== false ) echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">'; ?> <!-- Scripts/CSS and wp_head hook --> <?php /* Always have wp_head() just before the closing </head> * tag of your theme, or you will break many plugins, which * generally use this hook to add elements to <head> such * as styles, scripts, and meta tags. */ wp_head(); ?> </head> <body id="top" <?php body_class( $rtl_support . $style." ".$avia_config['font_stack']." ".$blank." ".$sidebar_styling); avia_markup_helper(array('context' => 'body')); ?>> <?php do_action( 'ava_after_body_opening_tag' ); if("av-preloader-active av-preloader-enabled" === $preloader) { echo avia_preload_screen(); } ?> <div id='wrap_all'> <?php if(!$blank) //blank templates dont display header nor footer { //fetch the template file that holds the main menu, located in includes/helper-menu-main.php get_template_part( 'includes/helper', 'main-menu' ); } ?> <div id='main' class='all_colors' data-scroll-offset='<?php echo avia_header_setting('header_scroll_offset'); ?>'> <?php if(isset($avia_config['temp_logo_container'])) echo $avia_config['temp_logo_container']; do_action('ava_after_main_container'); ?>That did not clear up the warning though. I have hidden it by using this code in my wp-config as I found in another thread:
ini_set('display_errors','Off'); ini_set('error_reporting', E_ALL ); define('WP_DEBUG', false); define('WP_DEBUG_DISPLAY', false);which works to hide it but not sure what the initial problem is?
Can you help with this?
thanks
Nancy
Viewing 30 results - 1,771 through 1,800 (of 142,845 total)



