Still thinking that 404-mailer.php (sometimes) corrupting 404monitoring.log.xml (http://get-simple.info/forum/viewtopic.p...6565#p6565) I discovered the following errors after default setup ....
Function get_theme_url() inserts an extra space in front of URL
results in (watch extra space between href=" and http:// ) ...
4O4 is inserting character (before doctype tag) which results in moving down site template.
Emporium theme 'default.css' is throwing error on background (img08.jpg doesn't exists)
Function get_theme_url() inserts an extra space in front of URL
Code:
<link rel="stylesheet" type="text/css" href="<?php get_theme_url(); ?>/default.css" media="all" />
Code:
<link rel="stylesheet" type="text/css" href=" http://www.dare-is.nl/theme/Emporium/default.css" media="all" />
4O4 is inserting character (before doctype tag) which results in moving down site template.
Code:
?<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
Emporium theme 'default.css' is throwing error on background (img08.jpg doesn't exists)
Code:
.post h1 {
width: 520px;
padding: 0px 0 0 0px;
background: url('images/img08.jpg') no-repeat left top;
font-size: 24px;
color: #28313A;
}