CSS : How do fix W3 Validation Error caused by Genesis theme - html

I am new to this board so please be sympathetic about my issue.
After verifying my website vocaloid.de/Wordpress/ with the W3C CSS validator, I got multiple parsing and value errors. I tried disabling all plugins except the one that causes the css failure. The errors seem to come from the html source code. I would like to know how to fix this. Probably this caused by a wrong coding. I'm not sure..
I hope that I can learn troubleshooting as soon as possible to help others.

I suggest you to submit in w3c validator and check what source in error type. Then you make it correct one by one. Check all the checkboxes there and find the clean or tidy source, copy that if it can help you.

Related

How to remove Weird VS Code Suggestions as HTML Tags?

Whenever I code, in almost all types of file extensions i.e js, jsx,html,ts. I get these weird inline suggestions to make it as HTML tag. I truly tried everything out, checked out extensions, JSON settings, unchecked all the suggestions/autocomplete settings. But, this never goes. I don't know what to do, I am truly fed up of this.
And it always suggest whenever I put : in front of anything. Like below.
Wierd Html tags suggestion
It's so annoying. VSCode experts please help.
I have been trying to remove this from long time, I also checked the vscode IntelliSense documentation, and did all the troubleshooting but it still didn't help.

Blog has problems with html5 code

I know near to nothing of html, but I do maintain a blog.
I want that blog to be on bloglovin, but they tell me the RSS feed is not valid. What they give me is this tool that "checks" my code
here the instructions.
here the tool.
http://validator.w3.org/check?uri=http%3A%2F%2Fmisbollosyotrascosas.blogspot.com.es%2F&charset=%28detect+automatically%29&doctype=Inline&group=0&user-agent=W3C_Validator%2F1.3+http%3A%2F%2Fvalidator.w3.org%2Fservices
So main problem is, I dont know what doctype my blog has, nor I've been able to find info about it, so I don't know if checking said code on html5 is correct, or no. It's set to "detect automatically" so I'd guess it's getting it right, but I can't really be sure.
So, 1st problem: I don't know how to check the doctype.
2nd and more important, IF it has guessed the doctype properly, and it is html5, when I look for the piece of code the tool says it's wrong, said code does not appear. So I can't change code that isn't there.
Please mind 90% of the code is auto-generated, I do know programming, just not on web.
If anyone can point me of a way to fix this issue, much appreciated.
If you nothing about HTML, then brother you first need to either learn HTML and then come here for help. Or you should go to the forum or the place provided by the CMS (Blog service provide) for the users to chat about the product usage.
However, the DOCTYPE is provided in the very first line. If you open Document Inspector, you'll see a grey line in Chrome as: <!doctype html>. That is the declaration for HTML5.
Here is the w3.org's doc for the HTML syntax: http://www.w3.org/TR/html5/syntax.html
And here is the declaration for the doctype: http://www.w3.org/TR/html5/syntax.html#the-doctype
Secondly, if they didnot find the document to meet the standards for the HTML5 then there might have been an error.
On the page, where you tested your DOCUMENT's code. They provided you with 113 errors in your document.
Please go and edit and fix them one after the other. To get help, go and Google the problem. 99% problems are solved by just Googling the problem and following the first 5 links if first 4 don't work. Otherwise, you can come back here and start a new question related to that problem. Programmers here would help you in doing that.

Turn off selected HTML errors in aptana

Is there any way to achieve that in Aptana (v3.0)? I'm posting this because solution for eclipse does not work in Aptana.
It's annoying that Aptana(Eclipse) returns html errors on partial html code. It's obvious that today noone has full page in one file.
It seems that it's know bug and it's going to be fixed in 3.0.5. Is there anything I can do to turn off those annoying warining before 3.0.5 will be released?
You could add custom error message filters or turn off validation for the specific language all together.

quickest way to find broken DIVs

I have a site that is calling a great deal of HTML from a third party source. Trouble is, I think they are returning malformed code to me.
I need a quick way to find additional DIV closures, is this possible?
create a page calling just the provided code then validate it - W3C Validator
Just install View shource chart add on for firefox and u can find the source generated in a formatted manner which is easy to find the unwanted tags..
You can try this:
http://www.tormus.com/en/tools/div_checker
Will find non matching divs for you. Very helpful
Try w3 org validator
While an IDE is not specifically mentioned, I would highly recommend putting the code into an IDE.
In Dreamweaver CS6 you can Validate directly to WC3 from within Dreamweaver. When an error is found you can go directly to that portion of the code and leverage the tools of the IDE.

how to validate html code

i want to check the mistake of our html code.
are you suggest me some method in firefox to improve mark up code and solve old code mistake.
How to edit the html. who give me error list node by node like a ul is missing etc.
I think you need to look at the Web Developer Toolkit and Firebug plugins. Between them you can do just about anything you need to do in terms of debugging html and css.
Firefox addon:
HTML Validator
W3C:
W3C Validator
HI,
You should use firebug for this will help to developer to know about error or mistake.
and
http://validator.w3.org/ is also help to know mistakes and some software as dreamweaver and notepad++ will help.
Try going to http://validator.w3.org/
You're after this: http://validator.w3.org/.
Not sure what you're referring to specifically. If you're talking about W3C validation you can access the validator tool here.
If something isn't displaying right you could install firebug (Firefox addon) to see what's happening, though this is more of a CSS issue than html.
Without knowing the specifics of your problem it is hard to give more specific advice than that.
If you're using Java on the server side, you can add the JTidy servlet to your web.xml to validate all HTML generated by your web application.