<?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>Event Media &#187; Blog</title>
	<atom:link href="http://eventmedia.ie/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://eventmedia.ie</link>
	<description>Kilkenny Web Design &#124; Graphic Design &#124; Web Development Studio</description>
	<lastBuildDate>Mon, 14 May 2012 17:17:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>De\Code Issue 2 Goes Live</title>
		<link>http://eventmedia.ie/decode-issue-2-goes-live/</link>
		<comments>http://eventmedia.ie/decode-issue-2-goes-live/#comments</comments>
		<pubDate>Mon, 14 May 2012 17:15:25 +0000</pubDate>
		<dc:creator>Ken McGuire</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[arts]]></category>
		<category><![CDATA[culture]]></category>
		<category><![CDATA[decode]]></category>
		<category><![CDATA[magazine]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://eventmedia.ie/?p=469</guid>
		<description><![CDATA[<p>After sitting on the magazine for the best part of two weeks, De\Code issue two has gone live to the masses today. Originally intended to be in print format for May, the magazine is once ...</p>
 ]]></description>
			<content:encoded><![CDATA[<div><object style="width:550px;height:389px" ><param name="movie" value="http://static.issuu.com/webembed/viewers/style1/v2/IssuuReader.swf?mode=mini&amp;backgroundColor=%23222222&amp;documentId=120503112354-41f0717357434820a23bf1f51179774a" /><param name="allowfullscreen" value="true"/><param name="menu" value="false"/><param name="wmode" value="transparent"/><embed src="http://static.issuu.com/webembed/viewers/style1/v2/IssuuReader.swf" type="application/x-shockwave-flash" allowfullscreen="true" menu="false" wmode="transparent" style="width:550px;height:389px" flashvars="mode=mini&amp;backgroundColor=%23222222&amp;documentId=120503112354-41f0717357434820a23bf1f51179774a" /></object></div>
<p>After sitting on the magazine for the best part of two weeks, De\Code issue two has gone live to the masses today. Originally intended to be in print format for May, the magazine is once again in digital format only <a href="http://wewilldecode.com/2012/05/14/decode/" title="De\Code Issue 2 Updates" target="_blank">while ongoing print issues get resolved</a>.</p>
<p>Not going to print aside, issue 2 picks up right where the first edition of the magazine finished and packs another raft of international and Irish music reviews, a look at theatre events taking place around the country, food bloggers turning published authors, the state of play at RTÉ and much more besides.</p>
<p>If you can, take the time to read the second issue. There&#8217;s plenty to feast your eyes on, brought to you by a very talented team of writers from around the country.</p>
<p>Hopefully, we&#8217;ll see the magazine in print format soon, but other alternatives are being explored. Nobody ever said it was going to be easy, but that&#8217;s got to be part of the fun about it, right?</p>
<p><em>Note: I (Ken) am production designer for De\Code, Ireland&#8217;s newest arts &#038; culture magazine.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://eventmedia.ie/decode-issue-2-goes-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Menu Support To Older WordPress Themes</title>
		<link>http://eventmedia.ie/adding-menu-support-to-older-wordpress-themes/</link>
		<comments>http://eventmedia.ie/adding-menu-support-to-older-wordpress-themes/#comments</comments>
		<pubDate>Fri, 20 Apr 2012 15:00:19 +0000</pubDate>
		<dc:creator>Ken McGuire</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[appearance]]></category>
		<category><![CDATA[menu support]]></category>
		<category><![CDATA[menus]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://eventmedia.ie/?p=406</guid>
		<description><![CDATA[<p>If you&#8217;ve got an older WordPress theme that doesn&#8217;t support the WordPress menu function (found under the appearances menu), now might be the time to add menu support to your theme. During the week I ...</p>
 ]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve got an older WordPress theme that doesn&#8217;t support the WordPress menu function (found under the appearances menu), now might be the time to add menu support to your theme. During the week I was asked to make changes to a WordPress template that hadn&#8217;t been touched in three years and noticed it didn&#8217;t have menu support. The changes are just as beneficial to me as a designer and developer as they are to a client, so it can pay off to amend an older template and introduce a feature that makes everyone&#8217;s job that bit easier.</p>
<h3>Add Menu Support To Your WordPress Theme</h3>
<p>To add menu support to your WordPress theme, you&#8217;ll need to add the following to your theme&#8217;s functions.php file. The snippet should be added inside your PHP tags.</p>
<p></p><pre class="crayon-plain-tag">add_action( 'init', 'register_custom_menus' );
  function register_custom_menus() {
  register_nav_menus(
   array(
   'primary-menu' =&gt; __( 'Primary Menu' ),
   'secondary-menu' =&gt; __( 'Secondary Menu' )
   )
  );
 }</pre><p></p>
<p>With the snippet added in place, you&#8217;ll need to edit your header.php or footer.php file or wherever you would like the menu to be placed.</p>
<p>Don&#8217;t forget that if your theme supports widgets (which it should, really), that you can create menus anyway and insert them into any widget-ready area using WordPress&#8217; own custom menu widget.</p>
<p>To insert the primary menu into your theme, using the following line wherever you want the menu to appear.</p>
<p></p><pre class="crayon-plain-tag">&lt;?php wp_nav_menu( array( 'theme_location' =&gt; 'primary-menu' ) ); ?&gt;</pre><p></p>
<p>If you already have styles written for your pre-existing menu using older WordPress template calls, it should slot right in nicely. You can register as many menu locations for your theme by adding them to the array in the first snippet. WordPress itself will allow you create as many menus as you need from the Appearance > Menus location. When you&#8217;re finished, assign your menu to a menu location and you&#8217;re good to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://eventmedia.ie/adding-menu-support-to-older-wordpress-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic HTML5 Audio Player Snippet</title>
		<link>http://eventmedia.ie/basic-html5-audio-player-snippet/</link>
		<comments>http://eventmedia.ie/basic-html5-audio-player-snippet/#comments</comments>
		<pubDate>Wed, 18 Apr 2012 10:18:19 +0000</pubDate>
		<dc:creator>Ken McGuire</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[audio player]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[shoutcast]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://eventmedia.ie/?p=409</guid>
		<description><![CDATA[<p>I&#8217;m currently working on a project for radio station KCLR96FM. Their online streaming works a treat through the browser, but is handled with a Flash player. Not so good for those browsing on an iPhone ...</p>
 ]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently working on a project for radio station KCLR96FM. Their online streaming works a treat through the browser, but is handled with a Flash player. Not so good for those browsing on an iPhone that want to get their hands on an audio stream. So, we opted for a basic HTML5 call for audio. When I say basic, I mean basic.</p>
<p></p><pre class="crayon-plain-tag">&lt;audio controls=&quot;controls&quot; autoplay=&quot;true&quot; src=&quot;http://insertyourstreamhere.com:0000/;&quot;&gt;&lt;/audio&gt;</pre><p></p>
<p>This will render a native player for HTML5, adding standard controls for play / pause and will autoplay the stream you specify. If you&#8217;re using a Shoutcast stream notice the semicolon at the end of the stream, found we needed to add it for the stream to render.</p>
<p>If you want to apply your own controls with Javasript, you can leave out the controls parameter and simply run with the audio tags. Note that you do need a closing audio tag as well and don&#8217;t forget your HTML5 doctype declaration.</p>
]]></content:encoded>
			<wfw:commentRss>http://eventmedia.ie/basic-html5-audio-player-snippet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Launching De\Code Magazine</title>
		<link>http://eventmedia.ie/launching-decode-magazine/</link>
		<comments>http://eventmedia.ie/launching-decode-magazine/#comments</comments>
		<pubDate>Tue, 03 Apr 2012 11:04:32 +0000</pubDate>
		<dc:creator>Ken McGuire</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[arts]]></category>
		<category><![CDATA[culture]]></category>
		<category><![CDATA[decode]]></category>
		<category><![CDATA[magazine]]></category>

		<guid isPermaLink="false">http://eventmedia.ie/?p=338</guid>
		<description><![CDATA[<p>Ireland&#8217;s newest and latest arts &#038; culture magazine, De\Code (@wewilldecode) has launched. Check the magazine here on issuu.com. The magazine was originally set to kick off with some 5,000 print copies going for distribution last ...</p>
 ]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" style="width:550px;height:389px" id="f65b2259-779b-d5d6-18f5-c691f989d990" ><param name="movie" value="http://static.issuu.com/webembed/viewers/style1/v2/IssuuReader.swf?mode=mini&amp;backgroundColor=%23222222&amp;documentId=120403101618-e55713cb6a6c432dab64acd617cf7371" /><param name="allowfullscreen" value="true"/><param name="menu" value="false"/><param name="wmode" value="transparent"/><embed src="http://static.issuu.com/webembed/viewers/style1/v2/IssuuReader.swf" type="application/x-shockwave-flash" allowfullscreen="true" menu="false" wmode="transparent" style="width:550px;height:389px" flashvars="mode=mini&amp;backgroundColor=%23222222&amp;documentId=120403101618-e55713cb6a6c432dab64acd617cf7371" /></object></p>
<p>Ireland&#8217;s newest and latest arts &#038; culture magazine, <a href="http://wewilldecode.com" title="De\Code Magazine" target="_blank">De\Code</a> (<a href="http://twitter.com/wewilldecode" title="De\Code Magazine on Twitter" target="_blank">@wewilldecode</a>) has launched. Check the magazine here on issuu.com.</p>
<p>The magazine was originally set to kick off with some 5,000 print copies going for distribution last week and while the print run at the last minute didn&#8217;t work out, the digital format of the magazine has been released, with the print form set to hit shop shelves and stands for the May edition.<span id="more-338"></span></p>
<p>Event Media joined the De\Code crew as production designers for the first edition and we&#8217;re delighted to see the magazine out in the wild, or at least out in PDF format before we get some physical copies in our hands next month. As a note to anyone considering putting out a magazine in the future, you can never underestimate the roles of an editor and sub-editor in a magazine environment, print, digital or otherwise. </p>
<p>In a 36-page first edition you will find a string of Irish and international music reviews, a look at THISISPOPBABY&#8217;s Alice in Funderland, a roundup of Irish food festivals, book reviews, opinion pieces and features to beat the band. James Hendicott and Steve O&#8217;Rourke are at the helm of the magazine and it&#8217;s been great working with the lads to get the first edition of the magazine out the door.</p>
<p>You can read the magazine through the embed above, check <a href="http://wewilldecode.com" title="De\Code Magazine" target="_blank">wewilldecode.com</a>, follow <a href="http://twitter.com/wewilldecode" title="De\Code Magazine on Twitter" target="_blank">@wewilldecode</a> on Twitter or stop by <a href="http://facebook.com/wewilldecode" title="De\Code Magazine on Facebook" target="_blank">Facebook</a> to let the De\Code team know what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://eventmedia.ie/launching-decode-magazine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On Relaunching EventMedia.ie</title>
		<link>http://eventmedia.ie/on-relaunching-eventmedia-ie/</link>
		<comments>http://eventmedia.ie/on-relaunching-eventmedia-ie/#comments</comments>
		<pubDate>Sun, 01 Apr 2012 07:58:21 +0000</pubDate>
		<dc:creator>Ken McGuire</dc:creator>
				<category><![CDATA[Notebook]]></category>
		<category><![CDATA[event media]]></category>
		<category><![CDATA[launch]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://eventmedia.ie/?p=335</guid>
		<description><![CDATA[<p>The doors to the office opened in Kilkenny in 2005. The last time EventMedia.ie had an overhaul would have been late 2009 in the pre-Christmas rush and that was in order to put some seasonal ...</p>
 ]]></description>
			<content:encoded><![CDATA[<p>The doors to the office opened in Kilkenny in 2005.</p>
<p>The last time EventMedia.ie had an overhaul would have been late 2009 in the pre-Christmas rush and that was in order to put some seasonal styling onto the site and give the portfolio a light update.</p>
<p>Flash forward the best part of three years and things have changed, dramatically. Partnerships have been formed, service offerings have expanded, the portfolio continues to grow and I (as in Ken) am delighted to get the new EventMedia.ie up and running.</p>
<p>I could tell you that there are great plans to keep you posted on what we&#8217;re working on both behind the scenes at at launch stage, and I wouldn&#8217;t be wrong. There&#8217;s an editorial calendar the stretches from one end of the office to the other in terms of content we&#8217;ll be releasing on the blog, as well as seven years web design, web development, logo design, advertising, audio and video production portfolio items that will gradually fill the <a href="/showcase/" title="Event Media Client Portfolio" target="_blank">showcase</a> area above.</p>
<p>It&#8217;s the first of April, the first of the month, the first day of a new period of development for Event Media and, delightfully, it&#8217;s no April Fools. </p>
<p>Please do explore the site, the <a href="/showcase/" title="Web Design Portfolio" target="_blank">portfolio</a>, learn <a href="/services/" title="Web Design and Web Development" target="_blank">what we do</a>, read <a href="/blog/" title="Event Media Web Design Blog" target="_blank">the blog posts</a> and if you would like to talk to us about your next web project, <a href="/contact/" title="Contact Event Media" target="_blank">drop us a line</a>. </p>
<p>Now, back to work&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://eventmedia.ie/on-relaunching-eventmedia-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

