<?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>the hidden rock {dot} com &#187; Design</title>
	<atom:link href="http://thehiddenrock.com/category/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://thehiddenrock.com</link>
	<description>a blog by kasia lorenc</description>
	<lastBuildDate>Thu, 20 Oct 2011 21:04:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Learning CSS Part 1</title>
		<link>http://thehiddenrock.com/learning-css-part-1/2009-03-11/</link>
		<comments>http://thehiddenrock.com/learning-css-part-1/2009-03-11/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 01:11:03 +0000</pubDate>
		<dc:creator>kasia</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[cascading style sheet]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://thehiddenrock.com/?p=502</guid>
		<description><![CDATA[Today I want to introduce you to a great resource for learning CSS and what it's all about (I'll be posting more CSS resources in the next couple of days). This tutorials covers all the basics so it's perfect for anyone just starting out. All you need to know is a little bit of html, as css works with your html documents controlling the design elements.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve talked about CSS (cascading style sheets) before in my post about <a href="http://thehiddenrock.com/another-quick-fix-changing-the-text-color-of-your-wordpress-theme/2009-01-24/">changing the text color in your WordPress blog</a>.</p>
<p>Today I want to introduce you to a great resource for learning CSS and what it&#8217;s all about (I&#8217;ll be posting more CSS resources in the next couple of days). This tutorials covers all the basics so it&#8217;s perfect for anyone just starting out. All you need to know is a little bit of html, as css works with your html documents controlling the design elements.</p>
<p>As I&#8217;ve mentioned before, <strong>HTML is the content</strong> of your website whereas <strong>CSS is the presentation</strong> of your website.</p>
<h3><a href="http://www.w3schools.com/css/">CSS tutorial by w3schools.com</a></h3>
<p>This is a great place to start learning CSS. This step-by-step tutorial will:</p>
<ul>
<li>walk you through how CCS works</li>
<li>define and demonstrate syntax, grouping, selectors, etc</li>
<li>show you how to insert a sylesheet into your html document</li>
<li>provide you with plenty of examples on working with backgrounds, colors, fonts, tables, lists &#8230; the list goes on</li>
</ul>
<p>There&#8217;s also a quiz you can take after finishing up the tutorial to test your CSS skills and make sure you understand everything. And once you&#8217;re done, don&#8217;t forget to bookmark the <a href="http://www.w3schools.com/css/css_reference.asp">CSS Reference</a> for future use.</p>
<p>So if you&#8217;re ready to start learning CSS today <a href="http://www.w3schools.com/css/css_intro.asp">click and get started!</a></p>
<p><a href="http://www.w3schools.com/css/"><img src="http://thehiddenrock.com/wp-content/uploads/2009/03/11.jpg" alt="Learning CSS" title="Learning CSS" width="742" height="508" class="alignnone size-full wp-image-506" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://thehiddenrock.com/learning-css-part-1/2009-03-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning html &#8212; images, fonts &amp; colors</title>
		<link>http://thehiddenrock.com/html-images-fonts-colors/2009-02-02/</link>
		<comments>http://thehiddenrock.com/html-images-fonts-colors/2009-02-02/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 18:10:07 +0000</pubDate>
		<dc:creator>kasia</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://classes.tametheweb.com/kasiag/?p=47</guid>
		<description><![CDATA[This week I learned more fun html stuff and the some practical things as well. DOCTYPES Document Type Declaration (aka DOCTYPE) helps browsers understand what version of HTML the page is using. Wikipedia defines it as: &#8220;&#8230;an instruction that associates a particular SGML or XML document (for example, a webpage) with a Document Type Definition [...]]]></description>
			<content:encoded><![CDATA[<p>This week I learned more fun html stuff and the some practical things as well.</p>
<h3>DOCTYPES</h3>
<p><a href="http://www.w3.org/QA/2002/04/valid-dtd-list.html" target="_blank">Document Type Declaration</a> (aka DOCTYPE) helps browsers understand what version of HTML the page is using. <a href="http://en.wikipedia.org/wiki/Document_Type_Declaration" target="_blank">Wikipedia</a> defines it as:</p>
<blockquote><p>&#8220;&#8230;an instruction that associates a particular SGML or XML document (for example, a webpage) with a Document Type Definition (DTD) (for example, the formal definition of a particular version of HTML). In the serialized form of the document, it manifests as a short string of markup that conforms to a particular syntax.&#8221;</p></blockquote>
<h3>No robots</h3>
<p>I also learned a neat trick to prevent search engines from indexing our pages. All you have to do is add this line of code to your &lt;head&gt; section:</p>
<blockquote><p> &lt;meta name=&#8221;robots&#8221; content=&#8221;noindex, nofollow&#8221; /&gt;</p></blockquote>
<h3>resources</h3>
<p>Here are some good resources for learning html and how to build a website:</p>
<h3>html</h3>
<ul>
<li><a href="http://www.maconstateit.net/tutorials/XHTML/default.htm" target="_blank">HTML &amp; CSS Tutorial</a></li>
<li><a href="http://www.w3schools.com/html/html_intro.asp" target="_blank">Introduction to HTML</a></li>
<li><a href="http://www.htmlcodetutorial.com/" target="_blank">HTML Code Tutorial</a></li>
<li><a href="http://www.htmlhelp.com/reference/html40/structure.html" target="_blank">Structure of an HTML 4 Document</a></li>
<li><a href="http://www.w3.org/QA/2002/04/valid-dtd-list.html" target="_blank">Recommended list of DTDs </a></li>
</ul>
<h3>images</h3>
<ul>
<li><a href="http://www.scantips.com/basics09.html" target="_blank">Image file formats and tips for inserting images</a></li>
<li><a href="http://www.yourhtmlsource.com/images/fileformats.html" target="_blank">More information on image file formats</a></li>
<li><a href="http://www.flickr.com/" target="_blank">Use Flickr to find images for public use</a></li>
<li><a href="http://www.sxc.hu/" target="_blank">Use stock.xchng to find stock images</a></li>
<li><a href="http://www.picnik.com/" target="_blank">Picnik &#8212; online image editor</a></li>
<li><a href="http://www.myimager.com/" target="_blank">myImage &#8212; another online image editor</a></li>
</ul>
<h3>fonts &#038; colors</h3>
<ul>
<li><a href="http://www.efuse.com/Design/web_fonts_basics.html" target="_blank">Web Type 101 &#8212; web fonts basics</a></li>
<li><a href="http://www.geocities.com/SiliconValley/6658/fontsize.html" target="_blank">Sizing fonts</a></li>
<li><a href="http://html-color-codes.com/" target="_blank">Hexadecimal web color chart</a></li>
</ul>
<p>
<center>| &nbsp; originally posted on my <a href="http://classes.tametheweb.com/kasiag">classes.tametheweb.com blog</a> &nbsp; |</center></p>
]]></content:encoded>
			<wfw:commentRss>http://thehiddenrock.com/html-images-fonts-colors/2009-02-02/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another quick fix: changing the text color of your WordPress theme</title>
		<link>http://thehiddenrock.com/another-quick-fix-changing-the-text-color-of-your-wordpress-theme/2009-01-24/</link>
		<comments>http://thehiddenrock.com/another-quick-fix-changing-the-text-color-of-your-wordpress-theme/2009-01-24/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 21:26:15 +0000</pubDate>
		<dc:creator>kasia</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[cascading style sheet]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress stylesheet]]></category>

		<guid isPermaLink="false">http://thehiddenrock.com/?p=263</guid>
		<description><![CDATA[In my last article I showed you how to change the color of specific text within single posts and pages with a really easy addition of some extra code. Today we&#8217;ll go over another quick fix &#8212; changing the text color in your WordPress theme &#8212; so it affects every post and page. The fun [...]]]></description>
			<content:encoded><![CDATA[<p>In <a href="http://thehiddenrock.com/changing-text-color/2008-09-25/">my last article</a> I showed you how to change the color of specific text within single posts and pages with a really easy addition of some extra code.</p>
<p>Today we&#8217;ll go over another quick fix &#8212; <strong>changing the text color in your WordPress theme</strong> &#8212; so it affects every post and page. The fun thing is that you can specify a different color for links (like I did here, did you notice? all my links are in <font color="#0066CC">blue</font> so they stand out more and when you hover over them the color changes to <font color="#CC0099">pink</font>.</p>
<p>In a future post I&#8217;ll go over a few different text effects you can do for links &#8212; like underline, or change the color of links when you hover over them, and stuff. It&#8217;s really cool. But for now let&#8217;s get the basics.</p>
<h3>How to change the text color in your entire theme</h3>
<p>Let&#8217;s change the text color of your whole theme, every word on every page. This might be a bit more difficult, but the good news is if you do it once you won&#8217;t have to do it again. Unless you want to, of course.</p>
<p>The design of your site, including the text color, is controlled in your <strong>css file</strong>, otherwise known as the <strong>stylesheet</strong>.</p>
<p>To find your stylesheet, click on the <em>Design</em> tab and then <em>Theme Editor</em>:</p>
<div class="captionfull"><img src="http://www.thehiddenrock.com/wp-content/uploads/2008/09/color/4.jpg" alt="Another quick fix: changing the text color of your WordPress theme" title="Another quick fix: changing the text color of your WordPress theme" align="middle" width="469" height="133" border="0" /></div>
<p>Now, locate your <strong>Stylesheet (style.css)</strong> under the <em>Theme Files</em> on the right:</p>
<div class="captionleft"><img src="http://www.thehiddenrock.com/wp-content/uploads/2008/09/color/5.jpg" alt="Another quick fix: changing the text color of your WordPress theme" title="Another quick fix: changing the text color of your WordPress theme" align="middle" width="285" height="530" border="0" /></div>
<p><strong>A note about stylesheets:</strong></p>
<p>WordPress is all about stylesheets, as are many newer websites. </p>
<p>Stylesheets have made it much easier to change design elements, such as color, and page layouts of websites.</p>
<p><strong>CSS</strong> stands for <strong>Cascading Style Sheets</strong> &#8212; and basically what it does is it controls the design elements of your entire theme all from a single (occasionally multiple) file. Makes sense?</p>
<p>Think of it this way: HTML is the content of your website &#8212; and &#8212; CSS is the presentation of your website. </p>
<p>As WordPress Codex puts it: CSS &quot;allows you to store style presentation information (like colors and layout) separate from your HTML structure. This allows precision control of your website layout and makes your pages faster and easier to update.&quot;</p>
<p>If you want to read up on CSS in WordPress check out <a href="http://codex.wordpress.org/CSS">this article</a> from the WP codex.</p>
<p>And for more about the layout and design of a WordPress blog see <a href="http://codex.wordpress.org/Blog_Design_and_Layout#WordPress_and_CSS">this helpful list of links</a> that cover everything from basics to specific, and advanced design including information on themes, templates and customization.</p>
<h3>Changing the text color in your WordPress theme</h3>
<p>Each theme is different, and each stylesheet will also be different. To understand what each tag in your stylesheet does you will need a bit of patience and some experimenting. I&#8217;m going to be using the default WordPress theme Kubrick for this example and you can experiment with that theme as well, until you get a hang of it.</p>
<p>Now, as I explained <a href="http://thehiddenrock.com/changing-text-color/2009-01-17/">in my previous post</a> colors are represented by hexadecimal numbers that look like this: #FF0000 and sometimes like this: #333. They can have letters and/or numbers and can have 6 or 3 hexadecimal characters, but will always start with the <strong>#</strong> notation. </p>
<p>Without going through and trying to understand what every single thing in your stylesheet does (since all you want to do is simply change the color of some text), take a close look at your stylesheet and notice where these codes are listed. These are going to be the areas of your site (text, background color, borders, etc.) that are in color.</p>
<p><strong>Please note:</strong> before making any changes, make sure to do a backup of your original stylesheet in case you want to go back to it. And if you haven&#8217;t already you might need to make your css file writable before editing it in WordPress.</p>
<p>The Kubrick theme, like many themes, makes it easy by labeling the different section of the stylesheet. So once you&#8217;re in the stylesheet you&#8217;ll notice this:</p>
<p><img src="http://thehiddenrock.com/wp-content/uploads/2009/02/1.jpg" alt="Kubrick style.css" title="Kubrick style.css" width="498" height="292" class="alignleft size-full wp-image-374" /></p>
<p>The comment area lets you know that this is the Typography and Colors area, and this is where we can experiment with some colors.</p>
<p>Go ahead and start by changing <strong>color: # 333;</strong> to <strong>color: # F6358A;</strong> </p>
<p>This quick change should have switched all of your paragraph text into a nice, pretty pink :)</p>
<p>Easy huh?</p>
<p>Now go experiment and see what color combination you can come up with to personalize your WordPress blog! </p>
<h3>Further Reading</h3>
<p></p>
<p>&bull; <a href="http://codex.wordpress.org/Finding_Your_CSS_Styles">Finding your CSS Styles</a></p>
<p>&bull; <a href="http://www.computerhope.com/issues/ch000072.htm">Changing the type of font displayed on web page</a></p>
<p>&bull; <a href="http://www.computerhope.com/htmcolor.htm">HTML color codes and names</a></p>
<p>&bull; <a href="http://codex.wordpress.org/CSS">WordPress CSS Information and Techniques</a></p>
]]></content:encoded>
			<wfw:commentRss>http://thehiddenrock.com/another-quick-fix-changing-the-text-color-of-your-wordpress-theme/2009-01-24/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Quick fix: changing the text color in your WordPress blog</title>
		<link>http://thehiddenrock.com/changing-text-color/2009-01-17/</link>
		<comments>http://thehiddenrock.com/changing-text-color/2009-01-17/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 00:30:12 +0000</pubDate>
		<dc:creator>kasia</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://thehiddenrock.com/?p=240</guid>
		<description><![CDATA[One of the easiest ways of making a quick change to your WordPress theme is changing the text color. And the good news is — it’s a quick and easy change! Today I’m going to show you how to change the color in selective pieces of text only. My next post will explain how to change the text color in every post and page on your blog — and how to make your links stand out with a different color.

]]></description>
			<content:encoded><![CDATA[<p>One of the easiest ways of making a quick change to your WordPress theme is <strong><font color="#195799">changing</font> <font color="#8B008B">the</font> <font color="#6E8B3D">text</font> <font color="#FF8C00">color.</font> </strong></p>
<p>Sure images can make a world of difference, but for a blog with no images this might be the only customization you can make to your theme. And the good news is &#8212; it&#8217;s a quick and easy change!</p>
<p>Today I&#8217;m going to show you how to change the color in selective pieces of text only. My next post will explain how to change the text color in every post and page on your blog &#8212; and how to make your links stand out with a different color.</p>
<p><br/></p>
<h3>How to change the text color in a single post or page</h3>
<p>If you just want to change the text color of a few words or sentences &#8212; and not make the change to your whole theme there&#8217;s an extra piece of code you can add in that will do that for you.</p>
<p>First make sure that you&#8217;re viewing the html of your post, so click on the <strong>HTML</strong> tab in your <em>Post</em> box:</p>
<div class="captionfull"><img src="http://www.thehiddenrock.com/wp-content/uploads/2008/09/color/1.jpg" alt="Quick fix: changing the text color in your WordPress blog" title="Quick fix: changing the text color in your WordPress blog" align="middle" width="754" height="88" border="0" /></div>
<p>Then all you have to do is put in this code:</p>
<div class="captionfull"><img src="http://www.thehiddenrock.com/wp-content/uploads/2008/09/color/3.jpg" alt="Quick fix: changing the text color in your WordPress blog" title="Quick fix: changing the text color in your WordPress blog" align="middle" width="382" height="106" border="0" /></div>
<p>Of course, remember to substitute the <strong>Enter text here</strong> with whatever words you want to change the color of and make sure that you select the right color &#8212; #000000  is just black.</p>
<p>Now you can use the word <strong>black</strong> instead of the number <strong>#000000</strong> &#8212; the color change will still work, but I would recommend the numbers (for a number of reasons that I&#8217;m not going to go in here, just trust me it will work better).</p>
<p>If you&#8217;re not familiar with the number codes for all colors, don&#8217;t worry you&#8217;re not alone. There are plenty of places to find them. </p>
<p>One site I use for quick reference is this <a href="http://www.somacon.com/p142.php"><strong>CSS Color Chart</strong></a> &#8212; all you have to do is find the color you like and write down the hex number:</p>
<div class="captionfull"><img src="http://www.thehiddenrock.com/wp-content/uploads/2008/09/color/6.jpg" alt="Quick fix: changing the text color in your WordPress blog" title="Quick fix: changing the text color in your WordPress blog" align="middle" width="348" height="587" border="0" /></div>
<p><br/><br />
And by the way if you want to make the HTML tab in your posts and pages to be permanent (which I actually recommend, because it will force you to learn html) you can go to your User Account under <em>Users</em>, and <em>Your Profile</em>, and in your <em>Personal Options</em> section at the top uncheck the box that says <strong>Use the visual editor when writing</strong>:</p>
<div class="captionfull"><img src="http://www.thehiddenrock.com/wp-content/uploads/2008/09/color/2.jpg" alt="Quick fix: changing the text color in your WordPress blog" title="Quick fix: changing the text color in your WordPress blog" align="middle" width="556" height="277" border="0" /></div>
<p>You might hate the change at first, but six months from now when you&#8217;re bragging to your friends that you know html &#8212; you&#8217;ll thank me :)</p>
<p>&#8230;</p>
<p>I hope this quick fix helps. My next post will discuss how to make the color change global, so it affects the text in your entire theme.  </p>
]]></content:encoded>
			<wfw:commentRss>http://thehiddenrock.com/changing-text-color/2009-01-17/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

