<?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>Scott Lassiter Design &#187; web design</title>
	<atom:link href="http://scottlassiter.com/blog/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://scottlassiter.com/blog</link>
	<description>Web design, Graphic Design, technology, thoughts, and ideas</description>
	<lastBuildDate>Thu, 26 Aug 2010 15:32:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>CSS Classes and IDs</title>
		<link>http://scottlassiter.com/blog/css/css-classes-and-ids/</link>
		<comments>http://scottlassiter.com/blog/css/css-classes-and-ids/#comments</comments>
		<pubDate>Mon, 03 May 2010 18:29:28 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[classes vs IDS]]></category>
		<category><![CDATA[CSS Classes]]></category>
		<category><![CDATA[CSS styles]]></category>
		<category><![CDATA[CSSIDs]]></category>
		<category><![CDATA[front end coding]]></category>
		<category><![CDATA[HTML styling]]></category>
		<category><![CDATA[IDs Vs. Classes]]></category>
		<category><![CDATA[nested styles]]></category>
		<category><![CDATA[nesting]]></category>
		<category><![CDATA[style sheets]]></category>

		<guid isPermaLink="false">http://scottlassiter.com/blog/?p=204</guid>
		<description><![CDATA[CSS classes and IDs can be a very confusing subject indeed. The question seems to arise when do you use an ID and when do you use a class? For starters, for those of you that do not know what makes a style in CSS a class and what makes it an ID, the class [...]]]></description>
			<content:encoded><![CDATA[<p>CSS classes and IDs can be a very confusing subject indeed. The question seems to arise when do you use an ID and when do you use a class? For starters, for those of you that do not know what makes a style in CSS a class and what makes it an ID, the class always starts with a period. Classes and IDs are not intentionally saved for anything specific. Anything can either be a class or an ID, it just depends how you want to organize your CSS. Some web designers never use classes and only IDs, some designers only use IDs. By using both classes and IDs in an organized fashion, designers can really make their code flow well and make a site that is easier to change and adapt in the future. </p>
<p><pre><code>.someClass {

}</code></pre></p>
<p>The ID style type always startes with a number sign.</p>
<p><pre><code>#someID {

}</code></pre></p>
<p>So, when should I use a class over an ID or an ID over a class? In my opinion IDs are saved for those styles that are more or less for large unchanging items in your site that are at a higher level of importance such as headers, navigational, and footer DIVs. Containing DIVs are are a great place to use IDs also. The IDs act as the sound structure of the CSS, things that you would never want to change, or take great care in changing. Think of them as being part of a frame of a house, the plumbing, or the electrical box. These are things that you do not  want to change if at all possible down the road.</p>
<p>Classes are best suited for content styling that may have to be repeated several times. For example, a paragraphi style would be a good place for a class over an ID. Classes are also great for nesting. Nesting of styles is basically the act of placing a style within a style. Lets say you have a style called Heading1. This style might be a large red header that shows up on the top of pages. You might want to create a heading that is very similar to this style, however has a slightly different color. For example if you wanted to have a heading that was not as prominent yet had the same size and typeface (font). Creating a nested style would let you create a style based on another higher level style without having to write out all of the parameters again.</p>
<p><pre><code>.heading1 {

font-family: verdana;

Size: 18px;

color: #cc0000;

line-height: 14px;

}</code></pre></p>
<p>A nested style would look similar to this.</p>
<p><pre><code>.heading p {

color: #663333;

}</code></pre></p>
<p>You did not have to replace all of the style, only the color.</p>
<p>So how would you implement this in your code?</p>
<p><pre><code>&lt;div class=&quot;Heading1&quot;&gt;Some Heading

&lt;p&gt;A different Colored heading&lt;/p&gt;

&lt;/div&gt;</code></pre></p>
<p>Since you have already defined the div as a heading1, anything within the DIV under a paragraph tag will be a different color as stated above.</p>
<p>Anyways, this not only helps to lower the amount of lines in you CSS file, it also helps you create sub styles that are easy to manage.</p>
<p><strong>Templates</strong></p>
<p>The idea of having different classes and IDs that are nested are very helpful in creating templates. You could easily have a main tempalte set up and then several different other template styles that are based on your main template. Whole websites could look completely different if you have several different nested styles set up, based on your original template styles.</p>
<p>For example, let say you create a heading1 and you wanted three different options for users to choose from in your CMS.</p>
<p><pre><code>.Heading1 {

font-family: Verdana;

font-size: 24px;

color: red;

}

.Heading1 template1

font-family: arial;

font-size: 36px;

color: blue;

}

