Page 15 of 235 FirstFirst ... 513141516172565115 ... LastLast
Results 141 to 150 of 2345
  1. #141
    Join Date
    Mar 2006
    Posts
    29
    Plugin Contributions
    0

    Default Re: CSS Dropdown menu for your header- With Categories!

    Thanks, that works perfectly.

    Cmessa

  2. #142
    Join Date
    Mar 2007
    Posts
    52
    Plugin Contributions
    0

    Default htaccess or csshover.htc error? ADD WWW and it doesn't work

    Hello,
    Great contribution. Works perfect in Mozilla, just IE6 issues. I haven't tested IE7.
    What is happening in IE6: access the site http://domainname.com it works fine, but when you access the site http://www.domainname.com I get the following error: access is denied to: http://domainname.com/includes/csshover.htc

    I 1st tried to include the additions_to_.htaccess to my htaccess file but it made no difference. My situation is a reverse than what the additions addresses. IN IE it works without the www, it doesn't work with the www included.

    Am I on the right path?

  3. #143
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: htaccess or csshover.htc error? ADD WWW and it doesn't work

    Quote Originally Posted by airtime View Post
    Hello,
    Great contribution. Works perfect in Mozilla, just IE6 issues. I haven't tested IE7.
    What is happening in IE6: access the site http://domainname.com it works fine, but when you access the site http://www.domainname.com I get the following error: access is denied to: http://domainname.com/includes/csshover.htc

    I 1st tried to include the additions_to_.htaccess to my htaccess file but it made no difference. My situation is a reverse than what the additions addresses. IN IE it works without the www, it doesn't work with the www included.

    Am I on the right path?
    Into which .htaccess file did you put the additions?

  4. #144
    Join Date
    Mar 2007
    Posts
    52
    Plugin Contributions
    0

    Default Re: htaccess or csshover.htc error? ADD WWW and it doesn't work

    Quote Originally Posted by jettrue View Post
    Into which .htaccess file did you put the additions?
    I placed it in the web root folder where ZC is installed. Also I can provide the actual domain via PM if you like.
    thanks,
    Airtime

  5. #145
    Join Date
    Mar 2007
    Posts
    52
    Plugin Contributions
    0

    Default Re: htaccess or csshover.htc error? ADD WWW and it doesn't work

    Quote Originally Posted by airtime View Post
    I placed it in the web root folder where ZC is installed. Also I can provide the actual domain via PM if you like.
    thanks,
    Airtime

    I just made the following changes .htaccess. It now work. This is a rewrite to drop the www.

    Options +FollowSymlinks
    RewriteEngine on
    rewritecond %{http_host} ^www\.domainname\.com [nc]
    rewriterule ^(.*)$ http://domainname.com/$1 [r=301,nc]

    I'm not sure if this is a ideal fix, b/c I've tell to enable SSL and need to make sure this doesn't conflict with those settings.

    Very nice contribution. Was wondering how difficult it would be to highlight a couple of the categories in the top level menu?

  6. #146
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: htaccess or csshover.htc error? ADD WWW and it doesn't work

    Quote Originally Posted by airtime View Post
    I just made the following changes .htaccess. It now work. This is a rewrite to drop the www.

    Options +FollowSymlinks
    RewriteEngine on
    rewritecond %{http_host} ^www\.domainname\.com [nc]
    rewriterule ^(.*)$ http://domainname.com/$1 [r=301,nc]

    I'm not sure if this is a ideal fix, b/c I've tell to enable SSL and need to make sure this doesn't conflict with those settings.

    Very nice contribution. Was wondering how difficult it would be to highlight a couple of the categories in the top level menu?
    Glad that worked for you. It seems that perhaps your site is set up without the www by default with your hosting? So the .htc is actually on the http://domainname.com not http://www.domainname.com. Hopefully your SSL cert was set up there as well.

    As far as highlighting a category in the menu, you mean you'd like the background color for certain categories to be different?

  7. #147
    Join Date
    Mar 2007
    Posts
    52
    Plugin Contributions
    0

    Default Re: htaccess or csshover.htc error? ADD WWW and it doesn't work

    Quote Originally Posted by jettrue View Post
    As far as highlighting a category in the menu, you mean you'd like the background color for certain categories to be different?
    No, I mean, I'd like to put two of the category names, to the right of the information box, so when you mouse over the category the sub-categories drop down.

    For Example:
    Home | Categories (all) | Information | Category Name1 | Category Name2 | etc.

  8. #148
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: htaccess or csshover.htc error? ADD WWW and it doesn't work

    Quote Originally Posted by airtime View Post
    No, I mean, I'd like to put two of the category names, to the right of the information box, so when you mouse over the category the sub-categories drop down.

    For Example:
    Home | Categories (all) | Information | Category Name1 | Category Name2 | etc.
    I would probably just hard code that manually, if the categories you want to highlight are going to stay the same.

  9. #149
    Join Date
    Nov 2005
    Posts
    23
    Plugin Contributions
    0

    Default Re: htaccess or csshover.htc error? ADD WWW and it doesn't work

    Just a quick note, IE6 (google too, not sure about other SEs) considers www.mydomain.com and mydomain.com to be TWO separate domains. For IE crossing from one to the other creates a security error which refuses to load the .htc file. Modifying the .htaccess with the rewrite from www.mydomain.com to mydomain.com as listed above is the best solution.

    Quote Originally Posted by airtime View Post
    Hello,
    Great contribution. Works perfect in Mozilla, just IE6 issues. I haven't tested IE7.
    What is happening in IE6: access the site http://domainname.com it works fine, but when you access the site http://www.domainname.com I get the following error: access is denied to: http://domainname.com/includes/csshover.htc

    I 1st tried to include the additions_to_.htaccess to my htaccess file but it made no difference. My situation is a reverse than what the additions addresses. IN IE it works without the www, it doesn't work with the www included.

    Am I on the right path?

  10. #150
    Join Date
    Mar 2007
    Posts
    52
    Plugin Contributions
    0

    Default Re: htaccess or csshover.htc error? ADD WWW and it doesn't work

    Quote Originally Posted by jettrue View Post
    I would probably just hard code that manually, if the categories you want to highlight are going to stay the same.
    Could you give me a coding example of how I could put a Cateory next to the information box? I took a look at includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php but it is still beyond me.
    thanks,
    Airtime

 

 

Similar Threads

  1. Categories dropdown menu/css
    By KenshiroU in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 5 Apr 2013, 01:04 PM
  2. HIde categories mod with css dropdown menu
    By adowty in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 9 Feb 2012, 01:05 AM
  3. How to use ezpages/categories as dropdown menu in the header?
    By mdivk in forum Templates, Stylesheets, Page Layout
    Replies: 12
    Last Post: 21 Dec 2011, 06:32 PM
  4. whats wrong with this css for my dropdown menu?
    By 1kell in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 28 May 2010, 02:47 AM
  5. Header Dropdown Menu (CSS) Without the Dropdown???
    By hcd888 in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 27 May 2009, 01:20 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR