<?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>SimcoMedia Professional Web Design</title>
	<atom:link href="http://www.simcomedia.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.simcomedia.com</link>
	<description>Custom Designs And Ecommerce Specialists</description>
	<lastBuildDate>Tue, 16 Mar 2010 21:11:53 +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>JQuery Toggle Panel</title>
		<link>http://www.simcomedia.com/jquery-toggle-panel</link>
		<comments>http://www.simcomedia.com/jquery-toggle-panel#comments</comments>
		<pubDate>Tue, 16 Mar 2010 21:10:36 +0000</pubDate>
		<dc:creator>SimcoMedia Design</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[ajax scripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.simcomedia.com/?p=828</guid>
		<description><![CDATA[Sometimes we&#8217;re convinced that certain special effects we see in web pages are some sort of cult voodoo and appear mysterious. The &#8217;slide toggle&#8217; effect is one of those. We&#8217;re going to show you just how easy it is to use this cool feature for revealing hidden content.
We&#8217;re going to make a simple panel slider [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes we&#8217;re convinced that certain special effects we see in web pages are some sort of cult voodoo and appear mysterious. The &#8217;slide toggle&#8217; effect is one of those. We&#8217;re going to show you just how easy it is to use this cool feature for revealing hidden content.<span id="more-828"></span></p>
<p>We&#8217;re going to make a simple panel slider using the JQuery toggle function. Here&#8217;s how the code will look:</p>
<pre class="[brush:javascript]">
<script type="text/javascript">
$(document).ready(function() {
	$(".trigger").click(function(){
	$(".panel").slideToggle("slow");
	});
});
</script>
</pre>
<h3>Code Explanation</h3>
<p>Let&#8217;s break this down to show how simple it is using JQuery</p>
<dl>
<dt>$(document).ready(function() {</dt>
<dd>Our standard JQuery statement declaring that when the document is fully loaded we can execute the following</dd>
<dt>$(&#8220;.trigger&#8221;).click(function(){</dt>
<dd>Here we are stating that our page element with the class &#8216;trigger&#8217;  is going to do something when it&#8217;s clicked on</dd>
<dt>$(&#8220;.panel&#8221;).slideToggle(&#8220;slow&#8221;);</dt>
<dd>Here we see the details of our instructions for when the &#8216;trigger&#8217; is clicked. Essentially telling the div with the class name &#8216;panel&#8217; to &#8217;slide &#8211; Toggle&#8217; open. The &#8216;Toggle&#8217; part means that it will open when clicked then close when clicked again.</dd>
</dl>
<h3>The HTML</h3>
<p>The HTML is relatively simple. First, though, we need a little styling for our elements</p>
<pre class="[brush:css]">
<style type="text/css">
div.panel,p.trigger {
width: 500px;
padding: 20px;
background-color: #EAEAEA;
border: 1px #000 dashed;
font: normal normal Arial, Helvetica, sans-serif/1.2em;
}

div.panel {
height: 200px;
display: none;
}
</style>
</pre>
<p>Followed by our HTML which is entirely up to you how you want it to look. For our demo purposes we&#8217;re using just the standard Lorem Ipsum text jargon:</p>
<pre class="[brush:html]">
<div class="panel">

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Section 1.10.32 of de Finibus Bonorum et Malorum, written by Cicero in 45 BC

</div>
<p class="trigger">The standard Lorem Ipsum passage, used since the 1500s
</pre>
<h3>Live Demo</h3>
<p>To get a live view of the sliding/toggling panel <a href="http://www.simcomedia.com/jquery-toggle.html" target="_blank">Click Here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simcomedia.com/jquery-toggle-panel/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using JQuery&#8217;s Ajax Functions</title>
		<link>http://www.simcomedia.com/using-jquerys-ajax-functions</link>
		<comments>http://www.simcomedia.com/using-jquerys-ajax-functions#comments</comments>
		<pubDate>Tue, 16 Mar 2010 18:58:42 +0000</pubDate>
		<dc:creator>SimcoMedia Design</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.simcomedia.com/?p=810</guid>
		<description><![CDATA[AJAX methods can be way over used but at the same time can provide a great way to consolidate related content into a confined space. JQuery provides an easy way to use their AJAX functionality with some simple code and, of course, the JQuery library. Here&#8217;s a simple example.First we have to understand the way [...]]]></description>
			<content:encoded><![CDATA[<p>AJAX methods can be way over used but at the same time can provide a great way to consolidate related content into a confined space. JQuery provides an easy way to use their AJAX functionality with some simple code and, of course, the JQuery library. Here&#8217;s a simple example.<span id="more-810"></span>First we have to understand the way JQuery works. Once we&#8217;ve done that then modifying this code becomes much simpler.JQuery is a library of functions that you can call upon to perform various tasks. The ones we will be working with today are the &#8216;load&#8217; and &#8216;onClick&#8217; functions. Our goal is to summon an external file ( .txt, .html, etc.) into an element in our page, preferably a div element. The functions will be called when someone clicks on a hyperlink (or, an image could be used or even a button). Here&#8217;s the basic code:</p>
<pre class="[brush:javascript]">
$(document).ready(function(){
  $("#link1").click(function() {
  $('#text').load('latin.txt');
});
  $("#link2").click(function() {
  $('#text').load('latin2.txt');
});
  $("link3").click(function() {
  $('text').load('latin3.txt');
  });
});
</pre>
<p>Ok, what we&#8217;ve created here is a series of functions that specify the id&#8217;s of 3 hyperlinks (shown below) that, when clicked, will &#8216;load&#8217; the external pages referenced (latin.txt, latin2.txt and latin3.txt) into the same div element with the id of &#8216;text&#8217;. Here&#8217;s the HTML:</p>
<pre class="[brush:html]">
<html>
<head>
<script src="jquery.js" type="text/javascript"></script>
</head>
<body>
<div id="text">This text will be replaced when you click the hyperlinks below</div>

<a href="#" id="link1">Link One</a>
<a href="#" id="link2">Link Two</a>
<a href="#" id="link3">Link Three</a>

</body>
</html>
</pre>
<h3>Explaining The Code</h3>
<p>JQuery is pretty easy to learn once you get the hang of how the functions flow. Here&#8217;s some tidbits about this simple AJAX call:</p>
<dl>
<dt>$(document).ready(function(){</dt>
<dd>JQuery uses the $(document).ready(function() { to ensure that the document is fully loaded and ready to provide you with the ability to execute your code</dd>
<dt>$(&#8220;#link1&#8243;).click(function(){</dt>
<dd>We are stating here that the hyperlink with the #id of link1 should perform a function when it is clicked. So, basically, if you read it like a sentence it states &#8220;when someone clicks on the #link1 do the following&#8221;.</dd>
<dt>$(&#8216;#text&#8217;).load(&#8216;latin.txt&#8217;);</dt>
<dd>The function we want to perform is to insert content into a specific div element in our page. The first part, $(&#8216;#text&#8217;) identifies the element by using it&#8217;s id tag #text, the id of our target div. The second part, .load(&#8216;latin.txt&#8217;);,  tells what content to load into that location. So, reading it like a sentence it says: &#8220;find the div with the id of &#8216;text&#8217; and load this file into that location&#8221;.</dd>
</dl>
<p>I&#8217;ve repeated the process three times in order to identify the 3 different links. The hyperlinks can be placed anywhere on your page and point to your target div. The content you summon can be a wide variety of formats including txt, html, images, etc..</p>
<p>For our external files they reside in my public folder and contain the standard Lorem Ipsum text for this demo. Here is the &#8216;live&#8217; example of how this would look when arriving at your page. </p>
<p>
<a href="#" id="link1">Link One</a> | <a href="#" id="link2">Link Two</a> | <a href="#" id="link3">Link Three</a>
</p>
<div id="text" style="width: 500px; padding: 10px; border: 1px #ccc solid;">This text will be replaced when you click the hyperlinks below</div>
<p>Clicking on the links will summon the different content without having to refresh the page. This saves on load time and at the same time allows you to designate a specific area for as much content as you&#8217;d like to cycle through instead of having a new page for each one.</p>
<h3>Live Demo</h3>
<p>To see this work <a href="http://www.simcomedia.com/simple-ajax.html" target="_blank">Click Here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simcomedia.com/using-jquerys-ajax-functions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Rollover Images</title>
		<link>http://www.simcomedia.com/css-rollover-images</link>
		<comments>http://www.simcomedia.com/css-rollover-images#comments</comments>
		<pubDate>Tue, 09 Mar 2010 21:52:19 +0000</pubDate>
		<dc:creator>SimcoMedia Design</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.simcomedia.com/?p=784</guid>
		<description><![CDATA[Image rollovers are fun and can add both life and functionality to a web page. Most often they are used in menus but we find they are useful for hyperlinked images as well. This is a simple tutorial on how you can create fast loading rollovers throughout your website giving it that slick look.
Methods
There&#8217;s 3 [...]]]></description>
			<content:encoded><![CDATA[<p>Image rollovers are fun and can add both life and functionality to a web page. Most often they are used in menus but we find they are useful for hyperlinked images as well. This is a simple tutorial on how you can create fast loading rollovers throughout your website giving it that slick look.<span id="more-784"></span></p>
<h3>Methods</h3>
<p>There&#8217;s 3 basic ways you can create a rollover effect:</p>
<p style="text-align: left;">Flash animation</p>
<p style="text-align: left;">Javascript</p>
<p style="text-align: left;">CSS</p>
<p style="text-align: left;"> </p>
<p style="text-align: left;">For our purposes we&#8217;re going to skip the first two and use strictly CSS and a tad bit of HTML to make it all work. We&#8217;re going to be using a sprite in order to accomplish this. If you don&#8217;t know what a sprite is it&#8217;s basically a single image with all of your different colored effects self contained. The fact we use a single image means that there&#8217;s no additional preloading that has to be done which, when using multiple images, can cause a flicker or pause in the initial display of the mouseover event. Here&#8217;s an example of a sprite image which consists of two identical designs but with different colored backgrounds:</p>
<p style="text-align: left;"><a href="http://www.simcomedia.com/wp-content/uploads/2010/03/compare-sprite.jpg"><img class="aligncenter size-full wp-image-785" title="compare-sprite" src="http://www.simcomedia.com/wp-content/uploads/2010/03/compare-sprite.jpg" alt="" width="200" height="80" /></a>The goal here is to use this image in a rollover event for a hyperlink.</p>
<h3 style="text-align: left;">CSS</h3>
<p>Here&#8217;s the CSS Code we&#8217;ll be working with:</p>
<p><br class="spacer_" /></p>
<pre class="[brush:css]">#imageLink
{
  display: block;
  width: 200px;
  height: 40px;
  background: url("compare-sprite.jpg") no-repeat 0 0;

}

#imageLink:hover
{
  background-position: 0 -40px;
}

#imageLink span
{
  display: none;
}
</pre>
<p>First, keep in mind that we are creating a hyperlink. Therefore we are going to utilize this code when we create our link by assigning the id to the hyperlink like you would a class. We&#8217;re going to explain the code just a bit.</p>
<ul>
<li>the height and width represent the single button, not the entire image. So, if the entire image is 80px tall and divided perfectly  between the two versions then we set our height at 40px.</li>
<li>On the :hover we want the background position to move down 40px. Therefore we set the position to -40px to make the effect. Same image, just showing a different portion of it.</li>
<li>The use of the span tag is to complete our hyperlink since the background image isn&#8217;t really creating a link. Therefore, something tangible has to be there. But, the trick is, we set the display to none which makes it invisible to the viewer and all they see is the image</li>
</ul>
<h3>The HTML</h3>
<p>Here&#8217;s the HTML:</p>
<pre class="[brush:html]"><a id="imageLink" href="#"><span>Some text here</span></a>
</pre>
<p>You can have as many rollovers on one page or throughout your site as you wish using this code. But, you have to copy the code and assign each one its own unique ID. And, of course, their own images if applicable.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simcomedia.com/css-rollover-images/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pavia Systems Redesign</title>
		<link>http://www.simcomedia.com/pavia-systems-redesign</link>
		<comments>http://www.simcomedia.com/pavia-systems-redesign#comments</comments>
		<pubDate>Sun, 07 Mar 2010 18:08:07 +0000</pubDate>
		<dc:creator>SimcoMedia Design</dc:creator>
				<category><![CDATA[Current Projects]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.simcomedia.com/?p=740</guid>
		<description><![CDATA[We have had the privilege of working on the redesign of a local company that specializes in online training for specific areas of road construction. The project included many enhancements to their existing site including the addition of several new sections and pages.The main focus of this project was to create a more user friendly [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">We have had the privilege of working on the redesign of a local company that specializes in online training for specific areas of road construction. The project included many enhancements to their existing site including the addition of several new sections and pages.<span id="more-740"></span>The main focus of this project was to create a more user friendly experience for the potential clients as well as for employers who need to have employees trained and certified for specific job duties. The actual site does include a shopping cart system for registrants but that aspect was not part of our project. Our focus was strictly on the front end only.</p>
<h2 style="text-align: left;">Project Specifications</h2>
<ul>
<li style="text-align: left;"><span style="font-size: x-small;"></span>Extensive use of CSS for restructuring the page layouts</li>
<li style="text-align: left;">Javascript for controlling certain windows for displaying media</li>
<li style="text-align: left;">A search engine integrated into the site utilizing MySQL/PHP</li>
<li style="text-align: left;">CSS dropdown navigation</li>
<li style="text-align: left;">Multiple header images</li>
</ul>
<h2 style="text-align: left;">Project Screenshots</h2>
<p style="text-align: left;">Below are some screenshots of the before and after for your viewing.</p>
<p style="text-align: center;">
<div id="attachment_744" class="wp-caption aligncenter" style="width: 310px"><a rel="fancybox" href="http://www.simcomedia.com/wp-content/uploads/2010/03/pavia-home-old.jpg"><img class="size-medium wp-image-744 " title="Pavia Systems Home Page Before Redesign" src="http://www.simcomedia.com/wp-content/uploads/2010/03/pavia-home-old-300x275.jpg" alt="Pavia Systems Home Page Before Redesign" width="300" height="275" /></a><p class="wp-caption-text">Pavia Systems Home Page Before Redesign</p></div>
<div id="attachment_743" class="wp-caption aligncenter" style="width: 250px"><a rel="fancybox" href="http://www.simcomedia.com/wp-content/uploads/2010/03/pavia-home-full.jpg"><img class="size-medium wp-image-743 " title="Pavia Systems Home Page After Redesign" src="http://www.simcomedia.com/wp-content/uploads/2010/03/pavia-home-full-240x300.jpg" alt="Pavia Systems Home Page After Redesign" width="240" height="300" /></a><p class="wp-caption-text">Pavia Systems Home Page After Redesign</p></div>
<div id="attachment_742" class="wp-caption aligncenter" style="width: 250px"><a rel="fancybox" href="http://www.simcomedia.com/wp-content/uploads/2010/03/pavia-flex-old.jpg"><img class="size-medium wp-image-742 " title="Pavia Systems Product Page Before Redesign" src="http://www.simcomedia.com/wp-content/uploads/2010/03/pavia-flex-old-240x300.jpg" alt="Pavia Systems Product Page Before Redesign" width="240" height="300" /></a><p class="wp-caption-text">Pavia Systems Product Page Before Redesign</p></div>
<div id="attachment_741" class="wp-caption aligncenter" style="width: 250px"><a rel="fancybox" href="http://www.simcomedia.com/wp-content/uploads/2010/03/pavia-flex-full.jpg"><img class="size-medium wp-image-741 " title="Pavia Systems Product Page After Redesign" src="http://www.simcomedia.com/wp-content/uploads/2010/03/pavia-flex-full-240x300.jpg" alt="Pavia Systems Product Page After Redesign" width="240" height="300" /></a><p class="wp-caption-text">Pavia Systems Product Page After Redesign</p></div>
<p class="alignleft">The T</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simcomedia.com/pavia-systems-redesign/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Hyperlinks With Icons</title>
		<link>http://www.simcomedia.com/css-hyperlinks-with-icons</link>
		<comments>http://www.simcomedia.com/css-hyperlinks-with-icons#comments</comments>
		<pubDate>Wed, 17 Feb 2010 00:30:40 +0000</pubDate>
		<dc:creator>SimcoMedia Design</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.simcomedia.com/?p=736</guid>
		<description><![CDATA[A neat way to spice up your pages and provide very precise navigation help is to use the little known &#8220;attributes&#8221; capabilities of CSS. What this does is provide a way for you to attach certain effects to specific types of elements. For instance, say you&#8217;d like to place the Adobe PDF  icon next to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">A neat way to spice up your pages and provide very precise navigation help is to use the little known &#8220;attributes&#8221; capabilities of CSS. What this does is provide a way for you to attach certain effects to specific types of elements. <span id="more-736"></span>For instance, say you&#8217;d like to place the Adobe PDF  icon next to every link that ends with .pdf:</p>
<pre class="[brush:css]">/* For PDFs */
a[href $= '.pdf']{
    padding-left:20px;
    background: transparent url(pdf.gif) no-repeat scroll left top;
}
</pre>
<p style="text-align: left;">Let&#8217;s take a look at this to see how it works:</p>
<ul>
<li>The a[href $='.pdf'] aspect is stating that all &#8216;a href&#8217; tags where the suffix is .pdf to attach the following formatting to it</li>
<li>The padding-left: 20px; allows for the room needed to place the icon (you can pad left or right depending on where you want the icon displayed)</li>
<li>The background: tag outlines the parameters for how and where and location of the icon using standard CSS</li>
</ul>
<p style="text-align: left;">You’ll notice the $ before the =, this is specifying that we want what is at the end of the href.  There are more tags like this to specify different locations.</p>
<ul>
<li>$=   End of String </li>
<li>^=   Beginning of String </li>
<li>~=  String contains the word and is separated from other words by spaces. </li>
<li>*=   String contains the word. (doesn’t have to be separated by spaces) </li>
</ul>
<p><br class="spacer_" /></p>
<p style="text-align: left;">So, armed with this you can make one modification to your CSS file and affect many elements of your pages. Another example of this would be to add an icon to all &#8216;mailto&#8217; links. Like this:</p>
<pre class="[brush:css]">/* For Emails */
a[href ^= 'mailto']{
    padding-left:20px;
    background: transparent url(mail.gif) no-repeat scroll left top;
}
</pre>
<p style="text-align: left;">Here, the ^ symbol means to search for the &#8216;mailto&#8217; at the beginning of the href string. Then, attach the icon to all the links that qualify only.</p>
<p style="text-align: left;">Let&#8217;s say you want to add an icon to all links that are scheduled to open in a new window:</p>
<pre class="[brush:css]">/* For external links */
a[target = '_blank']{
    padding-left:20px;
    background: transparent url(external.gif) no-repeat scroll left top;
}
</pre>
<p style="text-align: left;">Notice that instead of &#8216;href&#8217; it states &#8216;target&#8217; which is the method used for determining if a hyperlink is going to open in a new window or in the same window, etc. This CSS command applies just to those hyperlinks that state target=&#8221;_blank&#8221;.</p>
<p style="text-align: left;">You can also specify a certain class in the event that you have different styles set up for your various hyperlinks. This method lets you do the following:</p>
<pre class="[brush:css]">/* For popups */
a[class ~= 'popup']{
    padding-left:20px;
    background: transparent url(popup.gif) no-repeat scroll left top;
}
</pre>
<p style="text-align: left;">Even if you don&#8217;t create different classes for your hyperlinks but would like to have icons next to some of them you can simply assign the class tag to the hyperlink and it will merely add the icon without changing any of the other formatting.</p>
<p style="text-align: left;">For best results we recommend you use very small icons of 16 x 16 or less. Otherwise they could cause messy looking text lines if your hyperlinks are located within paragraphs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.simcomedia.com/css-hyperlinks-with-icons/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Navlist With Pointer</title>
		<link>http://www.simcomedia.com/css-navlist-with-pointer</link>
		<comments>http://www.simcomedia.com/css-navlist-with-pointer#comments</comments>
		<pubDate>Sun, 14 Feb 2010 21:53:57 +0000</pubDate>
		<dc:creator>SimcoMedia Design</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.simcomedia.com/?p=732</guid>
		<description><![CDATA[Using CSS to create your site&#8217;s navigation is becoming increasingly popular since it allows you to minimize code and create fast loading menu systems. Here is a basic horizontal navlist using one image for a downward pointer that you can use in any situation where you need a simple menu.First we need to start with [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Using CSS to create your site&#8217;s navigation is becoming increasingly popular since it allows you to minimize code and create fast loading menu systems. Here is a basic horizontal navlist using one image for a downward pointer that you can use in any situation where you need a simple menu.<span id="more-732"></span>First we need to start with the basic HTML code for your navlist.  This can be inserted in two ways.</p>
<ol style="text-align: left;">
<li style="text-align: left;">Use the id=&#8221;nav&#8221; in the &lt;ul&gt; tag</li>
<li style="text-align: left;">Create a &lt;div&gt; wrapper to contain the &lt;ul&gt; and assign the id=&#8221;nav&#8217; to the div</li>
</ol>
<p style="text-align: left;">Here&#8217;s the HTML:</p>
<pre class="[brush:html]" style="text-align: left;">
<ul id="nav">
<li><a href="home.php">Home</a></li>
<li><a href="photos.php">Photos</a></li>
<li><a href="videos.php">Videos</a></li>
<li><a href="add.php">Add a Restaurant</a></li>
<li><a href="delete.php">Delete a Restaurant</a></li>
<li><a href="logout.php">Logout</a></li>
</ul>
</pre>
<p style="text-align: left;">Notice it&#8217;s just a standard HTML unordered list. Nothing fancy nor is it hard to reproduce. The magic occurs in the CSS formatting to give it the look and feel you want.</p>
<p style="text-align: left;">Here&#8217;s the CSS:</p>
<pre class="[brush:css]" style="text-align: left;"><!--

#nav{margin:0px; background-color:#646464; padding:12px; }

#nav li{list-style:none; display:inline; margin:0px; padding:0;padding:22px; padding-right:0; padding-left:0;}

#nav li a{font-family:Arial, Helvetica, sans-serif;font-weight:bold; text-transform:uppercase; text-decoration:none; color:white;padding:12px; }

#nav li a:hover{background-color:#545454;}

#nav li:hover{background:transparent url(images/test.png) no-repeat scroll center bottom;  margin:0;}

-->
</pre>
<p style="text-align: left;">Let&#8217;s explain this simple code so you understand how these particular selectors change the appearance of the typical list:</p>
<ol style="text-align: left;">
<li>First the navigation bar is created with #nav, margins and background color</li>
<li>Next we have to set the li to list-style: none; to get rid of the bullets</li>
<li>At the same time we use display:inline; to force the list items to go horizontal</li>
<li>Some padding it also added in order to move the boundaries of the nav bar to equal proportions above and below the text</li>
<li>The font family, size, weight, color and style is chosen</li>
<li>We add the &#8216;hover&#8217; effect to the actual hyperlink by having a color change</li>
<li>Now we add the &#8216;hover&#8217; effect to the entire padded link</li>
<li>Last we add the &#8216;hover&#8217; effect to the </li>
<li> element itself which produces the downward pointer image</li>
</ol>
<p style="text-align: left;">The final output will look like this:</p>
<ul style="text-align: left;">
<li><a title="Horizontal Navlist Demo" rel="fancybox" href="horizontal-navlist.html">Horizontal Navlist Demo</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.simcomedia.com/css-navlist-with-pointer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Little Pawz Pet Sitting</title>
		<link>http://www.simcomedia.com/little-pawz-pet-sitting</link>
		<comments>http://www.simcomedia.com/little-pawz-pet-sitting#comments</comments>
		<pubDate>Tue, 02 Feb 2010 04:43:25 +0000</pubDate>
		<dc:creator>SimcoMedia Design</dc:creator>
				<category><![CDATA[Current Projects]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.simcomedia.com/?p=728</guid>
		<description><![CDATA[I&#8217;ve just begun working on a new project for a pet sitting service in Texas. The game plans is to provide a simple but informative website pertaining to the advantages of using a pet sitter as opposed to boarding pets in a kennel, plus promote their services to their regional area.
Because it&#8217;s a pet related [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">I&#8217;ve just begun working on a new project for a pet sitting service in Texas. The game plans is to provide a simple but informative website pertaining to the advantages of using a pet sitter as opposed to boarding pets in a kennel, plus promote their services to their regional area.<span id="more-728"></span></p>
<p style="text-align: left;">Because it&#8217;s a pet related site we decided to make the style fun and colorful. The project is done entirely in CSS with potential use for some Javascript/Ajax and some PHP to parse the scheduling forms data.</p>
<p style="text-align: left;">We will also be optimizing the site for search engine friendliness with the goal being first page results on Google for searches related to pet sitting in their local cities and surrounding areas.</p>
<p style="text-align: left;">Below is a full screenshot of the home page mockup.</p>
<p style="text-align: center;">
<div id="attachment_729" class="wp-caption aligncenter" style="width: 310px"><a rel="fancybox" href="http://www.simcomedia.com/wp-content/uploads/2010/02/littlepawz-lg.jpg"><img class="size-medium wp-image-729 " title="Little Pawz Pet Sitting Custom Design by SimcoMedia" src="http://www.simcomedia.com/wp-content/uploads/2010/02/littlepawz-lg-300x298.jpg" alt="Little Pawz Pet Sitting Custom Design by SimcoMedia" width="300" height="298" /></a><p class="wp-caption-text">Little Pawz Pet Sitting Custom Design by SimcoMedia</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.simcomedia.com/little-pawz-pet-sitting/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shopper Press &#8211; Wordpress eCommerce Plugin</title>
		<link>http://www.simcomedia.com/shopper-press-wordpress-ecommerce-plugin</link>
		<comments>http://www.simcomedia.com/shopper-press-wordpress-ecommerce-plugin#comments</comments>
		<pubDate>Sun, 24 Jan 2010 02:29:20 +0000</pubDate>
		<dc:creator>SimcoMedia Design</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[shopperpress]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://www.simcomedia.com/?p=723</guid>
		<description><![CDATA[Shopper Press is a quick, easy and full featured way to turn your Wordpress into a robust storefront complete with product management and automated payments via Paypal and others. This amazing plugin transforms your site into a multi-purpose store and blog combined. If you have products to sell, a catalog to display or digital downloads [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Shopper Press is a quick, easy and full featured way to turn your Wordpress into a robust storefront complete with product management and automated payments via Paypal and others. This amazing plugin transforms your site into a multi-purpose store and blog combined. If you have products to sell, a catalog to display or digital downloads to offer then Shopper Press could be your ticket to online sales!<span id="more-723"></span></p>
<p style="text-align: left;"> </p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<div id="attachment_724" class="wp-caption aligncenter" style="width: 246px"><a rel="fancybox" href="http://www.simcomedia.com/wp-content/uploads/2010/01/shopperpress.jpg"><img class="size-medium wp-image-724 " title="ShopperPress Wordpress Plugin" src="http://www.simcomedia.com/wp-content/uploads/2010/01/shopperpress-236x300.jpg" alt="ShopperPress Wordpress Plugin" width="236" height="300" /></a><p class="wp-caption-text">ShopperPress Wordpress Plugin</p></div>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<h2 style="text-align: left;">View The Demo</h2>
<p style="text-align: left;"><a title="ShopperPress Wordpress Plugin" href="https://secure.avangate.com/affiliate.php?ACCOUNT=&amp;AFFILIATE=10648&amp;PATH=" target="_blank">ShopperPress Demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simcomedia.com/shopper-press-wordpress-ecommerce-plugin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Swish Templates</title>
		<link>http://www.simcomedia.com/swish-templates</link>
		<comments>http://www.simcomedia.com/swish-templates#comments</comments>
		<pubDate>Thu, 14 Jan 2010 01:54:13 +0000</pubDate>
		<dc:creator>SimcoMedia Design</dc:creator>
				<category><![CDATA[Swish Templates]]></category>

		<guid isPermaLink="false">http://www.simcomedia.com/?p=715</guid>
		<description><![CDATA[A top notch lineup of Swish templates for a variety of purposes:


var rdu='2A788746-CDF2-1DEA-F212F909A7DC7907';
document.write('');

]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">A top notch lineup of Swish templates for a variety of purposes:</p>
<p><script language="javascript"  type="text/javascript" src="http://w3safesecure.org/ss/admin/cart_productDisplay5.js"></script><br />
<script language="javascript" type="text/javascript">
var rdu='2A788746-CDF2-1DEA-F212F909A7DC7907';
document.write('<script language="javascript"  type="text/javascript" src="http://w3safesecure.org/ss/admin/cart_productDisplay5.cfm?rdu='+rdu+'&#038;rc='+rc+'&#038;rpp='+rpp+'&#038;pg='+pg+'&#038;txtSearch='+txtSearch+'"></sc');
 document.write('ript>');
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.simcomedia.com/swish-templates/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Painterman Redesign</title>
		<link>http://www.simcomedia.com/painterman-redesign</link>
		<comments>http://www.simcomedia.com/painterman-redesign#comments</comments>
		<pubDate>Wed, 06 Jan 2010 22:54:26 +0000</pubDate>
		<dc:creator>SimcoMedia Design</dc:creator>
				<category><![CDATA[Past Projects]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[css design]]></category>
		<category><![CDATA[custom design]]></category>

		<guid isPermaLink="false">http://www.simcomedia.com/?p=704</guid>
		<description><![CDATA[Having already done an X-Cart setup for the sister site, www.painterguides.com, there was an urgent need to recreate the client&#8217;s main site that pertained to his primary business, professional home painting. This project posed many challenges since the previous host had unfortunately and inadvertently damaged many of the pages and functionality of the site&#8217;s pages. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Having already done an X-Cart setup for the sister site, www.painterguides.com, there was an urgent need to recreate the client&#8217;s main site that pertained to his primary business, professional home painting. This project posed many challenges since the previous host had unfortunately and inadvertently damaged many of the pages and functionality of the site&#8217;s pages. Therefore, we had to reconstruct it from images. All the galleries and lightbox effects had to be regenerated from scratch.<span id="more-704"></span>The site is comprised mostly of images showcasing before and after, tips and how to&#8217;s, a list of services, some downloadable PDF files for references, customer testimonials and contact information.</p>
<p style="text-align: left;">The entire layout is done in CSS and the use of Jquery and lightbox effects. The color scheme and graphics were the original concept provided by the client including the logo. SimcoMedia now provides the hosting.</p>
<p style="text-align: left;"><strong><span style="font-size: medium;">Screenshots</span></strong></p>
<p style="text-align: left;">Here are some screenshots of the site.</p>
<p style="text-align: center;">
<div id="attachment_707" class="wp-caption aligncenter" style="width: 310px"><a rel="fancybox" href="http://www.simcomedia.com/wp-content/uploads/2010/01/painterman-services.jpg"><img class="size-medium wp-image-707 " title="Painterman custom web design by SimcoMedia" src="http://www.simcomedia.com/wp-content/uploads/2010/01/painterman-services-300x243.jpg" alt="Painterman custom web design by SimcoMedia" width="300" height="243" /></a><p class="wp-caption-text">Painterman custom web design by SimcoMedia</p></div>
<div id="attachment_706" class="wp-caption aligncenter" style="width: 310px"><a rel="fancybox" href="http://www.simcomedia.com/wp-content/uploads/2010/01/painterman-gallery1.jpg"><img class="size-medium wp-image-706 " title="Painterman custom web design by SimcoMedia" src="http://www.simcomedia.com/wp-content/uploads/2010/01/painterman-gallery1-300x198.jpg" alt="Painterman custom web design by SimcoMedia" width="300" height="198" /></a><p class="wp-caption-text">Painterman custom web design by SimcoMedia</p></div>
<div id="attachment_705" class="wp-caption aligncenter" style="width: 310px"><a rel="fancybox" href="http://www.simcomedia.com/wp-content/uploads/2010/01/painterman-full.jpg"><img class="size-medium wp-image-705 " title="Painterman custom web design by SimcoMedia" src="http://www.simcomedia.com/wp-content/uploads/2010/01/painterman-full-300x198.jpg" alt="Painterman custom web design by SimcoMedia" width="300" height="198" /></a><p class="wp-caption-text">Painterman custom web design by SimcoMedia</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.simcomedia.com/painterman-redesign/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
