<?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: dropdown</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Tag: dropdown</description>
<language>en</language>
<pubDate>Thu, 26 Nov 2009 04:37:57 +0000</pubDate>

<item>
<title>cwhitmore on "2.7.1 Admin theme dropdowns not working in firefox 3.0.6."</title>
<link>http://wordpress.org/support/topic/244388#post-1291670</link>
<pubDate>Tue, 24 Nov 2009 00:50:12 +0000</pubDate>
<dc:creator>cwhitmore</dc:creator>
<guid isPermaLink="false">1291670@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Did you find a solution for this?  I'm using 2.8.6 and having the same issue.  The drop downs work on my dashboard but not anywhere else.
&#60;/p&#62;</description>
</item>
<item>
<title>ppivec on "Help with searchform php"</title>
<link>http://wordpress.org/support/topic/333085#post-1286609</link>
<pubDate>Thu, 19 Nov 2009 10:05:33 +0000</pubDate>
<dc:creator>ppivec</dc:creator>
<guid isPermaLink="false">1286609@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Sorted. The searchform (get_var) reads from &#34;s&#34;.&#60;br /&#62;
Renamed dropdown control to &#34;s&#34; and deleted hidden input, and it works fine.
&#60;/p&#62;</description>
</item>
<item>
<title>xkevinbondx on "Dropdown navigation bar in header"</title>
<link>http://wordpress.org/support/topic/332769#post-1286152</link>
<pubDate>Wed, 18 Nov 2009 22:46:00 +0000</pubDate>
<dc:creator>xkevinbondx</dc:creator>
<guid isPermaLink="false">1286152@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Help Help!
&#60;/p&#62;</description>
</item>
<item>
<title>ppivec on "Help with searchform php"</title>
<link>http://wordpress.org/support/topic/333085#post-1285707</link>
<pubDate>Wed, 18 Nov 2009 16:03:36 +0000</pubDate>
<dc:creator>ppivec</dc:creator>
<guid isPermaLink="false">1285707@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Update:&#60;br /&#62;
I am presuming that the problem is passing a variable from javascript (the table) to php. Hence I have tried this...&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;#39;text/javascript&#38;#39;&#38;gt;
&#38;lt;?php $search_text ?&#38;gt; = document.write(document.getElementById(&#38;#39;genre&#38;#39;).value ); &#38;lt;?php ;?&#38;gt;;
&#38;lt;/script&#38;gt;

&#38;lt;form method=&#38;quot;get&#38;quot; id=&#38;quot;searchform&#38;quot; action=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;url&#38;#39;); ?&#38;gt;/&#38;quot;&#38;gt;

				  &#38;lt;table width=100% border=&#38;quot;0&#38;quot; align=&#38;quot;center&#38;quot;&#38;gt;
				    &#38;lt;tr&#38;gt;
				      &#38;lt;td&#38;gt;&#38;lt;label&#38;gt;Select Genre/Type of Game&#38;lt;/label&#38;gt;
				        &#38;lt;br /&#38;gt;
				        &#38;lt;select name=&#38;quot;genre&#38;quot; id=&#38;quot;genre&#38;quot; &#38;gt;
				          &#38;lt;option value=&#38;quot;Music&#38;quot;&#38;gt; - &#38;lt;/option&#38;gt;
				          &#38;lt;option value=&#38;quot;Action&#38;quot;  &#38;gt; Action &#38;lt;/option&#38;gt;
				          &#38;lt;option value=&#38;quot;Adventure&#38;quot;  &#38;gt; Adventure &#38;lt;/option&#38;gt;
				          &#38;lt;option value=&#38;quot;Arcade&#38;quot;  &#38;gt; Arcade &#38;lt;/option&#38;gt;
			            &#38;lt;/select&#38;gt;&#38;lt;/td&#38;gt;&#38;lt;/table&#38;gt;

&#38;lt;input type=&#38;quot;hidden&#38;quot; value=&#38;quot;&#38;lt;?php echo $search_text; ?&#38;gt;&#38;quot; /&#38;gt;

