Hey There,
Thanks for writing in!
Before anything else, I urge you to check this article first to know the correct way of using the HTML tags:
And more important, please check this as well:
I have investigated and I noticed that you have a bunch of code in the wp-header.php
file.
- See the secure note for the codes
Be advised that the contents of that file should only be this:
<?php
// =============================================================================
// VIEWS/INTEGRITY/WP-HEADER.PHP
// -----------------------------------------------------------------------------
// Header output for Integrity.
// =============================================================================
x_get_view( 'global', '_header' );
x_get_view( 'global', '_slider-above' );
?><header class="<?php x_masthead_class(); ?>" role="banner"><?php
x_get_view( 'global', '_topbar' );
x_get_view( 'global', '_navbar' );
x_get_view( 'integrity', '_breadcrumbs' );
?></header><?php
x_get_view( 'global', '_slider-below' );
x_get_view( 'integrity', '_landmark-header' );
If you want to add codes to the site header, we highly encourage to use the Snippet plugin or the Insert Headers and Footers plugin. This is to make the management of the codes easier es[ecially when their is conflict and incompatibility issues.
Hope this makes sense.