.Heading1 template2

font-family: Times;

font-size: 36px;

color: Green;

}</code></pre></p>
<p>You will notice that each of these are pretty different, however they could be the same place within the CSS layout of your template, so when displayed they would look totally different, however have the same structure that would not have to be changed. This is one of the beauties of CSS, the ability to create a style and then have several different options that all based on a higher level.</p>
]]></content:encoded>
			<wfw:commentRss>http://scottlassiter.com/blog/css/css-classes-and-ids/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are hiding H1 tags bad for SEO?</title>
		<link>http://scottlassiter.com/blog/css/are-hiding-h1-tags-bad-for-seo/</link>
		<comments>http://scottlassiter.com/blog/css/are-hiding-h1-tags-bad-for-seo/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 21:56:11 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[H1]]></category>
		<category><![CDATA[Organic Search]]></category>
		<category><![CDATA[positioning]]></category>
		<category><![CDATA[ranking]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://scottlassiter.com/blog/?p=140</guid>
		<description><![CDATA[This is one of those questions that I have seen over and over. I have come up with my own methodologies of doing this, in fact, I did it on this blog at one time, however I have always found that if you are trying to hide something, Google and the other big engines will [...]]]></description>
			<content:encoded><![CDATA[<p>This is one of those questions that I have seen over and over. I have come up with my own methodologies of doing this, in fact, I did it on this blog at one time, however I have always found that if you are trying to hide something, Google and the other big engines will look at it as hidden. Google may also penalize you for this, since this is something that could likely be considered Black Hat. Don&#8217;t get me wrong, I wish that we could do this, especially since the Word Press H1 tag is in the header. This is a situation in my opinion where you need to use H1 as what it is designed for TEXT. This is one of the most important attributes in organic SEO, so why would we want to trick a browser that could black list you in some way, drop your rankings. My suggestion is to position the H1 text in a way that it looks like your brand instead of fighting against it. Use relative position to move your text so that it lays on top of a background image and looks as if it seamlessly sits in the design.</p>
<p>So, I want to know what YOU think!</p>
<div class="widgetContainer" style="margin: 5px auto; display: table; font-family: arial,helvetica,sans-serif; text-align: center; width: 200px;"><embed style="display: block;" type="application/x-shockwave-flash" width="200" height="200" src="http://widgets.sodahead.com/images/flash/poll.swf" flashvars="theme_id=5764&amp;width=200&amp;widgetWidth=200&amp;poll_id=728237&amp;widgetHeight=200&amp;callback=SODAHEAD.wordpress._finishPollEmbed&amp;size=medium&amp;height=200" wmode="transparent"></embed></p>
<div class="widgetFooter" style="border: 1px solid #e6e6e6; padding: 0pt 3px; background: #ffffff url(http://widgets.sodahead.com/images/flash/footerGradient.gif) repeat-x scroll center bottom; font-size: 0pt; height: 13px; line-height: 13px; text-align: right;"><a style="color: #484747; font-size: 10px; text-decoration: none; float: left;" href="http://www.sodahead.com/questions/" onclick="pageTracker._trackPageview('/outgoing/www.sodahead.com/questions/?referer=');">Questions</a><a style="color: #484747; font-size: 10px; text-decoration: none;" href="http://www.sodahead.com/other/are-hiding-h1-tags-bad-for-seo/question-728237" onclick="pageTracker._trackPageview('/outgoing/www.sodahead.com/other/are-hiding-h1-tags-bad-for-seo/question-728237?referer=');">View Results</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://scottlassiter.com/blog/css/are-hiding-h1-tags-bad-for-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scott&#8217;s Font Pick: Airstream</title>
		<link>http://scottlassiter.com/blog/web-design/scotts-font-pick-airstream/</link>
		<comments>http://scottlassiter.com/blog/web-design/scotts-font-pick-airstream/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 03:17:46 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://scottlassiter.com/blog/?p=134</guid>
		<description><![CDATA[I always look for really cool fonts that will make a difference. I have always liked fonts used for vehicles brands and such, especially retro ones. My grandparents used to drive thier airstream all over the country with thier friends. They would drive in little fleets talking by CB and going to some rally cool [...]]]></description>
			<content:encoded><![CDATA[<p>I always look for really cool fonts that will make a difference. I have always liked fonts used for vehicles brands and such, especially retro ones. My grandparents used to drive thier airstream all over the country with thier friends. They would drive in little fleets talking by CB and going to some rally cool places. I really enjoyed those campers, and for some reason they really were great for family activities and such.</p>
<div id="attachment_136" class="wp-caption alignnone" style="width: 326px"><a href="http://www.dafont.com/airstream.font" onclick="pageTracker._trackPageview('/outgoing/www.dafont.com/airstream.font?referer=');"><img class="size-full wp-image-136" title="airstream" src="http://scottlassiter.com/blog/wp-content/uploads/2009/11/airstream.gif" alt="Airstream font, free to download and totally retro" width="316" height="74" /></a><p class="wp-caption-text">Airstream font, free to download and totally retro</p></div>
<p>Some of the new airstreams area really cool also. They are lightweight, well designed, and easy to pull. With today&#8217;s gas prices I would think that people would want aerodynamic trailers to pull all over the country. Anyways, I think you should try this font out for fun. Airstream is free to download. Install it and try it out!</p>
<p><a title="Free download for airstream font" href="http://www.dafont.com/airstream.font" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.dafont.com/airstream.font?referer=');">Download Airstream</a></p>
]]></content:encoded>
			<wfw:commentRss>http://scottlassiter.com/blog/web-design/scotts-font-pick-airstream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create a pattern background for your website using PhotoShop</title>
		<link>http://scottlassiter.com/blog/web-design/how-to-create-a-background-for-your-website-using-photoshop-cs4/</link>
		<comments>http://scottlassiter.com/blog/web-design/how-to-create-a-background-for-your-website-using-photoshop-cs4/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 03:32:23 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Managing files in PhotoShop]]></category>
		<category><![CDATA[patterns]]></category>
		<category><![CDATA[Photoshop CS3]]></category>
		<category><![CDATA[PhotoShop CS4]]></category>
		<category><![CDATA[photoshop layer styles]]></category>
		<category><![CDATA[PhotoShop New Features]]></category>
		<category><![CDATA[photoshop patterns]]></category>
		<category><![CDATA[web page background]]></category>
		<category><![CDATA[working with layers]]></category>

		<guid isPermaLink="false">http://scottlassiter.com/blog/?p=112</guid>
		<description><![CDATA[I create all of my mock ups for websites in Photoshop. Basically I lay everything out the way I want, work with my clients to get everything approved and then move on to development. One of the things that I have thought has been very helpful in this process is the ability to create cool [...]]]></description>
			<content:encoded><![CDATA[<p>I create all of my mock ups for websites in Photoshop. Basically I lay everything out the way I want, work with my clients to get everything approved and then move on to development. One of the things that I have thought has been very helpful in this process is the ability to create cool backgrounds. I will show you how I created the background for this website and how I applied it.</p>
<p>1. Create a New file in Photoshop that is 20 x 20 pixels wide, RGB.</p>
<p><img class="alignnone size-full wp-image-114" style="border: 1px solid black;" title="20x20" src="http://scottlassiter.com/blog/wp-content/uploads/2009/11/20x20.jpg" alt="20x20" width="476" height="287" /></p>
<p>2. Next, I used the fill tool and fill it with a dark background color.</p>
<p><img class="alignnone size-full wp-image-115" style="border: 1px solid black;" title="FILL" src="http://scottlassiter.com/blog/wp-content/uploads/2009/11/FILL.jpg" alt="FILL" width="184" height="138" /></p>
<p>3.Use the line tool and make a few lines and such. patterns can be tricky, when they repeat you might not get what you expect. You can also create a grid. Make sure the lines are not too contrasting, otherwise the background may look a little busy. This is an easy way to learn how it works with random lines.</p>
<p><img class="alignnone size-full wp-image-116" title="lines" src="http://scottlassiter.com/blog/wp-content/uploads/2009/11/lines.jpg" alt="lines" width="195" height="128" /></p>
<p>4. Once you have finished your pattern, select Edit &gt; Define Pattern</p>
<p><img class="alignnone size-full wp-image-113" style="border: 1px solid black;" title="define_pattern" src="http://scottlassiter.com/blog/wp-content/uploads/2009/11/define_pattern.jpg" alt="define_pattern" width="291" height="194" /></p>
<p>You will be asked to name your pattern.</p>
<p>5. Once you have defined your pattern, all you have to do is apply it to any background. I usually create a back ground for my webpage, however try it with a new file. Create a new file that is 200 x 200 px. For the background layer, make sure to define it as a layer. You can do this by double clicking on it and renaming it. After it is renamed, you need create a layer affect. Do this by selecting Layer &gt; Layer Style &gt; Pattern Overlay.</p>
<p><img class="alignnone size-full wp-image-117" style="border: 1px solid black;" title="layer_style" src="http://scottlassiter.com/blog/wp-content/uploads/2009/11/layer_style.jpg" alt="layer_style" width="419" height="323" /></p>
<p>After selecting Pattern Overlay, you will be prompted to a layer dialog box. Choose the arrow by the pattern and then you will see your pattern in the selectable squares. Select it.</p>
<p><img class="alignnone size-full wp-image-118" style="border: 1px solid black;" title="select_pattern" src="http://scottlassiter.com/blog/wp-content/uploads/2009/11/select_pattern.jpg" alt="select_pattern" width="485" height="356" /></p>
<p>After doing this, your page will have a tile of the pattern you created. This works on any size layer or shape, like a rectangle. Experimenting with patterns is a lot of fun!</p>
<p><img class="alignnone size-full wp-image-119" style="border: 1px solid black;" title="pattern_bg" src="http://scottlassiter.com/blog/wp-content/uploads/2009/11/pattern_bg.jpg" alt="pattern_bg" width="305" height="245" /></p>
<p>As you can see the tiles just repeats itself over an over. There is definitely a science.</p>
<p>Below are 2 few example of cool pattern from Kaliber10000</p>
<p><a href="http://www.k10k.net/pixelpatterns/1053/" onclick="pageTracker._trackPageview('/outgoing/www.k10k.net/pixelpatterns/1053/?referer=');"><img class=" alignnone" src="http://www.k10k.net/_img/pixelpatterns/tiles/pat_20080224144820.gif" alt="Kaliber10000 Pixel Pattern" width="70" height="70" /></a></p>
<p><a href="http://www.k10k.net/pixelpatterns/1053/" onclick="pageTracker._trackPageview('/outgoing/www.k10k.net/pixelpatterns/1053/?referer=');"><img class="alignnone" title="Kaliber10000 Pixel Pattern" src="http://www.k10k.net/_img/pixelpatterns/tiles/pat_20070426193207.gif" alt="Kaliber10000 Pixel Pattern" width="65" height="72" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://scottlassiter.com/blog/web-design/how-to-create-a-background-for-your-website-using-photoshop-cs4/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CSS: How to Create a Basic Inline Style</title>
		<link>http://scottlassiter.com/blog/css/css-how-to-create-a-basic-inline-style/</link>
		<comments>http://scottlassiter.com/blog/css/css-how-to-create-a-basic-inline-style/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 04:26:20 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[css inline style]]></category>
		<category><![CDATA[divs]]></category>
		<category><![CDATA[external style sheet]]></category>
		<category><![CDATA[font-size]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[style sheets]]></category>
		<category><![CDATA[web styles]]></category>

		<guid isPermaLink="false">http://scottlassiter.com/blog/?p=108</guid>
		<description><![CDATA[One of the easiest ways to change the way a specific &#60;div&#62; &#60;span&#62; or paragraph tag&#8217;s looks on your web site is to change the style by doing it &#8220;inline&#8221;. Inline refers to editing the code directly in the line of line of the HTML, instead of updating an external style sheet, or a style [...]]]></description>
			<content:encoded><![CDATA[<p>One of the easiest ways to change the way a specific &lt;div&gt; &lt;span&gt; or paragraph tag&#8217;s looks on your web site is to change the style by doing it &#8220;inline&#8221;. Inline refers to editing the code directly in the line of line of the HTML, instead of updating an external style sheet, or a style sheet that is defined in the header of the page. This is something that I do not usually recommend, however there are instances that require this on the fly. An inline style will override a style that has already been established in the external style sheet or the header. One good example of this, is if you need to adjust the height of a specific &lt;div&gt; however do not need to update the style sheet. For example, you have an frame for an image that needs to be in a containing &lt;div&gt; that is 400 pixels tall.</p>
<p>In this example, we will simply define the height of a div with inline style.</p>
<p><code>&amp;lt;div class=&quot;someDiv&quot; style=&quot;height: 400px&quot;&amp;gt;</code></p>
<p>The &#8220;style&#8221; parameter, will begin the style attribute. After the quote marks, you can use any CSS value here, and as many as you like separated by a semi colon. Below, we will use multiple attributes.</p>
<p><code>&amp;lt;div style=&quot;font-size: 24px; font-weight: bold; color: red;&quot;&amp;gt;Some Words You Have Written&amp;lt;/div&amp;gt;</code></p>
<div style="font-size: 24px; font-weight: bold; color: red;">Some Words You Have Written</div>
<p>As you can see it is very easy to add an inline style, just make sure that you do not make a habit of this, however use it when you need to.</p>
]]></content:encoded>
			<wfw:commentRss>http://scottlassiter.com/blog/css/css-how-to-create-a-basic-inline-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modal Windows for opening images and websites without leaving your website</title>
		<link>http://scottlassiter.com/blog/web-design/modal-windows-for-opening-images-and-websites-without-leaving-your-website/</link>
		<comments>http://scottlassiter.com/blog/web-design/modal-windows-for-opening-images-and-websites-without-leaving-your-website/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 15:09:41 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[gray out screen]]></category>
		<category><![CDATA[image preview]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[javascript library]]></category>
		<category><![CDATA[modal window]]></category>
		<category><![CDATA[technolgoy]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web technology]]></category>
		<category><![CDATA[website previewer]]></category>

		<guid isPermaLink="false">http://scottlassiter.com/blog/?p=73</guid>
		<description><![CDATA[I have been working with and designing Modal windows for quite some time now. For the most part I have designed what I want them to look like and then I have used some type of open source to make them work. There are several different types of modal window javascript library&#8217;s to download, however [...]]]></description>
			<content:encoded><![CDATA[<p>I have been working with and designing Modal windows for quite some time now. For the most part I have designed what I want them to look like and then I have used some type of open source to make them work. There are several different types of modal window javascript library&#8217;s to download, however I have chosen to use 2, mainly due to thier flexibility and ease of adaptation.</p>
<p>The first type of modal window is what I specifically use to show images. The beauty of a modal window is that you can open an image or a webpage without ever leaving that page or openinig up a pop up window. The modal window can be closed easily by the user and usually it is very light and easy to work with. For the first type of modal window, I would like to promote the <a title="Light Box JS Modal Window" href="http://www.huddletogether.com/projects/lightbox/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.huddletogether.com/projects/lightbox/?referer=');">Lightbox JS</a> provided by <a title="Huddle Together, provider of LightBox JS javascript library" href="http://huddletogether.com" target="_blank" onclick="pageTracker._trackPageview('/outgoing/huddletogether.com?referer=');">http://huddletogether.com</a>. This is a javascript library, that is open source to the public. It is customizable and works great. I currently use it on my site for some of my images; check out the logo links on the right hand side of this page: <a title="Scott Lassiter Design, offering web design, graphic desgin and logos" href="http://scottlassiter.com/logos.php" target="_blank">http://scottlassiter.com/logos.php</a>. Here you will see that whenever you click on a link it darkens the screen and opens a box the size of your logo or image on the fly. It is very easy to set up and requires intermediate web developing skills to implement.</p>
<p>The second type of modal window I would like to talk about is called &#8220;graybox&#8221;, you can download it at <a title="Graybox modal window" href="http://orangoo.com/labs/GreyBox/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/orangoo.com/labs/GreyBox/?referer=');">http://orangoo.com/labs/GreyBox/</a>.  This is a very powerful modal window that provides the ability to open a window to another website. Lets say that you want to promote a certain website, or want to preview a website you have developed or designed. Implement the graybox  code on your website and wallah, you can provide a &#8220;window&#8221; into just about any website. For example, I use this on my website to provide previews of some of the websites that I have developed and designed. Check out &#8220;Web Design&#8221; on my portfolio page: <a title="Scott lassiter Design, web design, graphic design, logos, blogs, and other electronic media solutions" href="http://scottlassiter.com/portfolio.php" target="_blank">http://scottlassiter.com/portfolio.php</a>, to see it working in action. Basically, you have to set it so that the window is smaller that the web page you aqre previewing on. In many cases you will have to use the &#8220;scroll bars&#8221; in the graybox window, however this works great if you just want to show another site as an example and do not necessarily want the user to leave your page, which is key!</p>
<p>Do you have a modal window application that you specifically like or think is easy to work with? Drop a link here or give me a review</p>
]]></content:encoded>
			<wfw:commentRss>http://scottlassiter.com/blog/web-design/modal-windows-for-opening-images-and-websites-without-leaving-your-website/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Designers Vs Developers</title>
		<link>http://scottlassiter.com/blog/web-design/designers-vs-developers/</link>
		<comments>http://scottlassiter.com/blog/web-design/designers-vs-developers/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 18:45:23 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[design schools]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[technolgoy]]></category>
		<category><![CDATA[Web Design vs. Web Development]]></category>
		<category><![CDATA[web technology]]></category>
		<category><![CDATA[web typography]]></category>

		<guid isPermaLink="false">http://scottlassiter.com/blog/?p=43</guid>
		<description><![CDATA[Sometimes I like to rant a little about the separation between designers and developers. Some will say that a developer is anyone who can build a web page. Many say that a true developer can write a 2000 line SQL stored procedure in his sleep. Obviously if this was true, anyone less in skill would [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes I like to rant a little about the separation between designers and developers. Some will say that a developer is anyone who can build a web page. Many say that a true developer can write a 2000 line SQL stored procedure in his sleep. Obviously if this was true, anyone less in skill would just be called a Web Editor or something like that. I am not sure what is the right title, I do not really care, all I know is that there is a major rift between programmers and designers &#8211; which there should be to a certain degree.<br />
Many of my issues come with territory. Is it a designer&#8217;s territory to learn about front end development such as CSS and web page layout, absolutely! In my opinion, there are two types of web designers out there, designers that can develop and designers that are clueless about web technology. From what I understand in many design schools, web technology is not being stressed enough such as PHO, CSS, MySQL, and web server administration. These tools are essential to the web designer! These are the things that a web designer needs to know and continually practice so that he or she can build or know how to design a web page. In many cases there is no design thought of dynamism in Web Pages other than flashy animation and style by the designer. Do we ever think about how text might change to break a layout? D0 we ever think about how a search field should look? Sometimes, but most of the time we just make it &#8220;pretty&#8221; and go from there.<br />
What do I recommend for up and coming designers? Technolgy will always change so knowing what is hot is good, however the ability to design and creativity will never change, you either have it or you don&#8217;t it is not something that can just be learned through a book. Aesthetics are what they are, however the ability to truly combine technolgy and design is not just a skill but a talent.</p>
]]></content:encoded>
			<wfw:commentRss>http://scottlassiter.com/blog/web-design/designers-vs-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS text kerning for your web pages</title>
		<link>http://scottlassiter.com/blog/css/css-kerning-and-other-typography-tricks/</link>
		<comments>http://scottlassiter.com/blog/css/css-kerning-and-other-typography-tricks/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 21:44:11 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[CSS parameters]]></category>
		<category><![CDATA[dynamic text]]></category>
		<category><![CDATA[in line styles]]></category>
		<category><![CDATA[kerning]]></category>
		<category><![CDATA[letter-spacing]]></category>
		<category><![CDATA[photo captions]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://scottlassiter.com/blog/?p=37</guid>
		<description><![CDATA[Have you ever felt like you were limited in the things that you could do with your typography on a web page? I have, and before I knew what CSS was to apply a form of &#8220;kerning&#8221; to my web pages without having to create a custom text graphic. Custom graphical text is always going [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever felt like you were limited in the things that you could do with your typography on a web page? I have, and before I knew what CSS was to apply a form of &#8220;kerning&#8221; to my web pages without having to create a custom text graphic. Custom graphical text is always going to look cooler, however for particular reasons you may not want to do a graphic for every time you create some text, such as a dynamic photo caption pulling from a database. Now with CSS3 becoming more browser compatible, the use of typography will begin to expand more and more.</p>
<p>The CSS parameter you want to use is called letter-spacing. Yes, it is that simple!</p>
<p>Anyways let begin. Lets say I want to have a caption for my photo that looks cool and well designed. The first photo caption is standard.</p>
<p><img src="http://scottlassiter.com/pics/lake_view.jpg" alt="CSS Kerning tutorial" /></p>
<p>Our beautiful lake</p>
<p><em>Now Check this out!</em></p>
<p><img src="http://scottlassiter.com/pics/lake_view.jpg" alt="CSS Kerning tutorial" /></p>
<p><span style="letter-spacing: 5px;">Our beautiful lake</span></p>
<p><span style="letter-spacing: 5px;">Doesn&#8217;t this look much better?</span></p>
<p>Anyways, here is the CSS<br />
Take your text and wrap it in a &lt;span&gt; tag. This tag helps you apply a style to the text easily, however this is not the only place to use style. &lt;/span&gt;</p>
<p><strong>&lt;span&gt;Our Beautiful Lake&lt;/span&gt;</strong></p>
<p>Next add a style and the line spacing (int his example we are using <a title="Learn how to create a CSS inline style" href="http://scottlassiter.com/blog/css/css-how-to-create-a-basic-inline-style/" target="_self">Inline Styling</a>, however the same styleing can be used in an external style sheet):<br />
<strong>&lt;span style=&#8221;letter-spacing: 5px&#8221;&gt;Our Beautiful Lake&lt;/span&gt;</strong></p>
<p>The result is:   <span style="letter-spacing: 5px;">Our beautiful lake</span></p>
<p>It&#8217;s that easy! Hope this was helpful.</p>
<p>Again, there are many new features that are coming available in CSS3 that will enhance the ability of typographical design without having to create textual images and such. Please return to<a title="Scott Lassiter's Design Blog" href="http://scottlassiter.com/blog/" target="_self"> http://scottlassiter.com/blog</a> in the future to learn more about CSS3 features.</p>
]]></content:encoded>
			<wfw:commentRss>http://scottlassiter.com/blog/css/css-kerning-and-other-typography-tricks/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Cropping an image on the web using CSS</title>
		<link>http://scottlassiter.com/blog/uncategorized/cropping-an-image-on-the-web-using-css/</link>
		<comments>http://scottlassiter.com/blog/uncategorized/cropping-an-image-on-the-web-using-css/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 18:03:41 +0000</pubDate>
		<dc:creator>scott</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Cascading Stylesheets]]></category>
		<category><![CDATA[cropping images]]></category>
		<category><![CDATA[CSS image manipulation]]></category>
		<category><![CDATA[CSS positioning]]></category>
		<category><![CDATA[no tables]]></category>
		<category><![CDATA[stylesheets]]></category>

		<guid isPermaLink="false">http://scottlassiter.com/blog/?p=14</guid>
		<description><![CDATA[Ever had an image that you could not re-size, or did not want to re-size, however wanted to crop? Maybe the image was too large for your page or, you just wanted to show a small portion of the image. Using this technique you can also position text on top of the image, like a [...]]]></description>
			<content:encoded><![CDATA[<p>Ever had an image that you could not re-size, or did not want to re-size, however wanted to crop? Maybe the image was too large for your page or, you just wanted to show a small portion of the image. Using this technique you can also position text on top of the image, like a caption, without having to edit the image. This a very cool method to use, if  for  SEO purposed or to be reference the text in the HTML.</p>
<p>The intention is for you to use the CSS in the header of your document or in a linked Cascading Style Sheet (.css)</p>
<p>First lets start with an image as illustrated below:</p>
<p><img class="alignnone size-full wp-image-15" style="border-width:" title="pontiac_g6" src="http://scottlassiter.com/blog/wp-content/uploads/2009/04/pontiac_g6.jpg" alt="pontiac_g6" width="320" height="240" /></p>
<p>I need to crop this image and I want to give it a caption directly on the photograph. For this particular instance I just need to show the front of the vehicle.</p>
<p>First I will start by creating a DIV contain for this:</p>
<p><strong>&lt;div&gt;&lt;img src=&#8221;http://myserver/mycar.jpg&#8221;&gt;&lt;/div&gt;</strong></p>
<p>Above is a line of code that creates just a simple container. Next we need to create a class for the image for the CSS. You will actually use the class tag within the image tag to call to the CSS. The CSS class beloow will be added to your stylesheet.</p>
<p><strong>.image {<br />
border-width: 1px;<br />
border-color: #ffffff;<br />
border-style: solid;<br />
width:225px;<br />
height:70px;<br />
background-position:50% 95%;<br />
background-repeat:no-repeat;<br />
}</strong></p>
<p>In the CSS code above, I have created an image class with a 1 px border and and an area much small than the image. I have also told the background not to repeat itself.</p>
<div class="imageP" style="border: 1px solid #ffffff; width: 225px; height: 70px; background-position: 0% 50%; background-repeat: no-repeat; background-image: url(http://scottlassiter.com/blog/wp-content/uploads/2009/04/pontiac_g6.jpg);">
<div>Pontiac G6</div>
</div>
<p>Above you will see my cropped image with a title at the top in black. To make the image appear you HAVE to put in some kind of text for the image to show.This is what I used for the code:</p>
<p><strong>&lt;div class=&#8221;image&#8221; style=&#8221;</strong><strong>background-image:url(http://myserver/mycar.jpg)&#8221;</strong><strong>&gt;&lt;div&gt;Pontiac G6&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;<br />
</strong></p>
<p>Notice that I had to use a little in-line CSS to make the image appear (background-image). This way, you do not have to put the background-image URL in your style sheet, in the case if you want to have several images cropped with a specific size using the .image tag as a reference. Also make sure to have the break behind the last DIV.</p>
<p>Now, how would I make the text in visible in a different position and in a different color? Start by creating a &#8220;title&#8221; class like we previously created the &#8220;image&#8221; class.</p>
<p><strong>.title {<br />
font-family: Arial, Gadget, sans-serif;<br />
font-size: 14px;<br />
font-weight: bold;<br />
color:yellow;<br />
position: relative;<br />
top: 25px;<br />
left: 30px;</strong></p>
<p><strong>}<br />
</strong></p>
<div class="imageP" style="border: 1px solid #ffffff; width: 225px; height: 70px; background-position: 0% 50%; background-repeat: no-repeat; background-image: url(http://scottlassiter.com/blog/wp-content/uploads/2009/04/pontiac_g6.jpg);">
<div style="font-family: Arial,Gadget,sans-serif; font-weight: bold; color: yellow; font-size: 14px; position: relative; top: 25px; left: 30px;">Pontiac G6</div>
</div>
<p>Above you will see that I have positioned the text and have styled it to be a different font, color, and weight. By setting the position to Relative and adjusting the top and left, you can position your text to be anywhere within this DIV container.</p>
<p>Again, this is a case where we created a style with the CSS file so that we could create a &#8220;template&#8221; of sorts that we could reference again. The other method is to put all of the styling within a &#8220;style=&#8221; tag within the DIV.</p>
]]></content:encoded>
			<wfw:commentRss>http://scottlassiter.com/blog/uncategorized/cropping-an-image-on-the-web-using-css/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
