First of all, you're using a menu created by someone else, not my menu... but I'm guessing that you're drop down menus work in IE if you go to
www.datinbridal.com? To fix this, you'll first need to make sure that in your includes/configure.php file that you have
http://datinbridal.com and NOT
http://www.datinbridal.com. You'll need to make a root/.htaccess file with the code below, so that if someone goes to www, they automatically get directed to without the www:
Code:
## Add these to your .htaccess file so that only one way to your site exists, either http://yoursite.com and http://www.yoursite.com ... the following adds the www if it's missing:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^africanartandmasks.com$ [NC]
RewriteRule ^(.*)$ http://www.africanartandmasks.com/$1 [R=301,L]
## If you'd like your site to go to http://mysite.com instead of http://www.mysite.com, add these changes instead:
##RewriteEngine On
##RewriteCond %{HTTP_HOST} ^www.yoursite.com$ [NC]
##RewriteRule ^(.*)$ http://yoursite.com/$1 [R=301,L]
## the following makes sure the correct mime type is sent for the .htc file
AddType text/x-component .htc