Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter natalibarbova

    (@natalibarbova)

    That’s amazing, thank you!

    Thread Starter natalibarbova

    (@natalibarbova)

    Hi Kharis,

    Thank you, that worked perfectly!

    Can you also help me remove the space to the left and right of the page?

    I tried adding ‘margin-left: 0;’ to the code you sent me but that didn’t work.

    Example: https://www.healthcaretvcompany.co.uk/channels-and-internet/tv-channels/sky-for-your-patient-rooms/

    Thread Starter natalibarbova

    (@natalibarbova)

    Hi,

    I don’t want to clutter my website with plugins if it can be helped. Where can i find the font i need to add rel="preload" ?

    This is all my header shows:

    <?php
    /**
     * The header for our theme
     *
     * This is the template that displays all of the <head> section and everything up until <div id="content">
     *
     * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
     *
     * @package Airi
     */
    
    ?>
    <!doctype html>
    <html <?php language_attributes(); ?>>
    <head>
    		<!-- Google Tag Manager -->
    <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
    new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
    j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
    'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
    })(window,document,'script','dataLayer','GTM-WBRWV7M');</script>
    <!-- End Google Tag Manager -->
    	<meta charset="<?php bloginfo( 'charset' ); ?>">
    	<meta name="viewport" content="width=device-width, initial-scale=1">
    	<link rel="profile" href="http://gmpg.org/xfn/11">
    	<?php wp_head(); ?>
    	<!-- Global site tag (gtag.js) - Google Analytics -->
    <script async src="https://www.googletagmanager.com/gtag/js?id=UA-122820871-1"></script>
    <script>
      window.dataLayer = window.dataLayer || [];
      function gtag(){dataLayer.push(arguments);}
      gtag('js', new Date());
    
      gtag('config', 'UA-122820871-1');
    </script>
    
    </head>
    
    <body <?php body_class(); ?>>
    	<!-- Google Tag Manager (noscript) -->
    <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WBRWV7M"
    height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
    <!-- End Google Tag Manager (noscript) -->
    <div id="page" class="site">
    	<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'airi' ); ?></a>
    
    	<?php $menu_layout = airi_menu_layout(); ?>
    	<?php get_template_part( 'template-parts/menus/menu', $menu_layout['type'] ); ?>
    
    	<div id="content" class="site-content">
    
    	<?php
    		if ( !is_page_template( 'page-templates/template_page-builder.php') ) {
    			echo '<div class="container">';
    			echo 	'<div class="row">';
    		}
    	?>
Viewing 3 replies - 1 through 3 (of 3 total)