<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.1" -->
<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/"
	>

<channel>
	<title>GoboHost.com GoboBlog</title>
	<link>http://www.gobohost.com/blog</link>
	<description></description>
	<pubDate>Sun, 24 Feb 2008 03:56:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<item>
		<title>Intro to CSS (Part 2 of 5): CSS Rules</title>
		<link>http://www.gobohost.com/blog/?p=9</link>
		<comments>http://www.gobohost.com/blog/?p=9#comments</comments>
		<pubDate>Mon, 18 Feb 2008 02:21:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Website design and programming.]]></category>

		<guid isPermaLink="false">http://www.gobohost.com/blog/?p=9</guid>
		<description><![CDATA[Continued from the series Intro to CSS.
Style Sheets
Properly used, style sheets can save you a lot of time and hassle.
Normally styling information is stored in an external file with the .css extension. Keeping this information is an external file comes in handy when changing the look of all pages in your website.
The 4 styling types [...]]]></description>
			<content:encoded><![CDATA[<p>Continued from the series <a href="http://www.gobohost.com/blog/?p=8" title="Intro to CSS: Part 1">Intro to CSS</a>.</p>
<p><strong>Style Sheets</strong><br />
Properly used, style sheets can save you a lot of time and hassle.<br />
Normally styling information is stored in an external file with the .css extension. Keeping this information is an external file comes in handy when changing the look of all pages in your website.</p>
<p><strong>The 4 styling types and priority.<br />
</strong>Generally speaking there are 4 areas that styling information can be found.</p>
<p>1. Browser default (Default style when no styling information is found.)<br />
2. External style sheet (style.css)<br />
3. Internal style sheet (Found inside the &lt;head&gt; tag.)<br />
4. Inline style (Found inside a single HTML element.)</p>
<p>The greatest priority number in this list will override the other styling information. For example, if styling information is located in an external CSS file and also found inside the &lt;head&gt; of your page for the same element, then the information in the &lt;head&gt; will override the information found in the external style sheet.</p>
<p><strong>The CSS syntax.</strong></p>
<p>A basic line of CSS code would look like this: <code>#menu { color: #ffffff; }</code></p>
<p>The syntax for CSS is made up of 3 parts.</p>
<p>1. Sector<br />
2. Property<br />
3. Value</p>
<p>Sector: Normally this is the HTML element or tag you wish to define. In our above example the sector would be #menu</p>
<p>Property: This is the attribute you are going to change. In our example the attribute we are changing is color.</p>
<p>Value: This is the value that you’re changing the attribute to. In our example the attribute for color is <code>#ffffff</code>(color white) NOTE: If a value contains multiple words, you must place it in quotations. Example, <code>p {font-family: "sans serif"}</code></p>
<p><strong>Comments.</strong></p>
<p>Comments may be place inside a style sheet. This is very useful for making programming notes or debugging. Comments found in a style sheet are placed between &#8216;/*&#8217; and &#8216;*/&#8217; delimiters. Anything written inside the &#8216;/*&#8217; and &#8216;*/&#8217; is completed ignored by the browser.</p>
<p>Examples:</p>
<p><code>/* Start menu style */<br />
#menu { color: #ffffff; }</code></p>
<p><strong>Case-insensitive.</strong></p>
<p>CSS is unaffected by upper or lower case code. However attributes not in control by CSS is. This includes URL’s, Font Names, HTML/XHTML attributes, and element/attribute names in XML. Generally CSS code is typed in all lower-case.<br />
 </p>
]]></content:encoded>
			<wfw:commentRss>http://www.gobohost.com/blog/?feed=rss2&amp;p=9</wfw:commentRss>
		</item>
		<item>
		<title>Intro to CSS (Part 1 of 5)</title>
		<link>http://www.gobohost.com/blog/?p=8</link>
		<comments>http://www.gobohost.com/blog/?p=8#comments</comments>
		<pubDate>Sun, 10 Feb 2008 23:06:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Website design and programming.]]></category>

		<guid isPermaLink="false">http://www.gobohost.com/blog/?p=8</guid>
		<description><![CDATA[The term CSS stands for Cascading Style Sheets,
Originally HTML tags defined the content of a webpage. &#60;table&#62;, &#60;p&#62; and &#60;h3&#62; are some basic tags used to tell a browser how a page is supposed to be laid out.This worked well during the early stages of the internet. However, over time internet browsers continued to add [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The term CSS stands for Cascading Style Sheets,</strong></p>
<p>Originally HTML tags defined the content of a webpage. &lt;table&gt;, &lt;p&gt; and &lt;h3&gt; are some basic tags used to tell a browser how a page is supposed to be laid out.This worked well during the early stages of the internet. However, over time internet browsers continued to add new attributes to the original HTML specification. Although these new tags were a welcome change to old standards, it became more challenging to the programmer to properly organize their code and separate page content with layout.</p>
<p>CSS was design as a solution to this problem. CSS stands for Cascading Style Sheets and was created by the World Wide Web Consortium (W3C), a non profit origination responsible for standardizing the HTML language. Today every major browser supports CSS. This makes CSS ideal for programmers to maintain a uniform look and feel across deferent browsers.</p>
<p><strong>What CSS does:<br />
</strong></p>
<p>CSS defines how HTML elements are displayed in the browser. This information is usually stored in an external file with the .css file extension. The most common filename is style.css. CSS information can also reside on the HTML page as well but generally only done when just a small amount of styling is required. </p>
<p>One major benefit of using external Cascading Style Sheets is that all pages of your website can reference one CSS file. This is very useful when making global changes to your site. For example, say you wanted to change the background color of your website. Instead of opening every page and changing the &lt;background&gt; tag you can just edit the #body property of your CSS file. Now every page on your website that references the style sheet will automatically change to reflect your new background color!<br />
 </p>
]]></content:encoded>
			<wfw:commentRss>http://www.gobohost.com/blog/?feed=rss2&amp;p=8</wfw:commentRss>
		</item>
		<item>
		<title>New Network Status Page</title>
		<link>http://www.gobohost.com/blog/?p=7</link>
		<comments>http://www.gobohost.com/blog/?p=7#comments</comments>
		<pubDate>Sun, 10 Feb 2008 17:44:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[GoboHost Network News]]></category>

		<guid isPermaLink="false">http://www.gobohost.com/blog/?p=7</guid>
		<description><![CDATA[We have updated our server status page to reflect our global server array. You can now see the status of every server GoboHost.com is capable of managing including server name, HTTP Status, FTP Status, POP3 Status, Server Load and Uptime. You can visit the new Status Page by clicking on the “Server Status” link in [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.gobohost.com/gobocontrol/images/support/status.gif" class="alignleft" />We have updated our server status page to reflect our global server array. You can now see the status of every server GoboHost.com is capable of managing including server name, HTTP Status, FTP Status, POP3 Status, Server Load and Uptime. You can visit the new Status Page by clicking on the “Server Status” link in the GoboControl Center or visit it directly by <a href="http://www.gobohost.com/gobocontrol/serverstatus.php">clicking here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gobohost.com/blog/?feed=rss2&amp;p=7</wfw:commentRss>
		</item>
		<item>
		<title>Chat Support Upgrade</title>
		<link>http://www.gobohost.com/blog/?p=6</link>
		<comments>http://www.gobohost.com/blog/?p=6#comments</comments>
		<pubDate>Wed, 15 Aug 2007 01:22:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[GoboHost Company News]]></category>

		<guid isPermaLink="false">http://www.gobohost.com/blog/?p=6</guid>
		<description><![CDATA[In an effort to further expand our service to you Gobohost.com has upgraded it&#8217;s chat support function by adding more features and faster server response.
Chat support allows you to chat directly with a Gobohost.com agent. An icon located at the top of every page shows the current availability of the GoboHost.com Operators. If no GoboHost.com operator [...]]]></description>
			<content:encoded><![CDATA[<p>In an effort to further expand our service to you Gobohost.com has upgraded it&#8217;s chat support function by adding more features and faster server response.</p>
<p>Chat support allows you to chat directly with a Gobohost.com agent. An icon located at the top of every page shows the current availability of the GoboHost.com Operators. If no GoboHost.com operator is available you may send a message directly to us by clicking on the &#8220;Chat is Offline&#8221; link.</p>
<p> GoboHost.com is working hard to provide you with the best customer service and satisfaction. Feel free to use the GoboHost.com Live Chat support button when you need help fast.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gobohost.com/blog/?feed=rss2&amp;p=6</wfw:commentRss>
		</item>
		<item>
		<title>cPanel 11 Complete</title>
		<link>http://www.gobohost.com/blog/?p=5</link>
		<comments>http://www.gobohost.com/blog/?p=5#comments</comments>
		<pubDate>Sun, 05 Aug 2007 03:24:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[GoboHost Network News]]></category>

		<guid isPermaLink="false">http://www.gobohost.com/blog/?p=5</guid>
		<description><![CDATA[cPanel 11 upgrades for all web hosting packages is now complete. You should find the new changes next time you login to your cPanel.
]]></description>
			<content:encoded><![CDATA[<p>cPanel 11 upgrades for all web hosting packages is now complete. You should find the new changes next time you login to your cPanel.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gobohost.com/blog/?feed=rss2&amp;p=5</wfw:commentRss>
		</item>
		<item>
		<title>GoboHost.com to Upgrade cPanel</title>
		<link>http://www.gobohost.com/blog/?p=4</link>
		<comments>http://www.gobohost.com/blog/?p=4#comments</comments>
		<pubDate>Tue, 31 Jul 2007 13:01:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[GoboHost Network News]]></category>

		<guid isPermaLink="false">http://www.gobohost.com/blog/?p=4</guid>
		<description><![CDATA[Soon to all webhosting packages is cPanel 11. We are currently in the process of updataing our servers to version 11. This upgrade is automatic and will not require any additional infromation form our clients.
cPanel 11 brings the most extensive update ever to the cPanel software package. With upgrades in nearly every section of the product, [...]]]></description>
			<content:encoded><![CDATA[<p>Soon to all webhosting packages is cPanel 11. We are currently in the process of updataing our servers to version 11. This upgrade is automatic and will not require any additional infromation form our clients.</p>
<p>cPanel 11 brings the most extensive update ever to the cPanel software package. With upgrades in nearly every section of the product, this version enhances the feature packed, security minded and highly stable platform for web hosting. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.gobohost.com/blog/?feed=rss2&amp;p=4</wfw:commentRss>
		</item>
		<item>
		<title>GoboHost.com launches online!</title>
		<link>http://www.gobohost.com/blog/?p=3</link>
		<comments>http://www.gobohost.com/blog/?p=3#comments</comments>
		<pubDate>Fri, 13 Jul 2007 11:52:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[GoboHost Company News]]></category>

		<guid isPermaLink="false">http://www.gobohost.com/blog/?p=3</guid>
		<description><![CDATA[GoboHost.com launches online, providing web hosting and design services to SW Florida!
]]></description>
			<content:encoded><![CDATA[<p><span id="readmore"><span class="borderDown">GoboHost.com launches online, providing web hosting and design services to SW Florida!</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gobohost.com/blog/?feed=rss2&amp;p=3</wfw:commentRss>
		</item>
	</channel>
</rss>
