Viewing the source code of your site’s home page I think you’ll find that the unwanted > is at line 296 – the line below it reads:
<meta content=”Data Recovery,Personal Loan,Online Degree” name=”celebrity gossip,politics,Refinance,rihanna,black entertainment,black,”> and I should think that’s in your header.php file.
this could be it, directly before the line with <meta ... :
>
<meta content=”Data Recovery,Personal Loan,Online Degree” name=”celebrity gossip,politics,Refinance,rihanna,black entertainment,black,”>
btw: this line is invalid code, and in the wrong spot.
did you mean:
<meta name="description" content="bla bla text">
<meta name="keywords" content="bla, text, blabla">
and it needs to be before the </head> tag.
Ok alchymyth and thanks, but where did you find that code? I don’t see it sorry to be a pain
>
<meta content=”Data Recovery,Personal Loan,Online Degree” name=”celebrity gossip,politics,Refinance,rihanna,black entertainment,black,”>
i can only see the html code that is rendered in the browser. i have no way of seein where it actually comes from.
it could be from a plugin, or from a script.
however, because the syntax is totally wrong, i assume that you entered it into one of the php files.
it is the line before :
<div id="wrapper">
which is probably in header.php
it seems to cause at least one of the many validation errors.
Got it!! thank you so much it was DOUBLE >> right before the <div id=”wrapper”> I deleted one of the > and it fixed the problem. now I have to work on the line with the invalid code Thank you once again!!
Oh by the way Thanks to jtonline for your reply as well!