<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress &#8250; Support Tag: wordpress-css-drop-down-menu</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Tag: wordpress-css-drop-down-menu</description>
<language>en</language>
<pubDate>Thu, 26 Nov 2009 07:44:05 +0000</pubDate>

<item>
<title>NNDT on "[Plugin: Wordpress CSS Drop-down Menu] Add URL or PDF link to navigation???"</title>
<link>http://wordpress.org/support/topic/316754#post-1272605</link>
<pubDate>Fri, 06 Nov 2009 18:56:32 +0000</pubDate>
<dc:creator>NNDT</dc:creator>
<guid isPermaLink="false">1272605@http://wordpress.org/support/</guid>
<description>&#60;p&#62;*EDIT: The above plugin works with posts as well. Sorry
&#60;/p&#62;</description>
</item>
<item>
<title>NNDT on "[Plugin: Wordpress CSS Drop-down Menu] Add URL or PDF link to navigation???"</title>
<link>http://wordpress.org/support/topic/316754#post-1272426</link>
<pubDate>Fri, 06 Nov 2009 16:56:24 +0000</pubDate>
<dc:creator>NNDT</dc:creator>
<guid isPermaLink="false">1272426@http://wordpress.org/support/</guid>
<description>&#60;p&#62;The following will work with pages. If you want it to do it with posts, you'll have to find something else&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/page-links-to/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/page-links-to/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>NNDT on "[Plugin: Wordpress CSS Drop-down Menu] Add URL or PDF link to navigation???"</title>
<link>http://wordpress.org/support/topic/316754#post-1272244</link>
<pubDate>Fri, 06 Nov 2009 14:38:55 +0000</pubDate>
<dc:creator>NNDT</dc:creator>
<guid isPermaLink="false">1272244@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I need the ability to do this too. I'm not sure why this is not a basic function... I imagine there are a lot of people that want to do this.&#60;/p&#62;
&#60;p&#62;There is one hideously bad solution. Instead of using the_title() in your code, you can use the_excerpt_reloaded() and have a page with just the link to the pdf or external url. As I said, that is a hideous solution that will only work in certain cases.
&#60;/p&#62;</description>
</item>
<item>
<title>ka81 on "Wordpress CSS Drop-down Menu - editing CSS"</title>
<link>http://wordpress.org/support/topic/320185#post-1243585</link>
<pubDate>Mon, 12 Oct 2009 10:53:44 +0000</pubDate>
<dc:creator>ka81</dc:creator>
<guid isPermaLink="false">1243585@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I would like to ask for a help with editing CSS for that menu.&#60;/p&#62;
&#60;p&#62;So, right now i added CSS like that:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;/******************** DROP DOWN MENU ********************/
.menu {background:transparent; width:100%; height:100%; position:relative; z-index:100;border-right:1px solid #000; font-family:arial, sans-serif;}
/* hack to correct IE5.5 faulty box model */
* html .menu {width:746px; w\idth:745px; background:transparent;}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none;}
.menu ul ul {width:149px;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {float:left;width:149px;position:relative;}
/* style the links for the top level */
.menu a, .menu a:visited {display:block;font-size:12px;text-decoration:none; color:black; width:100%; height:100%; border:1px solid #000; border-width:1px 0 1px 1px; background:transparent; padding-left:10px; line-height:29px;}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {width:149px; w\idth:138px;}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {background:transparent url(http://www.cssplay.co.uk/menus/breadcrumbs/grey-arrow.gif) no-repeat 130px center; height:200px;}
/* style the second level hover */
.menu ul ul a.drop:hover{background:transparent url(http://www.cssplay.co.uk/menus/breadcrumbs/blue-arrow.gif) no-repeat 130px center; height:200px;}
.menu ul ul :hover &#38;gt; a.drop {background:transparent url(http://www.cssplay.co.uk/menus/breadcrumbs/blue-arrow.gif) no-repeat 130px center; height:200px;}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {background:transparent; height:200px;}
/* style the third level hover */
.menu ul ul ul a:hover {background:transparent; height:200px;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {visibility:hidden;position:absolute;height:0;top:31px;left:0; width:149px;border-top:1px solid #000;}
/* another hack for IE5.5 */
* html .menu ul ul {top:30px;t\op:31px;}

/* position the third level flyout menu */
.menu ul ul ul{left:149px; top:-1px; width:149px;}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {left:-149px;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0; border-collapse:collapse;;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {background:transparent; color:#000; height:auto; line-height:1em; padding:5px 10px; width:100%; height:100%; border-width:0 1px 1px 1px;}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {width:150px;w\idth:128px;}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{color:#000; background:transparent;}
.menu :hover &#38;gt; a, .menu ul ul :hover &#38;gt; a {color:#000; background:transparent;}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{visibility:visible; }
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ visibility:visible;}

/* ================================================================
   This CSS is further CSS I have created specifically for Wordpress
   so that the current page is highlighted in two levels.
   If you want it in three levels let me know.

   Author: Isaac Rowntree
   Website: &#60;a href=&#34;http://www.zackdesign.biz&#34; rel=&#34;nofollow&#34;&#62;http://www.zackdesign.biz&#60;/a&#62;
=================================================================== */

.menu ul ul .current_page_item a {
  color: red;
  background: transparent;
  border-left: 1px solid black;
}

.menu .current_page_item a {
  color: red;
  font-weight: bold;
  background: transparent;
}

.menu ul .current_page_item ul a {
  color: white;
  font-weight: normal;
  background: transparent;
}

.menu ul .current_page_item ul a:hover {
  background: transparent;
}

.menu .current_page_item a:hover {
  background: transparent;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and tha view (Opera) is that - &#60;a href=&#34;http://x-files.net.ua/images/menul_bad.jpg&#34; rel=&#34;nofollow&#34;&#62;http://x-files.net.ua/images/menul_bad.jpg&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I'd like it to be like that - &#60;a href=&#34;http://x-files.net.ua/images/menul_good.jpg&#34; rel=&#34;nofollow&#34;&#62;http://x-files.net.ua/images/menul_good.jpg&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;please, help!!!&#60;br /&#62;
:)&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/wordpress-css-drop-down-menu/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/wordpress-css-drop-down-menu/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>oldcrone on "[Plugin: Wordpress CSS Drop-down Menu] Add URL or PDF link to navigation???"</title>
<link>http://wordpress.org/support/topic/316754#post-1231533</link>
<pubDate>Thu, 01 Oct 2009 15:12:21 +0000</pubDate>
<dc:creator>oldcrone</dc:creator>
<guid isPermaLink="false">1231533@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Is there any way to add an outside URL link (ie to another website) or a PDF link to the Wordpress CSS Drop Down Menu?
&#60;/p&#62;</description>
</item>
<item>
<title>buckmajor on "[Plugin: Wordpress CSS Drop-down Menu] Is this plugin still supported?"</title>
<link>http://wordpress.org/support/topic/309555#post-1206530</link>
<pubDate>Thu, 10 Sep 2009 12:30:18 +0000</pubDate>
<dc:creator>buckmajor</dc:creator>
<guid isPermaLink="false">1206530@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi there&#60;/p&#62;
&#60;p&#62;This plugin sounds exciting, but has no updates or bug fixes, and the only way is to pay the owner how to use it. &#60;a href=&#34;http://www.zackdesign.biz/wp-plugins/42&#34;&#62;Plugin homepage&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Any suggestions?&#60;/p&#62;
&#60;p&#62;Thanks in advance&#60;br /&#62;
CHEERS :)&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/wordpress-css-drop-down-menu/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/wordpress-css-drop-down-menu/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>buckmajor on "[Plugin: Wordpress CSS Drop-down Menu] Doesn't work,"</title>
<link>http://wordpress.org/support/topic/274849#post-1206454</link>
<pubDate>Thu, 10 Sep 2009 11:34:12 +0000</pubDate>
<dc:creator>buckmajor</dc:creator>
<guid isPermaLink="false">1206454@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Wordpress is amazing to use, but this is the only down fall that it doesn't have a strong support team. Can't believe this was posted 3 months ago and still no reply to your question.&#60;/p&#62;
&#60;p&#62;I just downloaded this plugin, but can't get it to work :(
&#60;/p&#62;</description>
</item>
<item>
<title>jennybeaumont on "[Plugin: Wordpress CSS Drop-down Menu] Compatible with qtranslate?"</title>
<link>http://wordpress.org/support/topic/285333#post-1127743</link>
<pubDate>Mon, 06 Jul 2009 12:32:56 +0000</pubDate>
<dc:creator>jennybeaumont</dc:creator>
<guid isPermaLink="false">1127743@http://wordpress.org/support/</guid>
<description>&#60;p&#62;i'm using it with ZdMultiLang and it seems to be working ok in terms of managing the languages. the trouble i'm having is with an extra line above each sub-menu item preceded by &#38;gt;&#38;gt;&#60;br /&#62;
if you know anything about that, please let me know! so far the author hasn't responded to my inquiry.
&#60;/p&#62;</description>
</item>
<item>
<title>betadog on "[Plugin: Wordpress CSS Drop-down Menu] Compatible with qtranslate?"</title>
<link>http://wordpress.org/support/topic/285333#post-1121514</link>
<pubDate>Tue, 30 Jun 2009 15:44:47 +0000</pubDate>
<dc:creator>betadog</dc:creator>
<guid isPermaLink="false">1121514@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Is Wordpress CSS Drop-down Menu compatible with a multi-lingual plugin like qtranslate? It does not seem to be but perhaps I am missing something here.
&#60;/p&#62;</description>
</item>
<item>
<title>ChrisCrinkle on "[Plugin: Wordpress CSS Drop-down Menu] Doesn't work,"</title>
<link>http://wordpress.org/support/topic/274849#post-1086634</link>
<pubDate>Fri, 29 May 2009 17:49:19 +0000</pubDate>
<dc:creator>ChrisCrinkle</dc:creator>
<guid isPermaLink="false">1086634@http://wordpress.org/support/</guid>
<description>&#60;p&#62;goes onto two levels and the first menu item is the only one with drop down items, so it cannot be clicked and therefore this is useless&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/wordpress-css-drop-down-menu/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/wordpress-css-drop-down-menu/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Flashpaper on "[Plugin: Wordpress CSS Drop-down Menu] Very Intuitive and Flexible"</title>
<link>http://wordpress.org/support/topic/273547#post-1082719</link>
<pubDate>Mon, 25 May 2009 05:25:09 +0000</pubDate>
<dc:creator>Flashpaper</dc:creator>
<guid isPermaLink="false">1082719@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Sleek and functional. I was even able to make it work with other CSS / JavaScript systems, OR I could use it with the excellent standards compliant CSS file it ships with. Great admin panel features, easy to understand, and works as advertised. No problems at all working with other plugins, and I have a LOT of them.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/wordpress-css-drop-down-menu/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/wordpress-css-drop-down-menu/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>smallwebsolutions on "[Plugin: Wordpress CSS Drop-down Menu] Remove URLs Option"</title>
<link>http://wordpress.org/support/topic/259526#post-1039728</link>
<pubDate>Tue, 07 Apr 2009 22:07:32 +0000</pubDate>
<dc:creator>smallwebsolutions</dc:creator>
<guid isPermaLink="false">1039728@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Thanks, rwc. Unfortunately I could not get the code change to work for me. I've put in a request for clarification.&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>rwc on "[Plugin: Wordpress CSS Drop-down Menu] Remove URLs Option"</title>
<link>http://wordpress.org/support/topic/259526#post-1039355</link>
<pubDate>Tue, 07 Apr 2009 15:38:23 +0000</pubDate>
<dc:creator>rwc</dc:creator>
<guid isPermaLink="false">1039355@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Fix.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.zackdesign.biz/forum/bug-reports-1/list-of-ids-for-which-to-not-make-an-url/page-1&#34; rel=&#34;nofollow&#34;&#62;http://www.zackdesign.biz/forum/bug-reports-1/list-of-ids-for-which-to-not-make-an-url/page-1&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>smallwebsolutions on "[Plugin: Wordpress CSS Drop-down Menu] Remove URLs Option"</title>
<link>http://wordpress.org/support/topic/259526#post-1037622</link>
<pubDate>Sun, 05 Apr 2009 21:43:48 +0000</pubDate>
<dc:creator>smallwebsolutions</dc:creator>
<guid isPermaLink="false">1037622@http://wordpress.org/support/</guid>
<description>&#60;p&#62;When entering multiple page IDs in the &#34;Remove URLs by ID&#34; setting, only the last page listed gets removed. All other pages before it remain active. Any ideas on how this can be corrected? Great plug-in, BTW. Thanks!&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/wordpress-css-drop-down-menu/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/wordpress-css-drop-down-menu/&#60;/a&#62;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
