<?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>Invex Design &#124; Blog</title>
	<atom:link href="http://blog.invexdesign.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.invexdesign.com</link>
	<description>Tutorials and other tips and tricks from Invex Design</description>
	<lastBuildDate>Tue, 11 Oct 2011 17:46:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Attaching a CSS Style Sheet to Your Site</title>
		<link>http://blog.invexdesign.com/2010/02/attaching-a-css-style-sheet-to-your-site/</link>
		<comments>http://blog.invexdesign.com/2010/02/attaching-a-css-style-sheet-to-your-site/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 18:34:04 +0000</pubDate>
		<dc:creator>Invex09</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://blog.invexdesign.com/?p=230</guid>
		<description><![CDATA[This post will cover how to attach an external CSS Style Sheet to your website. Controlling all your styles through an external style sheet is the largest advantage of CSS (Cascading Style Sheets), as it allows you to completely separate style from content. CSS Style Sheets allow updates to spread quickly throughout your site as [...]]]></description>
			<content:encoded><![CDATA[<p><img class="floatNoBorder" src="http://blog.invexdesign.com/img/css.jpg" alt="" />This post will cover how to attach an external <strong>CSS Style Sheet</strong> to your website. Controlling all your styles through an external style sheet is the largest advantage of <em>CSS (Cascading Style Sheets)</em>, as it allows you to completely separate style from content. CSS Style Sheets allow updates to spread quickly throughout your site as updating the style sheet instantly updates all of the attached web pages. <span id="more-230"></span></p>
<p>A CSS Style Sheet has a <strong>.css</strong> file extension (ie <em>styles.css</em>) and should be placed somewhere in the root folder of your website. Once you have an external style sheet setup for your site, you can link your pages to that style sheet by placing the following line of code between the <span class="codeSnippet">&lt;head&gt;</span> and <span class="codeSnippet">&lt;/head&gt;</span> tags of your web pages:</p>
<pre><code><span class="tag">&lt;link href=<span class="value">"styles.css"</span> rel=<span class="value">"stylesheet"</span> type=<span class="value">"text/css"</span> /&gt;</span></code></pre>
<p>So if you have this style sheet linked to every page on your site and you want to change the color of links from blue to red, making one change in the style sheet will update the link color on every page in your site.</p>
<p><strong>Are you using Dreamweaver?</strong> Adobe Dreamweaver has a CSS Panel with an <em>Attach Style Sheet</em> button that will automatically insert this code for you. Open up the page you&#8217;d like to attach a style sheet to, and then in the CSS Panel, find the button shown below:</p>
<p><img src="http://blog.invexdesign.com/img/dreamweaver_css.jpg" alt="" /></p>
<p>Clicking this button will prompt you to browser for your style sheet. You should then choose <strong>&#8220;Add As: Link&#8221;</strong> and leave the media field blank and your link tag will be generated for you. <em>There are two methods for attaching a style sheet, link and import, but link is the most common and suffices for this basic tutorial.</em></p>
<p>Hopefully, this tutorial familiarized you with the basics of linking an external style sheet to your site. If you have any questions feel free to <a href="#respond">comment below</a> or use our <a href="http://blog.invexdesign.com/request-a-tutorial/">request a tutorial page</a> if there is a topic you would like us to expand on. Your feedback is appreciated!</p>
<p><span class="note"><strong>** NOTE **</strong> The href attribute in the provided link tag assumes your style sheet is in the same folder as your web page. You can specify this attribute as a relative or an absolute path to your style sheet if it&#8217;s located in a  different folder than your web page.</span></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-comfeed">
			<a href="http://blog.invexdesign.com/2010/02/attaching-a-css-style-sheet-to-your-site/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.invexdesign.com/2010/02/attaching-a-css-style-sheet-to-your-site/&amp;t=Attaching+a+CSS+Style+Sheet+to+Your+Site" rel="nofollow" title="Share this on Facebook" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/share.php?v=4_amp_src=bm_amp_u=http_//blog.invexdesign.com/2010/02/attaching-a-css-style-sheet-to-your-site/_amp_t=Attaching+a+CSS+Style+Sheet+to+Your+Site&amp;referer=');">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Attaching+a+CSS+Style+Sheet+to+Your+Site+-+http://b2l.me/g3vzx+" rel="nofollow" title="Tweet This!" onclick="pageTracker._trackPageview('/outgoing/twitter.com/home?status=Attaching+a+CSS+Style+Sheet+to+Your+Site+-+http_//b2l.me/g3vzx+&amp;referer=');">Tweet This!</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.invexdesign.com/2010/02/attaching-a-css-style-sheet-to-your-site/&amp;title=Attaching+a+CSS+Style+Sheet+to+Your+Site&amp;summary=This%20post%20will%20cover%20how%20to%20attach%20an%20external%20CSS%20Style%20Sheet%20to%20your%20website.%20Controlling%20all%20your%20styles%20through%20an%20external%20style%20sheet%20is%20the%20largest%20advantage%20of%20CSS%20%28Cascading%20Style%20Sheets%29%2C%20as%20it%20allows%20you%20to%20completely%20separate%20style%20from%20content.%20CSS%20Style%20Sheets%20allow%20updates%20to%20spread%20q&amp;source=Invex Design | Blog" rel="nofollow" title="Share this on Linkedin" onclick="pageTracker._trackPageview('/outgoing/www.linkedin.com/shareArticle?mini=true_amp_url=http_//blog.invexdesign.com/2010/02/attaching-a-css-style-sheet-to-your-site/_amp_title=Attaching+a+CSS+Style+Sheet+to+Your+Site_amp_summary=This_20post_20will_20cover_20how_20to_20attach_20an_20external_20CSS_20Style_20Sheet_20to_20your_20website._20Controlling_20all_20your_20styles_20through_20an_20external_20style_20sheet_20is_20the_20largest_20advantage_20of_20CSS_20_28Cascading_20Style_20Sheets_29_2C_20as_20it_20allows_20you_20to_20completely_20separate_20style_20from_20content._20CSS_20Style_20Sheets_20allow_20updates_20to_20spread_20q_amp_source=Invex_Design_Blog&amp;referer=');">Share this on Linkedin</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.invexdesign.com/2010/02/attaching-a-css-style-sheet-to-your-site/&amp;title=Attaching+a+CSS+Style+Sheet+to+Your+Site" rel="nofollow" title="Share this on del.icio.us" onclick="pageTracker._trackPageview('/outgoing/del.icio.us/post?url=http_//blog.invexdesign.com/2010/02/attaching-a-css-style-sheet-to-your-site/_amp_title=Attaching+a+CSS+Style+Sheet+to+Your+Site&amp;referer=');">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.invexdesign.com/2010/02/attaching-a-css-style-sheet-to-your-site/&amp;title=Attaching+a+CSS+Style+Sheet+to+Your+Site" rel="nofollow" title="Digg this!" onclick="pageTracker._trackPageview('/outgoing/digg.com/submit?phase=2_amp_url=http_//blog.invexdesign.com/2010/02/attaching-a-css-style-sheet-to-your-site/_amp_title=Attaching+a+CSS+Style+Sheet+to+Your+Site&amp;referer=');">Digg this!</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.invexdesign.com/2010/02/attaching-a-css-style-sheet-to-your-site/" rel="nofollow" title="Share this on Technorati" onclick="pageTracker._trackPageview('/outgoing/technorati.com/faves?add=http_//blog.invexdesign.com/2010/02/attaching-a-css-style-sheet-to-your-site/&amp;referer=');">Share this on Technorati</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.invexdesign.com/2010/02/attaching-a-css-style-sheet-to-your-site/&amp;title=Attaching+a+CSS+Style+Sheet+to+Your+Site" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon" onclick="pageTracker._trackPageview('/outgoing/www.stumbleupon.com/submit?url=http_//blog.invexdesign.com/2010/02/attaching-a-css-style-sheet-to-your-site/_amp_title=Attaching+a+CSS+Style+Sheet+to+Your+Site&amp;referer=');">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.invexdesign.com/2010/02/attaching-a-css-style-sheet-to-your-site/&amp;title=Attaching+a+CSS+Style+Sheet+to+Your+Site" rel="nofollow" title="Share this on Reddit" onclick="pageTracker._trackPageview('/outgoing/reddit.com/submit?url=http_//blog.invexdesign.com/2010/02/attaching-a-css-style-sheet-to-your-site/_amp_title=Attaching+a+CSS+Style+Sheet+to+Your+Site&amp;referer=');">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.invexdesign.com/2010/02/attaching-a-css-style-sheet-to-your-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing Your Nameservers</title>
		<link>http://blog.invexdesign.com/2010/02/changing-your-nameservers/</link>
		<comments>http://blog.invexdesign.com/2010/02/changing-your-nameservers/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 18:40:15 +0000</pubDate>
		<dc:creator>Invex09</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://blog.invexdesign.com/?p=207</guid>
		<description><![CDATA[This tutorial covers changing the nameservers for your domain. This is a common task when registering a new domain or switching an existing domain to a different hosting provider. Hopefully this tutorial will help you walk you through the process and give you a basic understanding of what you are doing when changing nameservers.

<a href="http://blog.invexdesign.com/2010/02/changing-your-nameservers/" class="video">Changing Your Nameservers</a>]]></description>
			<content:encoded><![CDATA[<div class="vidWrapper">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_nameservers_controller_1070070057"
			class="flashmovie"
			width="614"
			height="479">
	<param name="movie" value="http://blog.invexdesign.com/tutorials/nameservers/nameservers_controller.swf" />
	<param name="flashvars" value="autostart=true&amp;thumb=FirstFrame.png&amp;thumbscale=45&amp;showstartscreen=false&amp;color=0xFFFFFF,0xFFFFFF" />
	<param name="base" value="http://blog.invexdesign.com/tutorials/nameservers/" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://blog.invexdesign.com/tutorials/nameservers/nameservers_controller.swf"
			name="fm_nameservers_controller_1070070057"
			width="614"
			height="479">
		<param name="flashvars" value="autostart=true&amp;thumb=FirstFrame.png&amp;thumbscale=45&amp;showstartscreen=false&amp;color=0xFFFFFF,0xFFFFFF" />
		<param name="base" value="http://blog.invexdesign.com/tutorials/nameservers/" />
	<!--<![endif]-->
		
<p><a onclick="pageTracker._trackPageview('/outgoing/adobe.com/go/getflashplayer?referer=');pageTracker._trackPageview('/outgoing/adobe.com/go/getflashplayer?referer=http%3A%2F%2Fwww.invexdesign.com%2Fblog%2Fwp-admin%2Fpost.php%3Faction%3Dedit%26post%3D207');" href="http://adobe.com/go/getflashplayer"><img src="http://blog.invexdesign.com/img/update_flash_player.jpg" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
</div>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-comfeed">
			<a href="http://blog.invexdesign.com/2010/02/changing-your-nameservers/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.invexdesign.com/2010/02/changing-your-nameservers/&amp;t=Changing+Your+Nameservers" rel="nofollow" title="Share this on Facebook" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/share.php?v=4_amp_src=bm_amp_u=http_//blog.invexdesign.com/2010/02/changing-your-nameservers/_amp_t=Changing+Your+Nameservers&amp;referer=');">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Changing+Your+Nameservers+-+http://b2l.me/gqubn+" rel="nofollow" title="Tweet This!" onclick="pageTracker._trackPageview('/outgoing/twitter.com/home?status=Changing+Your+Nameservers+-+http_//b2l.me/gqubn+&amp;referer=');">Tweet This!</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.invexdesign.com/2010/02/changing-your-nameservers/&amp;title=Changing+Your+Nameservers&amp;summary=%5Bkml_flashembed%20publishmethod%3D%22static%22%20fversion%3D%2210.0.0%22%20movie%3D%22http%3A%2F%2Fblog.invexdesign.com%2Ftutorials%2Fnameservers%2Fnameservers_controller.swf%22%20width%3D%22614%22%20height%3D%22479%22%20targetclass%3D%22flashmovie%22%20base%3D%22http%3A%2F%2Fblog.invexdesign.com%2Ftutorials%2Fnameservers%2F%22%20fvars%3D%22autostart%3Dtrue%3Bthumb%3DFirstFrame.png%3Bthumbsc&amp;source=Invex Design | Blog" rel="nofollow" title="Share this on Linkedin" onclick="pageTracker._trackPageview('/outgoing/www.linkedin.com/shareArticle?mini=true_amp_url=http_//blog.invexdesign.com/2010/02/changing-your-nameservers/_amp_title=Changing+Your+Nameservers_amp_summary=_5Bkml_flashembed_20publishmethod_3D_22static_22_20fversion_3D_2210.0.0_22_20movie_3D_22http_3A_2F_2Fblog.invexdesign.com_2Ftutorials_2Fnameservers_2Fnameservers_controller.swf_22_20width_3D_22614_22_20height_3D_22479_22_20targetclass_3D_22flashmovie_22_20base_3D_22http_3A_2F_2Fblog.invexdesign.com_2Ftutorials_2Fnameservers_2F_22_20fvars_3D_22autostart_3Dtrue_3Bthumb_3DFirstFrame.png_3Bthumbsc_amp_source=Invex_Design_Blog&amp;referer=');">Share this on Linkedin</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.invexdesign.com/2010/02/changing-your-nameservers/&amp;title=Changing+Your+Nameservers" rel="nofollow" title="Share this on del.icio.us" onclick="pageTracker._trackPageview('/outgoing/del.icio.us/post?url=http_//blog.invexdesign.com/2010/02/changing-your-nameservers/_amp_title=Changing+Your+Nameservers&amp;referer=');">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.invexdesign.com/2010/02/changing-your-nameservers/&amp;title=Changing+Your+Nameservers" rel="nofollow" title="Digg this!" onclick="pageTracker._trackPageview('/outgoing/digg.com/submit?phase=2_amp_url=http_//blog.invexdesign.com/2010/02/changing-your-nameservers/_amp_title=Changing+Your+Nameservers&amp;referer=');">Digg this!</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.invexdesign.com/2010/02/changing-your-nameservers/" rel="nofollow" title="Share this on Technorati" onclick="pageTracker._trackPageview('/outgoing/technorati.com/faves?add=http_//blog.invexdesign.com/2010/02/changing-your-nameservers/&amp;referer=');">Share this on Technorati</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.invexdesign.com/2010/02/changing-your-nameservers/&amp;title=Changing+Your+Nameservers" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon" onclick="pageTracker._trackPageview('/outgoing/www.stumbleupon.com/submit?url=http_//blog.invexdesign.com/2010/02/changing-your-nameservers/_amp_title=Changing+Your+Nameservers&amp;referer=');">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.invexdesign.com/2010/02/changing-your-nameservers/&amp;title=Changing+Your+Nameservers" rel="nofollow" title="Share this on Reddit" onclick="pageTracker._trackPageview('/outgoing/reddit.com/submit?url=http_//blog.invexdesign.com/2010/02/changing-your-nameservers/_amp_title=Changing+Your+Nameservers&amp;referer=');">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.invexdesign.com/2010/02/changing-your-nameservers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>University of Illinois Womens Club Basketball</title>
		<link>http://blog.invexdesign.com/2010/02/university-of-illinois-womens-club-basketball/</link>
		<comments>http://blog.invexdesign.com/2010/02/university-of-illinois-womens-club-basketball/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 15:23:29 +0000</pubDate>
		<dc:creator>Invex09</dc:creator>
				<category><![CDATA[Inside Invex]]></category>

		<guid isPermaLink="false">http://blog.invexdesign.com/?p=193</guid>
		<description><![CDATA[Over the weekend, we launched the new website for the University of Illinois Womens Club Basketball team. The website was developed using primarily XHTML and CSS in combination with jQuery for an interactive calendar. The team wanted a schedule that would be easy to update for someone who wasn&#8217;t web-savvy. Thus, we designed the website [...]]]></description>
			<content:encoded><![CDATA[<p><a class="image" href="http://www.wcbillinois.com" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.wcbillinois.com?referer=');"><img src="http://blog.invexdesign.com/img/wcb.jpg" alt="" /></a>Over the weekend, we launched the new website for the University of Illinois Womens Club Basketball team. The website was developed using primarily XHTML and CSS in combination with jQuery for an interactive calendar. The team wanted a schedule that would be easy to update for someone who wasn&#8217;t web-savvy. Thus, we designed the website so that the team schedule is connected through the back-end to a Google calendar. So anyone on the team can log into the team Google account, make changes on an easy-to-use Google calendar, and the changes will be reflected on the website. Pretty cool? We think so.</p>
<p>Check out the site at:<br />
<a href="http://www.wcbillinois.com" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.wcbillinois.com?referer=');">www.wcbillinois.com</a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-comfeed">
			<a href="http://blog.invexdesign.com/2010/02/university-of-illinois-womens-club-basketball/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.invexdesign.com/2010/02/university-of-illinois-womens-club-basketball/&amp;t=University+of+Illinois+Womens+Club+Basketball" rel="nofollow" title="Share this on Facebook" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/share.php?v=4_amp_src=bm_amp_u=http_//blog.invexdesign.com/2010/02/university-of-illinois-womens-club-basketball/_amp_t=University+of+Illinois+Womens+Club+Basketball&amp;referer=');">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=University+of+Illinois+Womens+Club+Basketball+-+http://b2l.me/gd8za+" rel="nofollow" title="Tweet This!" onclick="pageTracker._trackPageview('/outgoing/twitter.com/home?status=University+of+Illinois+Womens+Club+Basketball+-+http_//b2l.me/gd8za+&amp;referer=');">Tweet This!</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.invexdesign.com/2010/02/university-of-illinois-womens-club-basketball/&amp;title=University+of+Illinois+Womens+Club+Basketball&amp;summary=Over%20the%20weekend%2C%20we%20launched%20the%20new%20website%20for%20the%20University%20of%20Illinois%20Womens%20Club%20Basketball%20team.%20The%20website%20was%20developed%20using%20primarily%20XHTML%20and%20CSS%20in%20combination%20with%20jQuery%20for%20an%20interactive%20calendar.%20The%20team%20wanted%20a%20schedule%20that%20would%20be%20easy%20to%20update%20for%20someone%20who%20wasn%27t%20web&amp;source=Invex Design | Blog" rel="nofollow" title="Share this on Linkedin" onclick="pageTracker._trackPageview('/outgoing/www.linkedin.com/shareArticle?mini=true_amp_url=http_//blog.invexdesign.com/2010/02/university-of-illinois-womens-club-basketball/_amp_title=University+of+Illinois+Womens+Club+Basketball_amp_summary=Over_20the_20weekend_2C_20we_20launched_20the_20new_20website_20for_20the_20University_20of_20Illinois_20Womens_20Club_20Basketball_20team._20The_20website_20was_20developed_20using_20primarily_20XHTML_20and_20CSS_20in_20combination_20with_20jQuery_20for_20an_20interactive_20calendar._20The_20team_20wanted_20a_20schedule_20that_20would_20be_20easy_20to_20update_20for_20someone_20who_20wasn_27t_20web_amp_source=Invex_Design_Blog&amp;referer=');">Share this on Linkedin</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.invexdesign.com/2010/02/university-of-illinois-womens-club-basketball/&amp;title=University+of+Illinois+Womens+Club+Basketball" rel="nofollow" title="Share this on del.icio.us" onclick="pageTracker._trackPageview('/outgoing/del.icio.us/post?url=http_//blog.invexdesign.com/2010/02/university-of-illinois-womens-club-basketball/_amp_title=University+of+Illinois+Womens+Club+Basketball&amp;referer=');">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.invexdesign.com/2010/02/university-of-illinois-womens-club-basketball/&amp;title=University+of+Illinois+Womens+Club+Basketball" rel="nofollow" title="Digg this!" onclick="pageTracker._trackPageview('/outgoing/digg.com/submit?phase=2_amp_url=http_//blog.invexdesign.com/2010/02/university-of-illinois-womens-club-basketball/_amp_title=University+of+Illinois+Womens+Club+Basketball&amp;referer=');">Digg this!</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.invexdesign.com/2010/02/university-of-illinois-womens-club-basketball/" rel="nofollow" title="Share this on Technorati" onclick="pageTracker._trackPageview('/outgoing/technorati.com/faves?add=http_//blog.invexdesign.com/2010/02/university-of-illinois-womens-club-basketball/&amp;referer=');">Share this on Technorati</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.invexdesign.com/2010/02/university-of-illinois-womens-club-basketball/&amp;title=University+of+Illinois+Womens+Club+Basketball" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon" onclick="pageTracker._trackPageview('/outgoing/www.stumbleupon.com/submit?url=http_//blog.invexdesign.com/2010/02/university-of-illinois-womens-club-basketball/_amp_title=University+of+Illinois+Womens+Club+Basketball&amp;referer=');">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.invexdesign.com/2010/02/university-of-illinois-womens-club-basketball/&amp;title=University+of+Illinois+Womens+Club+Basketball" rel="nofollow" title="Share this on Reddit" onclick="pageTracker._trackPageview('/outgoing/reddit.com/submit?url=http_//blog.invexdesign.com/2010/02/university-of-illinois-womens-club-basketball/_amp_title=University+of+Illinois+Womens+Club+Basketball&amp;referer=');">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.invexdesign.com/2010/02/university-of-illinois-womens-club-basketball/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adding Meta Tags to Your Website</title>
		<link>http://blog.invexdesign.com/2010/02/adding-meta-tags-to-your-website/</link>
		<comments>http://blog.invexdesign.com/2010/02/adding-meta-tags-to-your-website/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 22:08:22 +0000</pubDate>
		<dc:creator>Invex09</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://blog.invexdesign.com/?p=164</guid>
		<description><![CDATA[This post will cover adding some basic meta tags to your website which provide search engines like Google a quick overview of your website&#8217;s content. With search engine rankings becoming increasing important to a successful online presence, following this simple and easy tutorial can go a long way for you and your website. 
Meta tags [...]]]></description>
			<content:encoded><![CDATA[<p>This post will cover adding some basic <strong>meta tags</strong> to your website which provide search engines like Google a quick overview of your website&#8217;s content. With search engine rankings becoming increasing important to a successful online presence, following this simple and easy tutorial can go a long way for you and your website. <span id="more-164"></span></p>
<p>Meta tags are used as a way of organizing a website&#8217;s metadata, commonly defined as &#8220;data about data.&#8221; Basically metadata serves as a means to help organize the world wide web. It consists of specific information about a website presented in structured meta tags and thus provides a universal standard across the web. Meta tags can be found in the header of your website, or between the <span class="codeSnippet">&lt;head&gt;</span> and <span class="codeSnippet">&lt;/head&gt;</span> tags. By default, most web editors today will place the meta tag for content-type in a new document when you create it:</p>
<pre><code><span class="tag">&lt;meta http-equiv=<span class="value">"Content-Type"</span> content=<span class="value">"text/html; charset=utf-8"</span> /&gt;</span></code></pre>
<p>Also by default, you are given a space for the title of your web page:</p>
<pre><code><span class="tag">&lt;title&gt;<span class="text">Insert Page Title Here</span>&lt;/title&gt;</span></code></pre>
<p><img class="floatNoBorder" src="http://blog.invexdesign.com/img/meta_title.jpg" alt="" />This title is displayed on the top of your browser window and is also used as the link text for your website in search engines such as Google and Yahoo. Your page title should serve as a good heading for the content of your website, usually containing both the title of your business as well as that particular page within the site.</p>
<p>Two very important meta tags are the keywords and content tags shown below:</p>
<pre><code><span class="tag">&lt;meta name=<span class="value">"Description"</span> content=<span class="value">"Brief site description"</span> /&gt;
&lt;meta name=<span class="value">"Keywords"</span> content=<span class="value">"Comma separated keywords and phrases"</span> /&gt;</span></code></pre>
<p><img class="floatNoBorder" src="http://blog.invexdesign.com/img/meta_description.jpg" alt="" />The description is used by search engines to give a brief summary of your web page on search result pages while the keywords are a factor in determining whether or not the content on your website is relevant to a particular search.</p>
<p>Below is a sample header that can be used as a template for you to go off when creating the metadata for new web pages. <em>The sample contains a language meta tag that, while not as useful for sites that are in English, doesn&#8217;t hurt to add to your header.</em></p>
<p><strong>Sample Header with Meta Tags:</strong></p>
<pre><code><span class="tag">&lt;head&gt;
&lt;meta http-equiv=<span class="value">"Content-Type"</span> content=<span class="value">"text/html; charset=utf-8"</span> /&gt;
&lt;title&gt;<span class="text">Insert Page Title Here</span>&lt;/title&gt;
&lt;meta name=<span class="value">"Description"</span> content=<span class="value">"Brief site description"</span> /&gt;
&lt;meta name=<span class="value">"Keywords"</span> content=<span class="value">"Comma separated keywords and phrases"</span> /&gt;
&lt;/head&gt;</span></code></pre>
<p>Feel free to leave a comment below with any questions or feedback. For more information about the SEO services offered at Invex Design, check out our <a href="http://www.invexdesign.com/services.html#seo" onclick="pageTracker._trackPageview('/outgoing/www.invexdesign.com/services.html_seo?referer=');">services page</a>.</p>
<p><span class="note"><strong>** NOTE **</strong> There is actually a specific meta tag for page title, however its rarely used in the US and we highly recommend sticking to the basic title tag mentioned above. For more information about the matter, <a href="http://www.webmarketingnow.com/tips/meta-title.html" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.webmarketingnow.com/tips/meta-title.html?referer=');">check out this article</a>.</span></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-comfeed">
			<a href="http://blog.invexdesign.com/2010/02/adding-meta-tags-to-your-website/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.invexdesign.com/2010/02/adding-meta-tags-to-your-website/&amp;t=Adding+Meta+Tags+to+Your+Website" rel="nofollow" title="Share this on Facebook" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/share.php?v=4_amp_src=bm_amp_u=http_//blog.invexdesign.com/2010/02/adding-meta-tags-to-your-website/_amp_t=Adding+Meta+Tags+to+Your+Website&amp;referer=');">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Adding+Meta+Tags+to+Your+Website+-+http://b2l.me/fnnzk+" rel="nofollow" title="Tweet This!" onclick="pageTracker._trackPageview('/outgoing/twitter.com/home?status=Adding+Meta+Tags+to+Your+Website+-+http_//b2l.me/fnnzk+&amp;referer=');">Tweet This!</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.invexdesign.com/2010/02/adding-meta-tags-to-your-website/&amp;title=Adding+Meta+Tags+to+Your+Website&amp;summary=This%20post%20will%20cover%20adding%20some%20basic%20meta%20tags%20to%20your%20website%20which%20provide%20search%20engines%20like%20Google%20a%20quick%20overview%20of%20your%20website%27s%20content.%20With%20search%20engine%20rankings%20becoming%20increasing%20important%20to%20a%20successful%20online%20presence%2C%20following%20this%20simple%20and%20easy%20tutorial%20can%20go%20a%20long%20way%20f&amp;source=Invex Design | Blog" rel="nofollow" title="Share this on Linkedin" onclick="pageTracker._trackPageview('/outgoing/www.linkedin.com/shareArticle?mini=true_amp_url=http_//blog.invexdesign.com/2010/02/adding-meta-tags-to-your-website/_amp_title=Adding+Meta+Tags+to+Your+Website_amp_summary=This_20post_20will_20cover_20adding_20some_20basic_20meta_20tags_20to_20your_20website_20which_20provide_20search_20engines_20like_20Google_20a_20quick_20overview_20of_20your_20website_27s_20content._20With_20search_20engine_20rankings_20becoming_20increasing_20important_20to_20a_20successful_20online_20presence_2C_20following_20this_20simple_20and_20easy_20tutorial_20can_20go_20a_20long_20way_20f_amp_source=Invex_Design_Blog&amp;referer=');">Share this on Linkedin</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.invexdesign.com/2010/02/adding-meta-tags-to-your-website/&amp;title=Adding+Meta+Tags+to+Your+Website" rel="nofollow" title="Share this on del.icio.us" onclick="pageTracker._trackPageview('/outgoing/del.icio.us/post?url=http_//blog.invexdesign.com/2010/02/adding-meta-tags-to-your-website/_amp_title=Adding+Meta+Tags+to+Your+Website&amp;referer=');">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.invexdesign.com/2010/02/adding-meta-tags-to-your-website/&amp;title=Adding+Meta+Tags+to+Your+Website" rel="nofollow" title="Digg this!" onclick="pageTracker._trackPageview('/outgoing/digg.com/submit?phase=2_amp_url=http_//blog.invexdesign.com/2010/02/adding-meta-tags-to-your-website/_amp_title=Adding+Meta+Tags+to+Your+Website&amp;referer=');">Digg this!</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.invexdesign.com/2010/02/adding-meta-tags-to-your-website/" rel="nofollow" title="Share this on Technorati" onclick="pageTracker._trackPageview('/outgoing/technorati.com/faves?add=http_//blog.invexdesign.com/2010/02/adding-meta-tags-to-your-website/&amp;referer=');">Share this on Technorati</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.invexdesign.com/2010/02/adding-meta-tags-to-your-website/&amp;title=Adding+Meta+Tags+to+Your+Website" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon" onclick="pageTracker._trackPageview('/outgoing/www.stumbleupon.com/submit?url=http_//blog.invexdesign.com/2010/02/adding-meta-tags-to-your-website/_amp_title=Adding+Meta+Tags+to+Your+Website&amp;referer=');">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.invexdesign.com/2010/02/adding-meta-tags-to-your-website/&amp;title=Adding+Meta+Tags+to+Your+Website" rel="nofollow" title="Share this on Reddit" onclick="pageTracker._trackPageview('/outgoing/reddit.com/submit?url=http_//blog.invexdesign.com/2010/02/adding-meta-tags-to-your-website/_amp_title=Adding+Meta+Tags+to+Your+Website&amp;referer=');">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.invexdesign.com/2010/02/adding-meta-tags-to-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MalwareBytes Deleted by Spyware</title>
		<link>http://blog.invexdesign.com/2010/02/malwarebytes-deleted-by-spyware-fix/</link>
		<comments>http://blog.invexdesign.com/2010/02/malwarebytes-deleted-by-spyware-fix/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 16:55:03 +0000</pubDate>
		<dc:creator>Invex09</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://blog.invexdesign.com/?p=101</guid>
		<description><![CDATA[Earlier we covered how to download, install, and setup MalwareBytes Anti-Malware, which is one of the best, most popular free tools available to help protect your computer. Unfortunately, because of that &#8220;most popular&#8221; part, many malware and spyware programs attempt to disable MalwareBytes specifically. We have compiled some helpful tips in case you run into [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier we covered how to <a href="http://blog.invexdesign.com/2010/01/setting-up-malwarebytes-anti-malware/">download, install, and setup MalwareBytes Anti-Malware,</a> which is one of the best, most popular free tools available to help protect your computer. Unfortunately, because of that &#8220;most popular&#8221; part, many malware and spyware programs attempt to disable MalwareBytes specifically. We have compiled some helpful tips in case you run into this problem. <span id="more-101"></span></p>
<p>Basically, because MalwareBytes is so widely-used and effective against harmful software, the friendly people who develop your viruses and adware/spyware (thats a joke &#8230; there are many adjectives that could be used to describe these people but friendly definitely isn&#8217;t one of them <img src='http://www.invexdesign.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ) now target MalwareBytes and attempt to disable it before you can use it. These harmful programs will accomplish this task by blocking or deleting <strong>mbam.exe</strong>, the executable file that runs MalwareBytes once its installed.</p>
<p><img src="http://blog.invexdesign.com/img/mbam_executables.jpg" alt="" /></p>
<p>If this has happened to you, when you attempt to run MalwareBytes nothing will happen. You can solve this problem by changing the file extension from <strong>.exe</strong> to <strong>.com</strong> which will allow the file to still be executed as before, but effectively trick the spyware program into thinking the file is not there. So if you have MalwareBytes installed but nothing happens when you try to run the program, take the following steps:</p>
<ol>
<li>Navigate to the MalwareBytes Folder location under Program Files which is usually: <strong>C:\Program Files\Malwarebytes&#8217; Anti-Malware</strong></li>
<li>Look for the file <strong>mbam.exe</strong>. If the file is there <em>skip to the next step</em>, otherwise, if the file is missing, download a version that has already been changed from <strong>.exe</strong> to <strong>.com</strong> from one of our Invex servers:</li>
<p><a class="downloads" href="http://blog.invexdesign.com/files/mbam.com">Download &#8220;mbam.com&#8221;</a>Then move this file to the location you found in step 1 and <em>skip to step 5.</em></p>
<li>Click on the file and hit <strong>F2 (Rename)</strong> or right click on the file and selected <strong>Rename</strong></li>
<li>Change the filename from <strong>mbam.exe</strong> to <strong>mbam.com</strong> <em>(refer to the footer of this post if you are unable to change the file extension)</em></li>
<li>Run the file <strong>mbam.com</strong> to start up MalwareBytes Anti-Malware</li>
</ol>
<p>Well hopefully these steps helped you clear up any problems you may have had with MalwareBytes. As usual, leave a comment if you have any questions or are unclear about parts of the tutorial. We always appreciate your feedback. Thanks!</p>
<p><span class="note"><strong>** NOTE **</strong> In order to rename a file and change its extension, you must have &#8220;Hide extensions for known file types&#8221; unchecked in your folder options. You can find this setting here: <strong>Tools → Folder Options &#8230; → View → Advanced Settings:</strong> and again it must be disabled.</span></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-comfeed">
			<a href="http://blog.invexdesign.com/2010/02/malwarebytes-deleted-by-spyware-fix/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.invexdesign.com/2010/02/malwarebytes-deleted-by-spyware-fix/&amp;t=MalwareBytes+Deleted+by+Spyware" rel="nofollow" title="Share this on Facebook" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/share.php?v=4_amp_src=bm_amp_u=http_//blog.invexdesign.com/2010/02/malwarebytes-deleted-by-spyware-fix/_amp_t=MalwareBytes+Deleted+by+Spyware&amp;referer=');">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=MalwareBytes+Deleted+by+Spyware+-+http://b2l.me/ffe9n+" rel="nofollow" title="Tweet This!" onclick="pageTracker._trackPageview('/outgoing/twitter.com/home?status=MalwareBytes+Deleted+by+Spyware+-+http_//b2l.me/ffe9n+&amp;referer=');">Tweet This!</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.invexdesign.com/2010/02/malwarebytes-deleted-by-spyware-fix/&amp;title=MalwareBytes+Deleted+by+Spyware&amp;summary=Earlier%20we%20covered%20how%20to%20download%2C%20install%2C%20and%20setup%20MalwareBytes%20Anti-Malware%2C%20which%20is%20one%20of%20the%20best%2C%20most%20popular%20free%20tools%20available%20to%20help%20protect%20your%20computer.%20Unfortunately%2C%20because%20of%20that%20%22most%20popular%22%20part%2C%20many%20malware%20and%20spyware%20programs%20attempt%20to%20disable%20MalwareBytes%20specifica&amp;source=Invex Design | Blog" rel="nofollow" title="Share this on Linkedin" onclick="pageTracker._trackPageview('/outgoing/www.linkedin.com/shareArticle?mini=true_amp_url=http_//blog.invexdesign.com/2010/02/malwarebytes-deleted-by-spyware-fix/_amp_title=MalwareBytes+Deleted+by+Spyware_amp_summary=Earlier_20we_20covered_20how_20to_20download_2C_20install_2C_20and_20setup_20MalwareBytes_20Anti-Malware_2C_20which_20is_20one_20of_20the_20best_2C_20most_20popular_20free_20tools_20available_20to_20help_20protect_20your_20computer._20Unfortunately_2C_20because_20of_20that_20_22most_20popular_22_20part_2C_20many_20malware_20and_20spyware_20programs_20attempt_20to_20disable_20MalwareBytes_20specifica_amp_source=Invex_Design_Blog&amp;referer=');">Share this on Linkedin</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://blog.invexdesign.com/2010/02/malwarebytes-deleted-by-spyware-fix/&amp;title=MalwareBytes+Deleted+by+Spyware" rel="nofollow" title="Share this on del.icio.us" onclick="pageTracker._trackPageview('/outgoing/del.icio.us/post?url=http_//blog.invexdesign.com/2010/02/malwarebytes-deleted-by-spyware-fix/_amp_title=MalwareBytes+Deleted+by+Spyware&amp;referer=');">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.invexdesign.com/2010/02/malwarebytes-deleted-by-spyware-fix/&amp;title=MalwareBytes+Deleted+by+Spyware" rel="nofollow" title="Digg this!" onclick="pageTracker._trackPageview('/outgoing/digg.com/submit?phase=2_amp_url=http_//blog.invexdesign.com/2010/02/malwarebytes-deleted-by-spyware-fix/_amp_title=MalwareBytes+Deleted+by+Spyware&amp;referer=');">Digg this!</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://blog.invexdesign.com/2010/02/malwarebytes-deleted-by-spyware-fix/" rel="nofollow" title="Share this on Technorati" onclick="pageTracker._trackPageview('/outgoing/technorati.com/faves?add=http_//blog.invexdesign.com/2010/02/malwarebytes-deleted-by-spyware-fix/&amp;referer=');">Share this on Technorati</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.invexdesign.com/2010/02/malwarebytes-deleted-by-spyware-fix/&amp;title=MalwareBytes+Deleted+by+Spyware" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon" onclick="pageTracker._trackPageview('/outgoing/www.stumbleupon.com/submit?url=http_//blog.invexdesign.com/2010/02/malwarebytes-deleted-by-spyware-fix/_amp_title=MalwareBytes+Deleted+by+Spyware&amp;referer=');">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://blog.invexdesign.com/2010/02/malwarebytes-deleted-by-spyware-fix/&amp;title=MalwareBytes+Deleted+by+Spyware" rel="nofollow" title="Share this on Reddit" onclick="pageTracker._trackPageview('/outgoing/reddit.com/submit?url=http_//blog.invexdesign.com/2010/02/malwarebytes-deleted-by-spyware-fix/_amp_title=MalwareBytes+Deleted+by+Spyware&amp;referer=');">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://blog.invexdesign.com/2010/02/malwarebytes-deleted-by-spyware-fix/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

