<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>leftcolumn.net &#187; drupal</title>
	<atom:link href="http://www.leftcolumn.net/categories/drupal/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.leftcolumn.net</link>
	<description>Covering Mac OS X, Mac Software, and other stuff</description>
	<lastBuildDate>Tue, 29 Nov 2011 04:30:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to make TinyMCE in Drupal put icons all on one row</title>
		<link>http://www.leftcolumn.net/2007/08/29/how-to-make-tinymce-in-drupal-put-icons-all-on-one-row/</link>
		<comments>http://www.leftcolumn.net/2007/08/29/how-to-make-tinymce-in-drupal-put-icons-all-on-one-row/#comments</comments>
		<pubDate>Wed, 29 Aug 2007 10:36:29 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[drupal]]></category>
		<category><![CDATA[tiny mce]]></category>

		<guid isPermaLink="false">http://www.leftcolumn.net/2007/08/29/how-to-make-tinymce-in-drupal-put-icons-all-on-one-row/</guid>
		<description><![CDATA[How do I stop the TinyMCE WYSIWYG editor Drupal module from using two rows of icons in the toolbar? Here&#8217;s how to configure the plugin so that it puts all the icons into one row&#8230; Overview: The TinyMCE Drupal module separates the toolbar icons into sensible groups, but if you only want a few icons [...]]]></description>
			<content:encoded><![CDATA[<p><em>How do I stop the TinyMCE WYSIWYG editor Drupal module from using two rows of icons in the toolbar? Here&#8217;s how to configure the plugin so that it puts all the icons into one row&#8230;</em></p>
<p><strong>Overview: </strong>The TinyMCE Drupal module separates the toolbar icons into sensible groups, but if you only want a few icons in the TinyMCE toolbar, it doesn&#8217;t make sense to have them span two rows.</p>
<p>To change the default toolbar in the Drupal TinyMCE editor to a single line is easy. Your version might look different, but essentially you need to load all of the icons into the array that represents the first line of the toolbar.</p>
<p>1. Open [drupal root]/modules/tinymce/plugin_reg.php.</p>
<p>Change the code from this:</p>
<p><code><br />
$plugins['default']['theme_advanced_buttons1'] = array('bold', 'italic', 'underline', 'strikethrough', 'justifyleft', 'justifycenter', 'justifyright', 'justifyfull', 'bullist', 'numlist', 'outdent', 'indent', 'undo', 'redo', 'link', 'unlink', 'anchor');<br />
$plugins['default']['theme_advanced_buttons2'] = array('image', 'cleanup', 'forecolor', 'backcolor', 'sup', 'sub', 'code', 'hr');<br />
$plugins['default']['theme_advanced_buttons3'] = array('cut', 'copy', 'paste', 'visualaid', 'removeformat', 'charmap', 'help');<br />
</code><br />
to this:</p>
<p><code><br />
$plugins['default']['theme_advanced_buttons1'] = array('bold', 'italic', 'underline', 'strikethrough', 'justifyleft', 'justifycenter', 'justifyright', 'justifyfull', 'bullist', 'numlist', 'outdent', 'indent', 'undo', 'redo', 'link', 'unlink', 'anchor', 'image', 'cleanup', 'forecolor', 'backcolor', 'sup', 'sub', 'code', 'hr', 'cut', 'copy', 'paste', 'visualaid', 'removeformat', 'charmap', 'help');<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.leftcolumn.net/2007/08/29/how-to-make-tinymce-in-drupal-put-icons-all-on-one-row/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

