html 5.1 validation error
-
Hello,
w3c validator is giving an error “Element link is missing required attribute property” because the stylesheets are in the body.
They are allowed in the body only if they have an “itemprop” property, but the plugin is no adding any itemprop property.
In our case
property=”stylesheet”
should be added.
Instead than:
<link rel='stylesheet' id='metaslider-flex-slider-css' href='https://example.com/wp-content/plugins/ml-slider/assets/sliders/flexslider/flexslider.css?ver=3.3' type='text/css' media='all' />
It should be:
<link rel='stylesheet' property="stylesheet" id='metaslider-flex-slider-css' href='https://example.com/wp-content/plugins/ml-slider/assets/sliders/flexslider/flexslider.css?ver=3.3' type='text/css' media='all' />
Is it possible to fix it?
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘html 5.1 validation error’ is closed to new replies.