Michael Rader
Michael Rader

Reputation: 5957

trouble with CSS being applied to my Wordpress site

I have a website I created, ImASpy and the front page is fine, but the problem is when you click on "findings" all styles are completely gone from the site. I've checked my hosting account and verified that the style.css file is there and looking at the code I confirmed that the header.php is connecting to my style sheet. I really cannot figure out what is causing this.

Upvotes: 1

Views: 125

Answers (1)

drew010
drew010

Reputation: 69937

Here is the problem with your html:

<link rel="stylesheet" type="text/css" media="all" href="http://imaspy/wordpress/wp-content/themes/imaspy/style.css" />
<link rel="pingback" href="http://imaspy/wordpress/xmlrpc.php" />
<link rel="alternate" type="application/rss+xml" title="I&#039;m A Spy &raquo; Feed" href="http://imaspy/wordpress/?feed=rss2" />
<link rel="alternate" type="application/rss+xml" title="I&#039;m A Spy &raquo; Comments Feed" href="http://imaspy/wordpress/?feed=comments-rss2" />

<script type='text/javascript' src='http://imaspy/wordpress/wp-includes/js/l10n.js?ver=20101110'></script>
<script type='text/javascript' src='http://imaspy/wordpress/wp-includes/js/jquery/jquery.js?ver=1.6.1'></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://imaspy/wordpress/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://imaspy/wordpress/wp-includes/wlwmanifest.xml" /> 

var shadow = new google.maps.MarkerImage("http://imaspy/wordpress/wp-content/plugins/geolocation/img/wp_pin_shadow.png",

You need to replace http://imaspy/ with http://imaspy.com/

I think in wordpress you need to set your Site URL setting.

Upvotes: 3

Related Questions