Stylesheet and site url problem
-
First time install of WP yesterday. Today I was editing my options (site address and uri), trying to get the url out of the browser title bar basically, and ended up screwing something up. My content is still there, but the stylesheet is not getting called. I tried replacing the index with the original file, but that made no difference. Before I mess things up worse, I thought I’d see if there were a quick fix. Otherwise I guess I’ll have to reinstall.
Here’s the head stuff I think is relevant:
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
<style type="text/css" media="screen">
@import url( <?php echo get_settings('siteurl'); ?>/wp-layout.css );
</style>
<link rel="stylesheet" type="text/css" media="print" href="<?php echo get_settings('siteurl'); ?>/print.css" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
Where would I find the address and uri settings to check/correct?
I love WP and I’ll try to treat in better in the future! Thanks in advance for any help!
- The topic ‘Stylesheet and site url problem’ is closed to new replies.