&#38;lt;input type=&#38;quot;submit&#38;quot; id=&#38;quot;searchsubmit&#38;quot; value=&#38;quot;Search the Engage catalog now&#38;quot; /&#38;gt;
&#38;lt;/form&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But sadly it does not work either.&#60;br /&#62;
Any experts out there that could please help?&#60;br /&#62;
Thanks in advance.
&#60;/p&#62;</description>
</item>
<item>
<title>ppivec on "Help with searchform php"</title>
<link>http://wordpress.org/support/topic/333085#post-1285583</link>
<pubDate>Wed, 18 Nov 2009 14:07:45 +0000</pubDate>
<dc:creator>ppivec</dc:creator>
<guid isPermaLink="false">1285583@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I am trying to make this work but it will not get the variable from the dropdown. I can manually add text to $search_text but not from the $_POST. Any help is REALLY appreciated.&#60;/p&#62;
&#60;p&#62;The code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;form method=&#38;quot;post&#38;quot; id=&#38;quot;searchform&#38;quot; action=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;url&#38;#39;); ?&#38;gt;/&#38;quot;&#38;gt;
				  &#38;lt;table width=100% border=&#38;quot;0&#38;quot; align=&#38;quot;center&#38;quot;&#38;gt;
				    &#38;lt;tr&#38;gt;
				      &#38;lt;td&#38;gt;&#38;lt;label&#38;gt;Select Genre/Type of Game&#38;lt;/label&#38;gt;
				        &#38;lt;br /&#38;gt;
				        &#38;lt;select name=&#38;quot;genre&#38;quot;&#38;gt;
				          &#38;lt;option value=&#38;quot;Music&#38;quot;&#38;gt; - &#38;lt;/option&#38;gt;
				          &#38;lt;option value=&#38;quot;Action&#38;quot;  &#38;gt; Action &#38;lt;/option&#38;gt;
				          &#38;lt;option value=&#38;quot;Adventure&#38;quot;  &#38;gt; Adventure &#38;lt;/option&#38;gt;
				          &#38;lt;option value=&#38;quot;Arcade&#38;quot;  &#38;gt; Arcade &#38;lt;/option&#38;gt;
			            &#38;lt;/select&#38;gt;&#38;lt;/td&#38;gt;
			        &#38;lt;/tr&#38;gt;
	      &#38;lt;/table&#38;gt;
