View Single Post
07-11-2007, 12:11 AM
#8
.amaZe is offline .amaZe
Status: Nixism
Join date: Aug 2006
Location: Nix Yorkism
Expertise:
Software:
 
Posts: 2,147
iTrader: 19 / 100%
 

.amaZe is an unknown quantity at this point

  Old

Originally Posted by Zafar Ahmed View Post
Yeah, I'm using the the old directory as it was working and will redirect the link to www.zafarahmed.com

that would be fine
This is your current CSS Include:
Code:
<link rel="stylesheet" href="http://www.zafarahmed.com/wordpress/wp-content/themes/default/style.css" type="text/css" media="screen" />
Not going to work since your style.css is not located in that directory.

This is how it should be:
Code:
<link rel="stylesheet" href="http://www.zafarahmed.com/wp-content/themes/default/style.css" type="text/css" media="screen" />
In which the style.css is in the right directory.