<?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>Website Design</title>
	<atom:link href="http://wickedrelevant.com/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://wickedrelevant.com/design</link>
	<description>that&#039;s wicked Relevant</description>
	<lastBuildDate>Tue, 02 Nov 2010 22:41:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to force child categories to use the PARENT category template in Wordpress</title>
		<link>http://wickedrelevant.com/design/wordpress/how-to-force-child-categories-to-use-the-parent-category-template-in-wordpress/</link>
		<comments>http://wickedrelevant.com/design/wordpress/how-to-force-child-categories-to-use-the-parent-category-template-in-wordpress/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 21:48:54 +0000</pubDate>
		<dc:creator>Debbi</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://wickedrelevant.com/design/?p=450</guid>
		<description><![CDATA[After much digging around and trying to find a suitable plugin or PHP if/then statement, I came across a nice little site that did it for me using the functions.php page.
I would love to say I wrote this handy bit of code myself but I did not. Much praise to for the skilled coder at [...]]]></description>
			<content:encoded><![CDATA[<p>After much digging around and trying to find a suitable plugin or PHP if/then statement, I came across a nice little site that did it for me using the functions.php page.</p>
<p>I would love to say I wrote this handy bit of code myself but I did not. Much praise to for the skilled coder at <a href="http://brassblogs.com/contact">brassblogs</a>.</p>
<p>Now, the way to use this is to take the code listed below and add it to your functions file. Or, to make it easier, <a href="http://wickedrelevant.com/design/wp-content/uploads/2010/11/forceChildtoUseParentTemplateFunctions.txt" target="_blank">I&#8217;ve pasted the complete information into this text file</a>.</p>
<p><code>function inherit_template() {<br />
if (is_category()) {<br />
$catid = get_query_var('cat');<br />
if ( file_exists(TEMPLATEPATH .<br />
'/category-' . $catid . '.php') ) {<br />
include( TEMPLATEPATH . '/category-' .<br />
$catid . '.php');<br />
exit;<br />
}</code></p>
<div><code>$cat = &amp;amp;get_category($catid);<br />
$parent = $cat-&amp;gt;category_parent;<br />
while ($parent) {<br />
$cat = &amp;amp;get_category($parent);<br />
if ( file_exists(TEMPLATEPATH<br />
. '/category-' . $cat-&amp;gt;cat_ID . '.php') ) {<br />
include (TEMPLATEPATH<br />
. '/category-' . $cat-&amp;gt;cat_ID . '.php');<br />
exit;<br />
}</code></div>
<div><code>$parent = $cat-&amp;gt;category_parent;<br />
}<br />
}<br />
}</code></div>
<p><code>add_action('template_redirect',<br />
'inherit_template', 1);<br />
</code></p>
<p>After you add that to your functions.php file, you simply need to make a template for EACH PARENT CATEGORY. The child categories will then use the template that their PARENT uses. YEA!</p>
<p>It&#8217;s very easy to make a category template. The simplest way is to take the existing archive.php file in your Wordpress theme and save it as category-ID.php where the ID is the NUMBER of the category. You can check this by going into your wp-admin, clicking on the category and reading the complete URL for the ID= (it will be at the end of the string).</p>
<p>So, if your category is #1, you will make category-1.php. You can style this page in any way you want; you can change link colors, text colors or even make it look completely different from the rest of your Wordpress blog &#8211; it&#8217;s completely up to you!</p>
<p>This will apply to all parent categories that you want to use a special template; simply find the category ID, create the page, name it category-XX.php (where XX is your category ID) and upload it to your theme folder. Or use the sample you can download <a href="http://wickedrelevant.com/design/wp-content/uploads/2010/11/category-xx.txt" target="_blank">here</a>.</p>
<p><em>Again, credit goes to brassblogs.com! Thanks!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://wickedrelevant.com/design/wordpress/how-to-force-child-categories-to-use-the-parent-category-template-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display recent comments on your Wordpress blog</title>
		<link>http://wickedrelevant.com/design/wordpress/display-recent-comments-on-your-wordpress-blog/</link>
		<comments>http://wickedrelevant.com/design/wordpress/display-recent-comments-on-your-wordpress-blog/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 17:39:01 +0000</pubDate>
		<dc:creator>Debbi</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://wickedrelevant.com/design/?p=439</guid>
		<description><![CDATA[Sometimes you want to display a Wordpress feature, such as recent comments, tags, etc., without using a widget. For me, it&#8217;s occassionally easier to STYLE, especially if I&#8217;m not using a Theme that I built or that I&#8217;m familiar with.
A great code around is shown below, courtesy of to Kyle Eslick and found on wprecipes. [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes you want to display a Wordpress feature, such as recent comments, tags, etc., without using a widget. For me, it&#8217;s occassionally easier to STYLE, especially if I&#8217;m not using a Theme that I built or that I&#8217;m familiar with.</p>
<p>A great code around is shown below, courtesy of to Kyle Eslick and found on <a href="http://www.wprecipes.com/how-to-list-most-recent-comments">wprecipes</a>. I&#8217;ve used it on some sites and I find it works great. ONE NOTE: if you want less than 10 comments, simply change the code to a lesser number.</p>
<pre><code>php
  global $wpdb;
  $sql = "SELECT DISTINCT ID, post_title, post_password,
comment_ID, comment_post_ID, comment_author,</code><code>comment_date_gmt,comment_approved,
comment_type,comment_author_url,
SUBSTRING(comment_content,1,30) AS com_excerpt
FROM
$wpdb-&amp;gt;comments LEFT OUTER JOIN $wpdb-&amp;gt;posts ON
 ($wpdb-&amp;gt;comments.comment_post_ID = $wpdb-&amp;gt;posts.ID)
 WHERE comment_approved = '1' AND comment_type = ''
AND post_password = ''
ORDER BY comment_date_gmt DESC LIMIT 10";

  $comments = $wpdb-&amp;gt;get_results($sql);
  $output = $pre_HTML;
  $output .= "\n</code></pre>
<pre>
<ul>";
  foreach ($comments as $comment) {
    $output .= "\n
<li>".strip_tags($comment-&gt;comment_author) .":"
 . "<a href="">ID)."#comment-" . $comment-&gt;comment_ID
. "" title="on ".$comment-&gt;post_title .
""&gt;" . strip_tags($comment-&gt;com_excerpt)."</a>

";
  }
  $output .= "\n</li>
</ul>

";
  $output .= $post_HTML;
  echo $output;</pre>
]]></content:encoded>
			<wfw:commentRss>http://wickedrelevant.com/design/wordpress/display-recent-comments-on-your-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook changes &#8230; again!</title>
		<link>http://wickedrelevant.com/design/blog/facebook-changes-again/</link>
		<comments>http://wickedrelevant.com/design/blog/facebook-changes-again/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 03:57:00 +0000</pubDate>
		<dc:creator>Debbi</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://wickedrelevant.com/design/?p=420</guid>
		<description><![CDATA[Effective August 23rd, well yesterday, there are some major changes to Facebook Fan Pages. Here&#8217;s a quick run down:

The maximum width requirement for fan pages is now 520px.
The boxes tag will be removed

How does this effect you, the Facebook user? If you have a page for your business, you will have to make changes to [...]]]></description>
			<content:encoded><![CDATA[<p>Effective August 23rd, well yesterday, there are some major changes to Facebook Fan Pages. Here&#8217;s a quick run down:</p>
<ol>
<li>The maximum width requirement for fan pages is now 520px.</li>
<li>The boxes tag will be removed</li>
</ol>
<p>How does this effect you, the Facebook user? If you have a page for your business, you will have to make changes to it. During the week of August 23rd, Facebook will automatically be implementing this change. That means that if you have a graphic page layout that is WIDER than the new width of 520 PX it will be truncated or rendered in such a way that it is basically useless.</p>
<p>Take this for example:</p>
<div id="attachment_421" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-421" title="Capture of broken Facebook Fan Page" src="http://wickedrelevant.com/design/wp-content/uploads/2010/08/captureOfChrissyFBPage-300x284.jpg" alt="" width="300" height="284" /><p class="wp-caption-text">I think it&#39;s obvious that the owner of this fan page does NOT want it to look like this...</p></div>
<p>So, let everyone know &#8211; Facebook Fan Pages must now be 520PX wide and no wider &#8211; at least until Facebook decides to change again&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://wickedrelevant.com/design/blog/facebook-changes-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook fan page graphics created</title>
		<link>http://wickedrelevant.com/design/website-work/facebook-fan-page-graphics-created/</link>
		<comments>http://wickedrelevant.com/design/website-work/facebook-fan-page-graphics-created/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 02:55:46 +0000</pubDate>
		<dc:creator>Debbi</dc:creator>
				<category><![CDATA[Facebook Fan Pages]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Website Work]]></category>

		<guid isPermaLink="false">http://wickedrelevant.com/design/?p=414</guid>
		<description><![CDATA[Today, I worked on a new graphic design for an AMAZING client. She is Sandra De Freitas from Wordpress Blog Sites. I have had the wonderful joy of working for her on many projects, including this one.
A new graphic was created for a Facebook Fan Page. (This isn&#8217;t the complete graphic, just a snippet until [...]]]></description>
			<content:encoded><![CDATA[<p>Today, I worked on a new graphic design for an AMAZING client. She is Sandra De Freitas from <a href="http://wpblogsites.com/" target="_blank">Wordpress Blog Sites</a>. I have had the wonderful joy of working for her on many projects, including this one.</p>
<p>A new graphic was created for a Facebook Fan Page. (This isn&#8217;t the complete graphic, just a snippet until I get feedback from the client)</p>
<p><img src="http://wickedrelevant.com/design/wp-content/uploads/2010/08/facebookKathyWPBlogsites-300x214.jpg" alt="" width="300" height="214" /></p>
<p>As you may or may not know, the graphics are created the same but to add the code to Facebook, you must use FBML (that will be another post). So, the graphic is completed &#8211; now I&#8217;m just waiting on approval!</p>
]]></content:encoded>
			<wfw:commentRss>http://wickedrelevant.com/design/website-work/facebook-fan-page-graphics-created/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kawasaki Motorcycle Web Updates</title>
		<link>http://wickedrelevant.com/design/website-work/kawasaki-motorcycle-web-updates/</link>
		<comments>http://wickedrelevant.com/design/website-work/kawasaki-motorcycle-web-updates/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 00:17:46 +0000</pubDate>
		<dc:creator>Debbi</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Website Work]]></category>

		<guid isPermaLink="false">http://wickedrelevant.com/design/?p=403</guid>
		<description><![CDATA[In an effort to show potential clients the BROAD range of skills I have, I am starting a daily &#8216;what I&#8217;m doing&#8217; post.
Today, I had the usual struggle to dive back into work after a week off on the Washington Coast (like to see some pictures, click here). Once I got started, I got quite [...]]]></description>
			<content:encoded><![CDATA[<p>In an effort to show potential clients the BROAD range of skills I have, I am starting a daily &#8216;what I&#8217;m doing&#8217; post.</p>
<p>Today, I had the usual struggle to dive back into work after a week off on the Washington Coast (like to see some pictures, click <a title="Vacation pictures" href="http://www.flickr.com/photos/cimmeronstudios/sets/72157624741191868/" target="_blank">here</a>). Once I got started, I got quite a bit accomplished.</p>
<p>Long-time client, Beartooth Kawasaki (<a href="http://www.beartoothkawasaki.com">www.beartoothkawasaki.com</a>) needed the annual product updates done to their various websites. It takes a bit of time but it&#8217;s enjoyable because I have been doing it for many years.</p>
<div class="wp-caption alignnone" style="width: 310px"><img title="Kawasaki Motorcycle Web Edits" src="http://wickedrelevant.com/design/wp-content/uploads/2010/08/kawasakiMotorcycle.png" alt="" width="300" height="143" /><p class="wp-caption-text">Kawasaki Motorcycle website edits</p></div>
<p>Skills required on this particular job include an understanding and ability to code in PHP, as well as HTML and CSS, image manipulation and attention to detail.</p>
<p>Have a job like this? <a href="http://wickedrelevant.com/design/get-a-quote/">Contact me today to find out how I can help</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://wickedrelevant.com/design/website-work/kawasaki-motorcycle-web-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding thumbnail support to your Wordpress theme</title>
		<link>http://wickedrelevant.com/design/wordpress/adding-thumbnail-support-to-your-wordpress-theme/</link>
		<comments>http://wickedrelevant.com/design/wordpress/adding-thumbnail-support-to-your-wordpress-theme/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 19:25:42 +0000</pubDate>
		<dc:creator>Debbi</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://wickedrelevant.com/design/?p=396</guid>
		<description><![CDATA[Yea Wordpress! Starting in version 2.9, thumbnail support is built into the code, which means that instead of doing all the hard work, Wordpress has done it for you! For the most part anyway&#8230;
It&#8217;s a pretty simple process.
1. Add a line of code to functions.php
add_theme_support('post-thumbnails'); 
2. Define the size of the thumbnails &#8211; you have [...]]]></description>
			<content:encoded><![CDATA[<p>Yea Wordpress! Starting in version 2.9, thumbnail support is built into the code, which means that instead of doing all the hard work, Wordpress has done it for you! For the most part anyway&#8230;</p>
<p>It&#8217;s a pretty simple process.</p>
<p>1. Add a line of code to functions.php</p>
<p><code>add_theme_support('post-thumbnails'); </code></p>
<p>2. Define the size of the thumbnails &#8211; you have a couple options. You can hard crop it, which is what I have done in the example below (add &#8216;true&#8217; to the end of the dimensions), or you can resize the box. Box resizing shrinks an image without distortion until it fits inside the “box” you’ve specified with your dimensions.</p>
<p><code>set_post_thumbnail_size( 100, 100, true ); // 100 pixels wide by 100 pixels tall, hard crop mode</code></p>
<p>Together this will look like:<br />
<code><!--p add_theme_support('post-thumbnails'); set_post_thumbnail_size( 100, 100, true ); // 50 pixels wide by 50 pixels tall, hard crop mode--></code></p>
<p>3. Add the code to your template</p>
<p><code><!--p the_post_thumbnail();--></code></p>
<p>That&#8217;s it! Now when you login to your wp-admin panel scroll down &#8211; on the right side under &#8216;Categories&#8217;:</p>
<p><a href="http://wickedrelevant.com/design/wp-content/uploads/2010/07/Capture.jpg"><img class="alignnone size-full wp-image-399" title="Capture" src="http://wickedrelevant.com/design/wp-content/uploads/2010/07/Capture.jpg" alt="" width="237" height="164" /></a></p>
<p>Click on &#8217;set thumbnail&#8217; and you get this box:</p>
<p><img class="alignnone size-full wp-image-400" title="Capture2" src="http://wickedrelevant.com/design/wp-content/uploads/2010/07/Capture2.jpg" alt="" width="417" height="110" /></p>
<p>Be sure to select &#8216;Use as thumbnail&#8217; and then &#8217;save&#8217;. Then close the window with the X on top right.</p>
<p>Here&#8217;s an example of it used on one of my sites:</p>
<p><img class="alignnone size-full wp-image-401" title="Capture" src="http://wickedrelevant.com/design/wp-content/uploads/2010/07/Capture1.jpg" alt="" width="232" height="278" /></p>
]]></content:encoded>
			<wfw:commentRss>http://wickedrelevant.com/design/wordpress/adding-thumbnail-support-to-your-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protected: Ping time</title>
		<link>http://wickedrelevant.com/design/stuff-to-keep/ping-time/</link>
		<comments>http://wickedrelevant.com/design/stuff-to-keep/ping-time/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 00:04:32 +0000</pubDate>
		<dc:creator>Debbi</dc:creator>
				<category><![CDATA[Stuff to keep]]></category>

		<guid isPermaLink="false">http://wickedrelevant.com/design/?p=392</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://wickedrelevant.com/design/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-392">Password:<br />
<input name="post_password" id="pwbox-392" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://wickedrelevant.com/design/stuff-to-keep/ping-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New season, new design</title>
		<link>http://wickedrelevant.com/design/websites/new-season-new-design/</link>
		<comments>http://wickedrelevant.com/design/websites/new-season-new-design/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 05:45:41 +0000</pubDate>
		<dc:creator>Debbi</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[Blog Skin]]></category>
		<category><![CDATA[Blog Theme]]></category>
		<category><![CDATA[Custom Blog Design]]></category>
		<category><![CDATA[Custom Wordpress Design]]></category>

		<guid isPermaLink="false">http://wickedrelevant.com/design/?p=381</guid>
		<description><![CDATA[It was time for a new design for the Wicked Relevant design blog &#8211; something a little fun with rich, vibrant colors and a bit of a &#8230; well, wicked feel. Enter the new Wordpress theme simply called &#8216;Wicked&#8221;.
All graphics are custom made by me, Debbi Cunnington of Cimmeron Studios, LLC, with the exception of [...]]]></description>
			<content:encoded><![CDATA[<p>It was time for a new design for the Wicked Relevant design blog &#8211; something a little fun with rich, vibrant colors and a bit of a &#8230; well, wicked feel. Enter the new Wordpress theme simply called &#8216;Wicked&#8221;.<span id="more-381"></span></p>
<p>All graphics are custom made by me, Debbi Cunnington of Cimmeron Studios, LLC, with the exception of the vector devil, which was created elsewhere.</p>
<p><a href="http://wickedrelevant.com/design/wp-content/uploads/2010/07/wickedRelevant.png"><img class="alignleft size-large wp-image-388" title="wickedRelevant" src="http://wickedrelevant.com/design/wp-content/uploads/2010/07/wickedRelevant-670x1024.png" alt="" width="469" height="717" /></a></p>
<p>I&#8217;d love to have your feedback on the new blog design and I hope that your summer is wonderful!</p>
]]></content:encoded>
			<wfw:commentRss>http://wickedrelevant.com/design/websites/new-season-new-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display Wordpress Blogroll Links By Category</title>
		<link>http://wickedrelevant.com/design/wordpress/display-wordpress-blogroll-links-by-category/</link>
		<comments>http://wickedrelevant.com/design/wordpress/display-wordpress-blogroll-links-by-category/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 17:47:48 +0000</pubDate>
		<dc:creator>Debbi</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blogroll links]]></category>

		<guid isPermaLink="false">http://wickedrelevant.com/design/?p=363</guid>
		<description><![CDATA[Want to display your blogroll but maybe just a certain CATEGORY only? Such as &#8216;affiliate links&#8217; or &#8216;friends&#8217;&#8230;.
It&#8217;s easy.
1. Locate the category ID number by going into the Link manager in Wordpress and hovering over the category name. That should show you the ID. If that doesn&#8217;t work, click on the category name and the [...]]]></description>
			<content:encoded><![CDATA[<p>Want to display your blogroll but maybe just a certain CATEGORY only? Such as &#8216;affiliate links&#8217; or &#8216;friends&#8217;&#8230;.</p>
<p>It&#8217;s easy.</p>
<p>1. Locate the category ID number by going into the Link manager in Wordpress and hovering over the category name. That should show you the ID. If that doesn&#8217;t work, click on the category name and the ID is the number at the end of the URL.</p>
<p>2. Find the code that displays the bookmarks. It should look like this:</p>
<blockquote>
<pre>&lt;?php wp_list_bookmarks(''); ?&gt;
</pre>
</blockquote>
<p>3. Edit that code to choose the Category ID that you want to display:</p>
<blockquote><p>&lt;?php wp_list_bookmarks(&#8216;category=766&#8242;); ?&gt;</p></blockquote>
<p>That&#8217;s it! </p>
]]></content:encoded>
			<wfw:commentRss>http://wickedrelevant.com/design/wordpress/display-wordpress-blogroll-links-by-category/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make your SUBMIT button an IMAGE using HTML</title>
		<link>http://wickedrelevant.com/design/code-snippets/make-your-submit-button-an-image-using-html/</link>
		<comments>http://wickedrelevant.com/design/code-snippets/make-your-submit-button-an-image-using-html/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 20:08:03 +0000</pubDate>
		<dc:creator>Debbi</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[form tricks]]></category>
		<category><![CDATA[image type]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://wickedrelevant.com/design/?p=340</guid>
		<description><![CDATA[Code snippets
You want to use something a little bit more attractive than the standard &#8216;SUBMIT&#8217; button &#8211; even changing the text to &#8216;PUSH ME NOW&#8217; isn&#8217;t as visually appealing as a nice graphic you&#8217;ve made to match the color and theme of your site. We all know graphics help make a website jump from OKAY [...]]]></description>
			<content:encoded><![CDATA[<h3>Code snippets</h3>
<p>You want to use something a little bit more attractive than the standard &#8216;SUBMIT&#8217; button &#8211; even changing the text to &#8216;PUSH ME NOW&#8217; isn&#8217;t as visually appealing as a nice graphic you&#8217;ve made to match the color and theme of your site. We all know graphics help make a website jump from OKAY to STUNNING! So, how do you do it?<span id="more-340"></span><strong></strong></p>
<p><strong>It&#8217;s simple. Here&#8217;s the code:</strong></p>
<blockquote><p>&lt;input type=&#8221;image&#8221; name=&#8221;cmdSubmit&#8221; alt=&#8221;Submit Form&#8221; src=&#8221;/images/submit.png&#8221; value=&#8221;Submit&#8221;&gt;</p></blockquote>
<p>Simply put that in place of your standard form submit code and you&#8217;re ready to go!</p>
]]></content:encoded>
			<wfw:commentRss>http://wickedrelevant.com/design/code-snippets/make-your-submit-button-an-image-using-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