&#38;lt;?php $search_text = $_REQUEST[&#38;quot;genre&#38;quot;]; ?&#38;gt;
&#38;lt;input type=&#38;quot;text&#38;quot; value=&#38;quot;&#38;lt;?php echo $search_text; ?&#38;gt;&#38;quot; name=&#38;quot;s&#38;quot; id=&#38;quot;s&#38;quot; /&#38;gt;
&#38;lt;input type=&#38;quot;submit&#38;quot; id=&#38;quot;searchsubmit&#38;quot; value=&#38;quot;Search now&#38;quot; /&#38;gt;
&#38;lt;/form&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks in advance
&#60;/p&#62;</description>
</item>
<item>
<title>xkevinbondx on "Dropdown navigation bar in header"</title>
<link>http://wordpress.org/support/topic/332769#post-1284934</link>
<pubDate>Tue, 17 Nov 2009 22:27:09 +0000</pubDate>
<dc:creator>xkevinbondx</dc:creator>
<guid isPermaLink="false">1284934@http://wordpress.org/support/</guid>
<description>&#60;p&#62;You can see the idea I am going for on the website.  The dropdown style and such, but for some reason it becomes covered by the header image no matter what I do with the z-index function.  Also, it is very difficult for me to move the navigation bar anywhere I would like.  I also can't quite figure out how to apply more spacing between the selections on the menu bar.  I am a web designer with very little experience, obviously, and I am also not very sure how to alter the code for the navigation bar.  I created it through a custom navigation bar creation website, got the code, and just am not sure how to use it.  If someone could give me a few tips on how to remedy these issues I would very much appreciate it.  Thanks so much!
&#60;/p&#62;</description>
</item>
<item>
<title>RVoodoo on "Dropdown navigation bar in header"</title>
<link>http://wordpress.org/support/topic/332769#post-1284550</link>
<pubDate>Tue, 17 Nov 2009 16:59:20 +0000</pubDate>
<dc:creator>RVoodoo</dc:creator>
<guid isPermaLink="false">1284550@http://wordpress.org/support/</guid>
<description>&#60;p&#62;well....what are your plans?  How are you trying to implement it?
&#60;/p&#62;</description>
</item>
<item>
<title>xkevinbondx on "Dropdown navigation bar in header"</title>
<link>http://wordpress.org/support/topic/332769#post-1284543</link>
<pubDate>Tue, 17 Nov 2009 16:54:19 +0000</pubDate>
<dc:creator>xkevinbondx</dc:creator>
<guid isPermaLink="false">1284543@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I am having some trouble implementing my navigation bar in the header of my webpage.  Would someone be so kind and take a look at it?  Any advice would be much appreciated!  I can post the code I have used if necessary, though firefox makes it very easy to find that sort of stuff with the plugins they offer.  Thanks!!&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.you-dude.com&#34; rel=&#34;nofollow&#34;&#62;http://www.you-dude.com&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>patrix on "Dropdown Excerpts"</title>
<link>http://wordpress.org/support/topic/332362#post-1283335</link>
<pubDate>Mon, 16 Nov 2009 17:24:11 +0000</pubDate>
<dc:creator>patrix</dc:creator>
<guid isPermaLink="false">1283335@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Currently I'm displaying only Post Titles on the front page of my blog. I want to display excerpts too but only if they are collapsible/dropdown, like the one-line reviews on my &#60;a href=&#34;http://www.ipatrix.com/movie-reviews/&#34;&#62;Movie Review page&#60;/a&#62; (via a plugin). &#60;/p&#62;
&#60;p&#62;I know how to add an excerpt below the post title but is there a way/plugin to make that excerpt collapsible/dropdown like the movie review page linked above?
&#60;/p&#62;</description>
</item>
<item>
<title>chasix on "Categories Dropdown (like eBay.com)"</title>
<link>http://wordpress.org/support/topic/329224#post-1275056</link>
<pubDate>Mon, 09 Nov 2009 10:19:41 +0000</pubDate>
<dc:creator>chasix</dc:creator>
<guid isPermaLink="false">1275056@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Can anyone point me in a direction to a get categories menu similar to ebay.com or Hulu.com? &#60;/p&#62;
&#60;p&#62;....With ebay.com use the mouse and highlight on the menu bar 'categories'....&#60;/p&#62;
&#60;p&#62;....With Hulu.com use the mouse and highlight 'channnels' on the menu.... &#60;/p&#62;
&#60;p&#62;P.S&#60;br /&#62;
Looking forward to Wordcamp NYC!!!!
&#60;/p&#62;</description>
</item>
<item>
<title>chasix on "Categories Dropdown (like eBay.com)"</title>
<link>http://wordpress.org/support/topic/329224#post-1275051</link>
<pubDate>Mon, 09 Nov 2009 10:11:50 +0000</pubDate>
<dc:creator>chasix</dc:creator>
<guid isPermaLink="false">1275051@http://wordpress.org/support/</guid>
<description>&#60;p&#62;...ebay.com when the mouse highlights 'categories' or hulu.com when the mouse highlights 'channels'....
&#60;/p&#62;</description>
</item>
<item>
<title>chasix on "Categories Dropdown (like eBay.com)"</title>
<link>http://wordpress.org/support/topic/329224#post-1275048</link>
<pubDate>Mon, 09 Nov 2009 10:11:11 +0000</pubDate>
<dc:creator>chasix</dc:creator>
<guid isPermaLink="false">1275048@http://wordpress.org/support/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://www.youtube.com/watch?v=j4XT-l-_3y0&#34;&#62;Link&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>bedex78 on "Terms of Custom Taxonomy in a Dropdown Menu"</title>
<link>http://wordpress.org/support/topic/329782#post-1274955</link>
<pubDate>Mon, 09 Nov 2009 06:57:05 +0000</pubDate>
<dc:creator>bedex78</dc:creator>
<guid isPermaLink="false">1274955@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Does anyone knows how to display terms of a custom taxonomy in a dropdown menu, complete with the post count?&#60;/p&#62;
&#60;p&#62;Thanks in advance.
&#60;/p&#62;</description>
</item>
<item>
<title>mandrill on "Pages Dropdown Menu in Sidebar - Widget?"</title>
<link>http://wordpress.org/support/topic/300059#post-1274621</link>
<pubDate>Sun, 08 Nov 2009 21:29:35 +0000</pubDate>
<dc:creator>mandrill</dc:creator>
<guid isPermaLink="false">1274621@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Is there any way to code this functionality directly into the existing pages widget, like it is in the category widget? Rather than having to use template tags or an external plugin, I'd quite like to get WP doing this out of the box.&#60;/p&#62;
&#60;p&#62;The code for a drop down is there, all thats required is to activate that code rather than the usual list with a checkbox in the settings for the pages widget.
&#60;/p&#62;</description>
</item>
<item>
<title>Bilsh on "menu decoration"</title>
<link>http://wordpress.org/support/topic/329503#post-1274089</link>
<pubDate>Sun, 08 Nov 2009 09:54:58 +0000</pubDate>
<dc:creator>Bilsh</dc:creator>
<guid isPermaLink="false">1274089@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi Everyone&#60;br /&#62;
How can I make my menu like this? ---&#38;gt;&#38;gt;&#60;/p&#62;
&#60;p&#62;--- &#38;gt;&#38;gt; &#60;a href=&#34;http://img254.imageshack.us/img254/5682/subcat.jpg&#34; rel=&#34;nofollow&#34;&#62;http://img254.imageshack.us/img254/5682/subcat.jpg&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;To be really honest, i didnt liked the dropdown menu. It looks great but it is useless. &#60;/p&#62;
&#60;p&#62;p.s. if someone know any template with this kind of the menu  plz let me know&#60;/p&#62;
&#60;p&#62;p.s.s. THANKS
&#60;/p&#62;</description>
</item>
<item>
<title>MichaelH on "Categories Dropdown (like eBay.com)"</title>
<link>http://wordpress.org/support/topic/329224#post-1273288</link>
<pubDate>Sat, 07 Nov 2009 12:31:15 +0000</pubDate>
<dc:creator>MichaelH</dc:creator>
<guid isPermaLink="false">1273288@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Either use the Category Widget and check the &#34;Show as dropdown&#34; option (see &#60;a href=&#34;http://codex.wordpress.org/Administration_Panels&#34;&#62;Administration&#60;/a&#62; &#38;gt; &#60;a href=&#34;http://codex.wordpress.org/Administration_Panels#Widgets&#34;&#62;Appearance&#60;/a&#62; &#38;gt; &#60;a href=&#34;http://codex.wordpress.org/Appearance_Widgets_SubPanel&#34;&#62;Widgets&#60;/a&#62;) or use the &#60;a href=&#34;http://codex.wordpress.org/Template_Tags&#34;&#62;template tag&#60;/a&#62;, &#60;a href=&#34;http://codex.wordpress.org/Template_Tags/wp_dropdown_categories&#34;&#62;wp_dropdown_categories()&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;Related:&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Stepping_Into_Template_Tags&#34;&#62;Stepping Into Template Tags&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Stepping_Into_Templates&#34;&#62;Stepping Into Templates&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Template_Hierarchy&#34;&#62;Template Hierarchy&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>chasix on "Categories Dropdown (like eBay.com)"</title>
<link>http://wordpress.org/support/topic/329224#post-1273172</link>
<pubDate>Sat, 07 Nov 2009 07:35:49 +0000</pubDate>
<dc:creator>chasix</dc:creator>
<guid isPermaLink="false">1273172@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Can anyone point me in the right direction to get a categories dropdown similar to &#60;a href=&#34;http://www.ebay.com/&#34;&#62;ebay.com&#60;/a&#62;?
&#60;/p&#62;</description>
</item>
<item>
<title>esmi on "Error when saving Header.php"</title>
<link>http://wordpress.org/support/topic/328114#post-1269631</link>
<pubDate>Wed, 04 Nov 2009 14:58:53 +0000</pubDate>
<dc:creator>esmi</dc:creator>
<guid isPermaLink="false">1269631@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Send them a copy of the error message with a very brief summary of what you've been trying to do (edit theme files on the server). Include your WP version number and ask if there's any server configuration changes that they can make so that they fully support WordPress.
&#60;/p&#62;</description>
</item>
<item>
<title>floffkimman on "Error when saving Header.php"</title>
<link>http://wordpress.org/support/topic/328114#post-1269523</link>
<pubDate>Wed, 04 Nov 2009 13:05:55 +0000</pubDate>
<dc:creator>floffkimman</dc:creator>
<guid isPermaLink="false">1269523@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hey Esmi,&#60;/p&#62;
&#60;p&#62;thanks for your input! i will ask my host than...&#60;br /&#62;
But you have any clue what i need to ask the host?&#60;/p&#62;
&#60;p&#62;cheers,&#60;br /&#62;
Floris
&#60;/p&#62;</description>
</item>
<item>
<title>esmi on "Error when saving Header.php"</title>
<link>http://wordpress.org/support/topic/328114#post-1269504</link>
<pubDate>Wed, 04 Nov 2009 12:42:20 +0000</pubDate>
<dc:creator>esmi</dc:creator>
<guid isPermaLink="false">1269504@http://wordpress.org/support/</guid>
<description>&#60;p&#62;It might be a hosting configuration issue.
&#60;/p&#62;</description>
</item>
<item>
<title>floffkimman on "Error when saving Header.php"</title>
<link>http://wordpress.org/support/topic/328114#post-1269368</link>
<pubDate>Wed, 04 Nov 2009 09:54:58 +0000</pubDate>
<dc:creator>floffkimman</dc:creator>
<guid isPermaLink="false">1269368@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I am experimenting with some small things in the header set-up of my site. Trying to implement a dropdown menu in the header.&#60;br /&#62;
But I always get the same error when saving it things.... EVEN if i just use the old 100% working code!&#60;/p&#62;
&#60;p&#62;This is the error:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;Method Not Implemented

