Quote Originally Posted by HelpMeSell View Post
Please disregard my previous post I wasn't paying attention to the www in the beginning of the URL

With no addition to the htaccess if I goto http://www.axlesforless.com/index.php I get csshover error and drop down menu's won't work
But if i goto http://axlesforless.com/index.php I get no errors and the drop down menu's work
Ok, this section of code:

Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

is supposed to make http://axlesforless.com/index.php automatically rewrite to

http://www.axlesforless.com/index.php, which is currently not happening,

So, I'd like you to try putting ONLY the above code into your root .htaccess (yes in public_html) and lets try to get that function working.