Arty
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Themes and Templates
In reply to: "/> in upper left cornerIt is caused by this line in header
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />find it in header template and replace with
<meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo( 'charset' ); ?>" /> <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />It is caused by invalid image that you have in your header:
<a href="http://csidemarketing.com/"> <img src="http://csidemarketing.com/wp-content/uploads/2011/10/header1-42.swf" width="1000" height="288" alt="" /> </a>That is a flash file, not image, so you shouldn’t have that img tag. Other website has similar incorrect img tag
Forum: Themes and Templates
In reply to: Help with background image in cssI’ve checked starkers theme, it uses @import in style.css to include other css files that are in directory “css”. If you have added your entry to one of those files, correct url of your image would be ../img/background.png
Forum: Themes and Templates
In reply to: How to change site title color ?You already have another entry for it in your page source (not in css file):
#logo a, #topmenu ul li a, #footmenu ul li a, #comments, body, .towfiq{ color:#ffffff!important;}Remove #logo a from it
Viewing 4 replies - 1 through 4 (of 4 total)