Hi Omar, Admin and joern is here the same as I am the admin...
This z-index problem was hard to find because a site with so many validation errors is hard to analyze.
No idea how much this affects SEO, but it will do I guess.
To fix errors you will have to go into your site and do it onen by one. But a site does not have to be errorfree, very hard to do this.
Most errors in arthemia come from the code for timthumb, all the & (ampersand) have to be replaced by the html encoded & a m p ;
sample from featured image code:
echo $values[0]; ?>&w=100&h=65&zc=1&q=100"
EDIT: & should read '& amp;' without the space after '& '
With that only you will have hundreds of errors less I guess.
The date/comment string of the link given: I think this is single.php, just one post of services category.
close to the top of this file you find:
<h2 class="title"><?php the_title(); ?></h2>
<div id="stats">
<span><?php the_time('j F Y') ?></span>
<span><?php if(function_exists('the_views')) { the_views(); } ?></span>
<span><?php comments_number('No Comment', 'One Comment', '% Comments' );?></span></div>
<div class="entry clearfloat">
The three lines starting with span show the time, the views (plugin required) and the comment status.
You can remove any of this lines or even the complete div id="stats"
Why does it show no title? don't you have php the_title(); inside the h2 tag or do you give no title to a post when writing it?
Don't get grey hair about these issues :-)