I will also not want any empty space at the heaader are after removaal, it should only be thevideo background full and content
the theme im using is modular multipurpose wordpress theme.
Can anyone help with this?
]]><?php if ( ! is_front_page()): ?>
Header HTML goes here
<?php endif ?>
Manage the spacing, etc. with custom CSS added to the Additional CSS panel of the customizer. You can target only the home page because the body tag should have some unique ID or class (theme dependent) that you can include in your CSS selectors.
]]>can you please view
https://cookingacademy.qa/
<?php
/**
* header.php
*
* The header for the theme.
*/
?>
<!DOCTYPE html>
<!–[if !IE]><!–> <html <?php language_attributes(); ?>> <!–<![endif]–>
<head>
<meta charset=”<?php bloginfo( ‘charset’ ); ?>”>
<meta name=”viewport” content=”width=device-width, initial-scale=1, maximum-scale=1″>
<?php modular_get_header_icons(); ?>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?> data-spy=”scroll” data-target=”#main-menu”>
<?php modular_prerloader(); ?>
<?php get_template_part( ‘content/content’, ‘nav’ ); ?>
What is it you want to remove?
]]><?php
/**
* header.php
*
* The header for the theme.
*/
?>
<?php if ( ! is_front_page()): ?>
<!DOCTYPE html>
<!--[if !IE]><!--> <html <?php language_attributes(); ?>> <!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<?php modular_get_header_icons(); ?>
</head>
<body <?php body_class(); ?> data-spy="scroll" data-target="#main-menu">
<?php modular_prerloader(); ?>
<?php get_template_part( 'content/content', 'nav' ); ?>
<?php endif ?>
]]>
If this is the theme you’e using
https://themeforest.net/item/modular-multipurpose-responsive-wordpress-theme/19397072
you’re using a commercial theme, so please use their official support channel. We feel they are best equipped to support their products.
https://themeforest.net/item/modular-multipurpose-responsive-wordpress-theme/19397072/support
Commercial products are not supported in these forums. .
]]>