Link to home
Start Free TrialLog in
Avatar of Marco Gasi
Marco GasiFlag for Spain

asked on

PageSpeed reports different results for different pages but it shouldn't

Hi everybody.
Checking PageSpeed tool I'm a bit confused about inconsistent results.
For my pages I have a simple basic structure like the one below
<!DOCTYPE html>
<html lang="en">
	<head>

		<?php require_once "inc_head.php" ?>

	</head>
	<!--/head-->

	<body class="homepage">

		<header id="header">
			<?php require_once "inc_topbar.php" ?>
			
			<?php require_once "inc_nav.php" ?>
			
		</header>
		<!--/header-->

		<section id="content">
			<!--page content here-->
		</section>

		<section id="feature">
			<div class="container">
				
			</div>
		</section>
		
		<?php require_once "inc_footer.php" ?>
	</body>
</html>

Open in new window


So what I exepect to get as Pagespeed result is something inherent to the section "content". Once I have already optimized Head and footer sections, I shouldn't receive warning about "render-blocking JavaScript and CSS" because they are the same for all my pages.

As a side note, I'm using CloudFlare to serve my files, so I purged the cache in CloudFlare panel in order to get updated results in PageSpeed, but it still tells me the same thing...

Any idea?
ASKER CERTIFIED SOLUTION
Avatar of Dave Baldwin
Dave Baldwin
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Marco Gasi

ASKER

Thank you again, Dave