GET to /wordpress/wp-admin/theme-editor.php not supported.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Anyone who has a clue why this is happening? And what I need to do to prevent this problem from happening?&#60;/p&#62;
&#60;p&#62;Cheers!!&#60;br /&#62;
Floris&#60;/p&#62;
&#60;p&#62;Specs:&#60;br /&#62;
Mac w/ firefox 3.5.4 and safari 4.0.3 (both browsers have the same error)&#60;br /&#62;
WP version 2.8.5 (the most recent)
&#60;/p&#62;</description>
</item>
<item>
<title>Elysian on "Floating " Arrangement ""</title>
<link>http://wordpress.org/support/topic/327504#post-1269208</link>
<pubDate>Wed, 04 Nov 2009 04:57:54 +0000</pubDate>
<dc:creator>Elysian</dc:creator>
<guid isPermaLink="false">1269208@http://wordpress.org/support/</guid>
<description>&#60;p&#62;wow! That fixed it!&#60;/p&#62;
&#60;p&#62;You're the best! Thank you!
&#60;/p&#62;</description>
</item>
<item>
<title>kkarpieszuk on "Floating " Arrangement ""</title>
<link>http://wordpress.org/support/topic/327504#post-1268637</link>
<pubDate>Tue, 03 Nov 2009 21:00:16 +0000</pubDate>
<dc:creator>kkarpieszuk</dc:creator>
<guid isPermaLink="false">1268637@http://wordpress.org/support/</guid>
<description>&#60;p&#62;add to your style.css file:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;ul.children {
z-index: 200;
}&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Elysian on "Floating " Arrangement ""</title>
<link>http://wordpress.org/support/topic/327504#post-1268521</link>
<pubDate>Tue, 03 Nov 2009 19:31:35 +0000</pubDate>
<dc:creator>Elysian</dc:creator>
<guid isPermaLink="false">1268521@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Anyone? This should be easy I just have no idea how to do it.
&#60;/p&#62;</description>
</item>
<item>
<title>Elysian on "Floating " Arrangement ""</title>
<link>http://wordpress.org/support/topic/327504#post-1268244</link>
<pubDate>Tue, 03 Nov 2009 15:18:12 +0000</pubDate>
<dc:creator>Elysian</dc:creator>
<guid isPermaLink="false">1268244@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Fixed..&#60;/p&#62;
&#60;p&#62;Can you see now?
&#60;/p&#62;</description>
</item>
<item>
<title>kkarpieszuk on "Floating " Arrangement ""</title>
<link>http://wordpress.org/support/topic/327504#post-1267546</link>
<pubDate>Mon, 02 Nov 2009 22:01:35 +0000</pubDate>
<dc:creator>kkarpieszuk</dc:creator>
<guid isPermaLink="false">1267546@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Parse error: syntax error, unexpected $end in /home/c3t000/public_html/koa-cn/wparab/wp-content/themes/magazeen-wordpress-theme/magazeen/index.php on line 148
&#60;/p&#62;</description>
</item>
<item>
<title>Elysian on "Floating " Arrangement ""</title>
<link>http://wordpress.org/support/topic/327504#post-1267467</link>
<pubDate>Mon, 02 Nov 2009 20:49:35 +0000</pubDate>
<dc:creator>Elysian</dc:creator>
<guid isPermaLink="false">1267467@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hello there,&#60;/p&#62;
&#60;p&#62; I'm having problems with my drop-down menu. In my theme, I have a kind of highlighter for new news. When I try to put the mouse over the drop down menu, the news thing is shown instead.&#60;/p&#62;
&#60;p&#62;You'll see what I mean by visiting the website:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://koa-cn.com/wparab/&#34; rel=&#34;nofollow&#34;&#62;http://koa-cn.com/wparab/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;How do I fix this?
&#60;/p&#62;</description>
</item>
<item>
<title>gambit37 on "Add custom styles to the visual editor"</title>
<link>http://wordpress.org/support/topic/281818#post-1266010</link>
<pubDate>Sun, 01 Nov 2009 11:04:19 +0000</pubDate>
<dc:creator>gambit37</dc:creator>
<guid isPermaLink="false">1266010@http://wordpress.org/support/</guid>
<description>&#60;p&#62;@brentontherefore: The link posted by tommykaneko has nothing to do with the question of this post. The Custom Field Template is a plugin for creating and managing custom meta data (custom fields) attached to a page or post, it's got nothing to to with configuring tinyMCE.
&#60;/p&#62;</description>
</item>
<item>
<title>Yassilus on "Attributes for automatic lists (making dropdowns)"</title>
<link>http://wordpress.org/support/topic/324350#post-1258350</link>
<pubDate>Sun, 25 Oct 2009 11:44:57 +0000</pubDate>
<dc:creator>Yassilus</dc:creator>
<guid isPermaLink="false">1258350@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I've come to terms with exactly what I need (I think!).&#60;/p&#62;
&#60;p&#62;I think I need a php string (preferably to include in post-template.php) to define the output of lists with $children so I can give that ul an attribute (which will help me define its appearence with CSS.&#60;/p&#62;
&#60;p&#62;Is this possible?
&#60;/p&#62;</description>
</item>
<item>
<title>Yassilus on "Attributes for automatic lists (making dropdowns)"</title>
<link>http://wordpress.org/support/topic/324350#post-1257418</link>
<pubDate>Sat, 24 Oct 2009 07:00:43 +0000</pubDate>
<dc:creator>Yassilus</dc:creator>
<guid isPermaLink="false">1257418@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;I'm trying to tweak TDH's terrific Notes Blog Core theme (&#60;a href=&#34;http://wordpress.org/extend/themes/notes-blog-core-theme&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/themes/notes-blog-core-theme&#60;/a&#62;) with the dropdown menu described at Webdesigndev (since the site seems to be down at the moment, I'm giving you the google cached site: &#60;a href=&#34;http://tinyurl.com/yzs9vfz)&#34; rel=&#34;nofollow&#34;&#62;http://tinyurl.com/yzs9vfz)&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;Although I'm but a newbie at CSS and not familiar with JavaScript/jQuery I think it would be managable for me to do it (on top of that I really suck at php so I'm working in strong headwind). But - there is a but - I have large troubles finding the automatic attributes that are given the page lists when using the page widget and without them I'm totally lost. I've searched the codex without finding anything that gives a clue about what I should do, so my last hope is you here at the forums. :-)&#60;/p&#62;
&#60;p&#62;Can anyone give me the automatic page widget list attributes (if such a thing even exists) or maybe even guide me with the specifics for the theme I'm about to use together with the meny.&#60;/p&#62;
&#60;p&#62;Thanks in beforehand!&#60;/p&#62;
&#60;p&#62;My test site is here: &#60;a href=&#34;http://test.ackerfors.se/1/&#34; rel=&#34;nofollow&#34;&#62;http://test.ackerfors.se/1/&#60;/a&#62;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
