To minimize page loading and prevent error in W3C you can remove CSS Reset Stylesheet in Blogger
CSS Reset Stylesheet is two css stylesheet that exist in browser, can make heavy on loading and give some error for HTML5 validation, but never seen in HTML source edit. Ghost Code
widget_css_bundle.css and authorization.css
widget_css_bundle.css and authorization.css sample<link type='text/css' rel='stylesheet' href='https://www.blogger.com/static/v1/widgets/4171472146-widget_css_bundle.css' />
<link type='text/css' rel='stylesheet' href='https://www.blogger.com/dyn-css/authorization.css?targetBlogID=4190980295297298160&zx=eb19bdb3-8e34-476c-9cd5-f56fba20c150' />
Hide it
To hide CSS Reset Stylesheet from browser change this:<b:skin><![CDATA[
......
CSS code...
......
]]></b:skin>
Replace blue part with:
<style type="text/css">
<!-- /*<b:skin><![CDATA[*/]]></b:skin>
<style type='text/css'>
Replace red part with:
</style>
Add Comments