Viewing 4 replies - 1 through 4 (of 4 total)
  • Pioneer Web Design

    (@swansonphotos)

    Your site does call a stylesheet (see your source code):

    <link rel=”stylesheet” type=”text/css” media=”all” href=”http://coltinator.com/testing/wp-content/themes/twentyeleven/style.css&#8221; />

    So the file is either not present or in err.

    Thread Starter colt082295

    (@colt082295)

    Ok, thanks.

    Thread Starter colt082295

    (@colt082295)

    I’m not supposed to look for a “testing” folder on my ftp server am I? If I am, then it’s not there. But I looked in “wp-content/themes/twentyeleven” and the “style.css” file is there.

    Thread Starter colt082295

    (@colt082295)

    I figured it out. I had the wrong code in my .htaccess file. It now looks like this:

    RewriteEngine On
    RewriteBase /
    
    #uploaded files
    RewriteRule ^(.*/)?files/$ index.php [L]
    RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
    RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.php?file=$2 [L]
    
    # add a trailing slash to /wp-admin
    # RewriteCond %{REQUEST_URI} ^.* /wp-admin$
    # RewriteRule ^(.+)$ $1/ [R=301,L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule . - [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]
    
    <IfModule mod_security.c>
    <Files async-upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘No CSS When New Site Created?’ is closed to new replies.