Error: Bad value 75px for attribute width on element img: Expected a digit but saw p instead. :
width
and height
in <img />
tag is always px
, so you shouldn’t write 75px
, but 75
. See https://www.w3schools.com/tags/tag_img.asp
It’s perhaps occuring in your theme.
Try download https://astrogrep.sourceforge.net/, download your theme on desktop from FTP and search for s="logo">
. Maybe you will find something and will know how to remove px
.
Error: Attribute onhover not allowed on element a at this point. :
It’s depreaced to use JS attr on HTML attr. It’s better to point onhover basing on item ID, what is pretty easy as you are using JQuery. Also, in this case it could be easier and more accessible to use plain CSS with siblings/child etc. selectors. Maybe it needs little structure rebuilding.
Error: Saw < when expecting an attribute name. Probable cause: Missing > immediately before. :
Missing >
character closing div
. It should be fixed in theme.
There are many of lack characters closing HTML tags or duplicated tags.
You should contact theme’s author with link.
Warning: Section lacks heading. :
There are just no headers identifing section content. Follow link https://www.w3.org/wiki/HTML/Usage/Headings/Missing and read about it.