CSS link won't find file!?
-
I am writing my first custom theme, and while I don’t claim ninja status I am well versed in HTML/CSS/PHP.
When I activate my theme I get no CSS!?!?!?
My index file looks like:
<?php get_header(); ?> <div class="row"> <div class="span12"> <?php while ( have_posts() ) : the_post(); ?> <h2><?php the_title(); ?></h2> <?php the_content(); ?> <?php endwhile; // end of the loop. ?> </div> </div> <?php get_footer(); ?>
In my header.php file I call my CSS with:
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>">
If I view the source and click the link to the CSS it says the file is not found (and Yes I am sure I FTPed the file up to the correct directory). If I activate 20-11 and click the CSS link in the source which has the same path except for the theme name it displays the CSS code in the browser?
The site is learn.mccarvilleinc.com
- The topic ‘CSS link won't find file!?’ is closed to new replies.