<?xml version="1.0" encoding="iso-8859-1"?><!-- generator="b2evolution/2.4.7" -->
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>this.b2evolution</title>
		<link>http://eu.rogerlovejoy.eu/b2evo.php</link>
		<description></description>
		<language>en-GB</language>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<admin:generatorAgent rdf:resource="http://b2evolution.net/?v=2.4.7"/>
		<ttl>60</ttl>
				<item>
			<title>My Tags Plugin</title>
			<link>http://eu.rogerlovejoy.eu/b2evo.php/my-tags-plugin</link>
			<pubDate>Mon, 09 Aug 2010 20:22:00 +0000</pubDate>			<dc:creator>roger</dc:creator>
			<category domain="main">Plugins and Hacks</category>
<category domain="alt">Ongoing</category>			<guid isPermaLink="false">269@http://eu.rogerlovejoy.eu/</guid>
						<description>&lt;p&gt;Details on my mod to Quick Tags plug-in.&lt;/p&gt;

&lt;p&gt;I have added a fourth &amp;lt;div&amp;gt; as follows:&lt;br /&gt;
1. Open _mytags.plugin.php and edit&lt;br /&gt;
2. In &lt;span class=&quot;MT_red&quot;&gt;&lt;strong&gt;function&lt;/strong&gt;&lt;/span&gt; GetDefaultSettings() copy existing div code, that starts as follows and changing div numbers. Do not change [&amp;#8217;rows&amp;#8217; =&amp;gt; 4]&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8216;moretags_div1&amp;prime; =&amp;gt; array(&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;3. In &lt;span class=&quot;MT_red&quot;&gt;&lt;strong&gt;function&lt;/strong&gt;&lt;/span&gt; SkinBeginHtmlHead() copy code for div starting as follows, and change numbers to suit step 2 above.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;if ( $this-&gt;Settings-&gt;get(&amp;#8217;moretags_div1&amp;prime;) != &amp;#8216;&amp;#8217; )&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;4. In &lt;span class=&quot;MT_red&quot;&gt;&lt;strong&gt;function&lt;/strong&gt;&lt;/span&gt; AnotherButton(id, display, tagClass, tagStart, tagEnd, tit, open)&lt;br /&gt;
copy code for new button, as follows and again change div number to suit above. The &amp;#8216;d1&amp;prime; is the button label(text) and can be anything. I have used &amp;#8216;Cl&amp;#8217; on a button to {clear:both} and &amp;#8216;dL&amp;#8217; for a &amp;lt;div&amp;gt; that has {float:left} in it&amp;#8217;s CSS class.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;MoreButtons[MoreButtons.length] = new AnotherButton(&lt;br /&gt;
		&amp;#8216;mtb_div1&amp;prime;,&amp;#8217;d1&amp;prime;,&amp;#8217;divs leftgap&amp;#8217;,&amp;#8217;&lt;/p&gt;&lt;div class=&quot;MT_div_1&quot;&gt;&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;5. Then edit the plug-in via management ~ pluin installed ~ MyTags to create the style wanted.&lt;/p&gt;

&lt;p&gt;OK All the above was unnecessary. clearboth is already a class in rsc/css/basic.css and I made two more classes to replace the divs made above; post_fll and post_flr (post detail float left and ditto float right). So the divs can be used for something else. Well at least they are implimented and the css of each cna be easily changed.&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://eu.rogerlovejoy.eu/b2evo.php/my-tags-plugin&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>Details on my mod to Quick Tags plug-in.</p>

<p>I have added a fourth &lt;div&gt; as follows:<br />
1. Open _mytags.plugin.php and edit<br />
2. In <span class="MT_red"><strong>function</strong></span> GetDefaultSettings() copy existing div code, that starts as follows and changing div numbers. Do not change [&#8217;rows&#8217; =&gt; 4]</p>
<blockquote><p>&#8216;moretags_div1&prime; =&gt; array(</p></blockquote>
<p>3. In <span class="MT_red"><strong>function</strong></span> SkinBeginHtmlHead() copy code for div starting as follows, and change numbers to suit step 2 above.</p>
<blockquote><p>if ( $this->Settings->get(&#8217;moretags_div1&prime;) != &#8216;&#8217; )</p></blockquote>
<p>4. In <span class="MT_red"><strong>function</strong></span> AnotherButton(id, display, tagClass, tagStart, tagEnd, tit, open)<br />
copy code for new button, as follows and again change div number to suit above. The &#8216;d1&prime; is the button label(text) and can be anything. I have used &#8216;Cl&#8217; on a button to {clear:both} and &#8216;dL&#8217; for a &lt;div&gt; that has {float:left} in it&#8217;s CSS class.</p>
<blockquote><p>MoreButtons[MoreButtons.length] = new AnotherButton(<br />
		&#8216;mtb_div1&prime;,&#8217;d1&prime;,&#8217;divs leftgap&#8217;,&#8217;</p><div class="MT_div_1"></div></blockquote>
<p>5. Then edit the plug-in via management ~ pluin installed ~ MyTags to create the style wanted.</p>

<p>OK All the above was unnecessary. clearboth is already a class in rsc/css/basic.css and I made two more classes to replace the divs made above; post_fll and post_flr (post detail float left and ditto float right). So the divs can be used for something else. Well at least they are implimented and the css of each cna be easily changed.</p><div class="item_footer"><p><small><a href="http://eu.rogerlovejoy.eu/b2evo.php/my-tags-plugin">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://eu.rogerlovejoy.eu/b2evo.php/my-tags-plugin#comments</comments>
		</item>
				<item>
			<title>Search Form Widget</title>
			<link>http://eu.rogerlovejoy.eu/b2evo.php/search-form-widget-3</link>
			<pubDate>Sat, 28 Mar 2009 16:07:13 +0000</pubDate>			<dc:creator>roger</dc:creator>
			<category domain="main">Plugins and Hacks</category>			<guid isPermaLink="false">253@http://eu.rogerlovejoy.eu/</guid>
						<description>&lt;p&gt;Hard coded paragraph tag around submit button as validator didn&amp;#8217;t like any lines of code inside a &amp;lt;form&gt; tag not to be in a block tag.&lt;br /&gt;
&lt;code&gt;echo '&amp;lt;p&gt;';&lt;br /&gt;
		echo '&amp;lt;input type=&quot;submit&quot; name=&quot;submit&quot;  value=&quot;'.T_('Search').'&quot; class=&quot;search_submit&quot; /&gt;';&lt;br /&gt;
		echo '&amp;lt;/p&gt;';&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://eu.rogerlovejoy.eu/b2evo.php/search-form-widget-3&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>Hard coded paragraph tag around submit button as validator didn&#8217;t like any lines of code inside a &lt;form> tag not to be in a block tag.<br />
<code>echo '&lt;p>';<br />
		echo '&lt;input type="submit" name="submit"  value="'.T_('Search').'" class="search_submit" />';<br />
		echo '&lt;/p>';<br />
</code></p><div class="item_footer"><p><small><a href="http://eu.rogerlovejoy.eu/b2evo.php/search-form-widget-3">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://eu.rogerlovejoy.eu/b2evo.php/search-form-widget-3#comments</comments>
		</item>
				<item>
			<title>Search Form Widget</title>
			<link>http://eu.rogerlovejoy.eu/b2evo.php/search-form-widget-2</link>
			<pubDate>Sat, 28 Mar 2009 16:04:46 +0000</pubDate>			<dc:creator>roger</dc:creator>
			<category domain="main">Background</category>			<guid isPermaLink="false">252@http://eu.rogerlovejoy.eu/</guid>
						<description>&lt;p&gt;Hard coded paragraph tag around submit button as validator didn&amp;#8217;t like any lines of code inside a &amp;lt;form&gt; tag not to be in a block tag.&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
echo '&amp;amp;lt'p&gt;';&lt;br /&gt;
		echo '&amp;lt;input type=&quot;submit&quot; name=&quot;submit&quot;  value=&quot;'.T_('Search').'&quot; class=&quot;search_submit&quot; /&gt;';&lt;br /&gt;
		echo '&amp;lt;/p&gt;';&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://eu.rogerlovejoy.eu/b2evo.php/search-form-widget-2&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>Hard coded paragraph tag around submit button as validator didn&#8217;t like any lines of code inside a &lt;form> tag not to be in a block tag.<br />
<code><br />
echo '&amp;lt'p>';<br />
		echo '&lt;input type="submit" name="submit"  value="'.T_('Search').'" class="search_submit" />';<br />
		echo '&lt;/p>';<br />
</code></p><div class="item_footer"><p><small><a href="http://eu.rogerlovejoy.eu/b2evo.php/search-form-widget-2">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://eu.rogerlovejoy.eu/b2evo.php/search-form-widget-2#comments</comments>
		</item>
				<item>
			<title>Search Form Widget</title>
			<link>http://eu.rogerlovejoy.eu/b2evo.php/search-form-widget-1</link>
			<pubDate>Sat, 28 Mar 2009 16:03:06 +0000</pubDate>			<dc:creator>roger</dc:creator>
			<category domain="main">Background</category>			<guid isPermaLink="false">251@http://eu.rogerlovejoy.eu/</guid>
						<description>&lt;p&gt;Hard coded paragraph tag around submit button as validator didn&amp;#8217;t like any lines of code inside a &amp;lt;form&gt; tag not to be in a block tag.&lt;br /&gt;
[code]&lt;br /&gt;
echo &amp;#8216;&amp;amp;lt&amp;#8217;p&gt;&amp;#8217;;&lt;br /&gt;
		echo &amp;#8216;&amp;lt;input type=&quot;submit&amp;#8221; name=&quot;submit&amp;#8221;  value=&quot;&amp;#8216;.T_(&amp;#8217;Search&amp;#8217;).&amp;#8217;&amp;#8221; class=&quot;search_submit&amp;#8221; /&gt;&amp;#8217;;&lt;br /&gt;
		echo &amp;#8216;&amp;lt;/p&gt;&amp;#8217;;&lt;br /&gt;
[/code]&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://eu.rogerlovejoy.eu/b2evo.php/search-form-widget-1&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>Hard coded paragraph tag around submit button as validator didn&#8217;t like any lines of code inside a &lt;form> tag not to be in a block tag.<br />
[code]<br />
echo &#8216;&amp;lt&#8217;p>&#8217;;<br />
		echo &#8216;&lt;input type="submit&#8221; name="submit&#8221;  value="&#8216;.T_(&#8217;Search&#8217;).&#8217;&#8221; class="search_submit&#8221; />&#8217;;<br />
		echo &#8216;&lt;/p>&#8217;;<br />
[/code]</p><div class="item_footer"><p><small><a href="http://eu.rogerlovejoy.eu/b2evo.php/search-form-widget-1">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://eu.rogerlovejoy.eu/b2evo.php/search-form-widget-1#comments</comments>
		</item>
				<item>
			<title>Search Form Widget</title>
			<link>http://eu.rogerlovejoy.eu/b2evo.php/search-form-widget</link>
			<pubDate>Sat, 28 Mar 2009 16:02:13 +0000</pubDate>			<dc:creator>roger</dc:creator>
			<category domain="main">Background</category>			<guid isPermaLink="false">250@http://eu.rogerlovejoy.eu/</guid>
						<description>&lt;p&gt;Hard coded paragraph tag around submit button as validator didn&amp;#8217;t like any lines of code inside a &amp;lt;form&gt; tag not to be in a block tag.&lt;br /&gt;
[codespan]&lt;br /&gt;
echo &amp;#8216;&amp;amp;lt&amp;#8217;p&gt;&amp;#8217;;&lt;br /&gt;
		echo &amp;#8216;&amp;lt;input type=&quot;submit&amp;#8221; name=&quot;submit&amp;#8221;  value=&quot;&amp;#8216;.T_(&amp;#8217;Search&amp;#8217;).&amp;#8217;&amp;#8221; class=&quot;search_submit&amp;#8221; /&gt;&amp;#8217;;&lt;br /&gt;
		echo &amp;#8216;&amp;lt;/p&gt;&amp;#8217;;&lt;br /&gt;
[/codespan]&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://eu.rogerlovejoy.eu/b2evo.php/search-form-widget&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>Hard coded paragraph tag around submit button as validator didn&#8217;t like any lines of code inside a &lt;form> tag not to be in a block tag.<br />
[codespan]<br />
echo &#8216;&amp;lt&#8217;p>&#8217;;<br />
		echo &#8216;&lt;input type="submit&#8221; name="submit&#8221;  value="&#8216;.T_(&#8217;Search&#8217;).&#8217;&#8221; class="search_submit&#8221; />&#8217;;<br />
		echo &#8216;&lt;/p>&#8217;;<br />
[/codespan]</p><div class="item_footer"><p><small><a href="http://eu.rogerlovejoy.eu/b2evo.php/search-form-widget">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://eu.rogerlovejoy.eu/b2evo.php/search-form-widget#comments</comments>
		</item>
				<item>
			<title>Problems in Firefox 3</title>
			<link>http://eu.rogerlovejoy.eu/b2evo.php/problems-in-firefox-3</link>
			<pubDate>Thu, 10 Jul 2008 02:11:47 +0000</pubDate>			<dc:creator>roger</dc:creator>
			<category domain="main">Announcements</category>			<guid isPermaLink="false">221@http://eu.rogerlovejoy.eu/</guid>
						<description>&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://eu.rogerlovejoy.eu/b2evo.php/problems-in-firefox-3&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<div class="item_footer"><p><small><a href="http://eu.rogerlovejoy.eu/b2evo.php/problems-in-firefox-3">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://eu.rogerlovejoy.eu/b2evo.php/problems-in-firefox-3#comments</comments>
		</item>
				<item>
			<title>Get Plugins</title>
			<link>http://eu.rogerlovejoy.eu/b2evo.php/get-plugins</link>
			<pubDate>Thu, 22 May 2008 12:36:22 +0000</pubDate>			<dc:creator>roger</dc:creator>
			<category domain="main">Background</category>			<guid isPermaLink="false">173@http://eu.rogerlovejoy.eu/</guid>
						<description>&lt;p&gt;Code Plugin: See post by yabba on forum&lt;br /&gt;
Sticky Plugin&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://eu.rogerlovejoy.eu/b2evo.php/get-plugins&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>Code Plugin: See post by yabba on forum<br />
Sticky Plugin</p><div class="item_footer"><p><small><a href="http://eu.rogerlovejoy.eu/b2evo.php/get-plugins">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://eu.rogerlovejoy.eu/b2evo.php/get-plugins#comments</comments>
		</item>
				<item>
			<title>Edit link moved on 'page_main.php'</title>
			<link>http://eu.rogerlovejoy.eu/b2evo.php/edit-link-moved-on-page_main</link>
			<pubDate>Sat, 17 May 2008 21:02:08 +0000</pubDate>			<dc:creator>roger</dc:creator>
			<category domain="main">Done</category>			<guid isPermaLink="false">163@http://eu.rogerlovejoy.eu/</guid>
						<description>&lt;p&gt;&lt;strong&gt;More modifying for the page_main.php&lt;/strong&gt;&lt;br /&gt;
As in the last post on &amp;#8216;Messages Generated From Actions, I want to move the edit link from the left hand column to the bottom of the post as I have in the posts_main.php.&lt;/p&gt;

&lt;p&gt;After moving it I formatted it with a &amp;lt;div class=&quot;page-edit-link&quot;&gt; with borders, but when not logged in the borders didn&amp;#8217;t show and i wanted a separator from the feedback block so I added a border-top to the &amp;#8216;feedback&amp;#8217; div to separate.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The code in the &amp;#8216;page_main.php&amp;#8217;is:&lt;/strong&gt; Added before the &amp;lt;div class=&quot;clearboth&quot;&gt;&lt;br /&gt;
&lt;code&gt;&amp;lt;?php&lt;br /&gt;
			$Item-&gt;edit_link( array( // Link to backoffice for editing&lt;br /&gt;
				'before'       		=&gt; '&amp;lt;div class=&quot;page-edit-link&quot;&gt;',&lt;br /&gt;
				'after'        		=&gt; '&amp;lt;div&gt;',&lt;br /&gt;
				'text'         		=&gt; '#',&lt;br /&gt;
				'title'        		=&gt; '#',&lt;br /&gt;
				'class'        		=&gt; '',&lt;br /&gt;
				'save_context' 		=&gt; true,&lt;br /&gt;
				) );&lt;br /&gt;
		?&gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Then the &amp;lt;div class=&quot;clearboth&quot;&gt; was changed to &amp;lt;div class=&quot;comments&quot;&gt; to get a permanent separator, which acts as the bottom border for the edit link when logged in.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The css codes are:&lt;/strong&gt;&lt;br /&gt;
&lt;code&gt;&lt;strong&gt;.page-edit-link&lt;/strong&gt;{&lt;br /&gt;
clear:both;&lt;br /&gt;
text-align:right;&lt;br /&gt;
width:96%;&lt;br /&gt;
margin-left:23px;&lt;br /&gt;
padding:5px 3px 2px 0;&lt;br /&gt;
border-top:1px dotted blue;&lt;br /&gt;
}&lt;br /&gt;
&lt;strong&gt;.comments&lt;/strong&gt;{&lt;br /&gt;
clear:both;&lt;br /&gt;
margin-left:23px;&lt;br /&gt;
border-top:1px solid blue;&lt;br /&gt;
}&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://eu.rogerlovejoy.eu/b2evo.php/edit-link-moved-on-page_main&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p><strong>More modifying for the page_main.php</strong><br />
As in the last post on &#8216;Messages Generated From Actions, I want to move the edit link from the left hand column to the bottom of the post as I have in the posts_main.php.</p>

<p>After moving it I formatted it with a &lt;div class="page-edit-link"> with borders, but when not logged in the borders didn&#8217;t show and i wanted a separator from the feedback block so I added a border-top to the &#8216;feedback&#8217; div to separate.</p>

<p><strong>The code in the &#8216;page_main.php&#8217;is:</strong> Added before the &lt;div class="clearboth"><br />
<code>&lt;?php<br />
			$Item->edit_link( array( // Link to backoffice for editing<br />
				'before'       		=> '&lt;div class="page-edit-link">',<br />
				'after'        		=> '&lt;div>',<br />
				'text'         		=> '#',<br />
				'title'        		=> '#',<br />
				'class'        		=> '',<br />
				'save_context' 		=> true,<br />
				) );<br />
		?></code></p>

<p>Then the &lt;div class="clearboth"> was changed to &lt;div class="comments"> to get a permanent separator, which acts as the bottom border for the edit link when logged in.</p>

<p><strong>The css codes are:</strong><br />
<code><strong>.page-edit-link</strong>{<br />
clear:both;<br />
text-align:right;<br />
width:96%;<br />
margin-left:23px;<br />
padding:5px 3px 2px 0;<br />
border-top:1px dotted blue;<br />
}<br />
<strong>.comments</strong>{<br />
clear:both;<br />
margin-left:23px;<br />
border-top:1px solid blue;<br />
}<br />
</code></p><div class="item_footer"><p><small><a href="http://eu.rogerlovejoy.eu/b2evo.php/edit-link-moved-on-page_main">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://eu.rogerlovejoy.eu/b2evo.php/edit-link-moved-on-page_main#comments</comments>
		</item>
				<item>
			<title>Message Generated From Actions on 'page_main.php'</title>
			<link>http://eu.rogerlovejoy.eu/b2evo.php/message-action-on-page_main</link>
			<pubDate>Sat, 17 May 2008 20:49:44 +0000</pubDate>			<dc:creator>roger</dc:creator>
			<category domain="main">Done</category>			<guid isPermaLink="false">162@http://eu.rogerlovejoy.eu/</guid>
						<description>&lt;p&gt;I have modified the Message Action for the page view as it looked out of place to the side. As their is no text in the space above the page title I&amp;#8217;ve moved it here and made it a long and thinner div.&lt;/p&gt;

&lt;p&gt;So the changes, in my modified simple_zen, are:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. page.main.php&lt;/strong&gt; Insert immediately after &amp;lt;div id=&quot;content&amp;#8221; class=&quot;column&quot;&gt;&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
      &amp;lt;?php&lt;br /&gt;
	// -----MESSAGES GENERATED FROM ACTIONS -----&lt;br /&gt;
	   messages( array(&lt;br /&gt;
	    'block_start' =&gt; '&amp;lt;div class=&quot;page_action&quot;&amp;gt;',&lt;br /&gt;
	    'block_end'   =&gt; '&amp;lt;/div&amp;gt;',&lt;br /&gt;
 		           ) );&lt;br /&gt;
	// --END OF MESSAGES GENERATED FROM ACTIONS --&lt;br /&gt;
       ?&gt;&lt;br /&gt;
       &lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. stylesheet.css&lt;/strong&gt; Add the following&lt;br /&gt;
&lt;code&gt;.page_action {&lt;br /&gt;
border:1px solid black;&lt;br /&gt;
background:#ffff66; color:#000000;&lt;br /&gt;
text-align:center;&lt;br /&gt;
padding:1px;&lt;br /&gt;
margin-left:23%;&lt;br /&gt;
margin-top:-24px;&lt;br /&gt;
}&lt;/code&gt;&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://eu.rogerlovejoy.eu/b2evo.php/message-action-on-page_main&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>I have modified the Message Action for the page view as it looked out of place to the side. As their is no text in the space above the page title I&#8217;ve moved it here and made it a long and thinner div.</p>

<p>So the changes, in my modified simple_zen, are:</p>

<p><strong>1. page.main.php</strong> Insert immediately after &lt;div id="content&#8221; class="column"><br />
<code><br />
      &lt;?php<br />
	// -----MESSAGES GENERATED FROM ACTIONS -----<br />
	   messages( array(<br />
	    'block_start' => '&lt;div class="page_action"&gt;',<br />
	    'block_end'   => '&lt;/div&gt;',<br />
 		           ) );<br />
	// --END OF MESSAGES GENERATED FROM ACTIONS --<br />
       ?><br />
       </code></p>

<p><strong>2. stylesheet.css</strong> Add the following<br />
<code>.page_action {<br />
border:1px solid black;<br />
background:#ffff66; color:#000000;<br />
text-align:center;<br />
padding:1px;<br />
margin-left:23%;<br />
margin-top:-24px;<br />
}</code></p><div class="item_footer"><p><small><a href="http://eu.rogerlovejoy.eu/b2evo.php/message-action-on-page_main">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://eu.rogerlovejoy.eu/b2evo.php/message-action-on-page_main#comments</comments>
		</item>
			</channel>
</rss>
