<?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>computeraxe &#187; CSS</title>
	<atom:link href="http://computeraxe.com/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://computeraxe.com</link>
	<description>wordpress tips and tricks</description>
	<lastBuildDate>Thu, 26 Aug 2010 15:30:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>CSS Rounds Corners in Firefox, But Not in IE8</title>
		<link>http://computeraxe.com/css-rounds-corners-firefox-not-ie8/</link>
		<comments>http://computeraxe.com/css-rounds-corners-firefox-not-ie8/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 20:26:00 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[corners]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=267</guid>
		<description><![CDATA[Firefox/Mozilla browsers are gaining shares of the browser market and for good reason. Upbeat features let the user take complete control of their browsing experience, which is one main reason behind their gaining popularity. Add-On tools can help most any &#8230; <a href="http://computeraxe.com/css-rounds-corners-firefox-not-ie8/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Firefox/Mozilla browsers are gaining shares of the browser market and for good reason. Upbeat features let the user take complete control of their browsing experience, which is one main reason behind their gaining popularity. Add-On tools can help most any website developer to see that their site is put together in a valid way and that has pushed Firefox use among developers to probably a very high level. I still have yet to hear another web developer state that they prefer IE over Firefox, and I&#8217;m pretty sure that all of us have cursed IE6!</p>
<p>Firefox also champions the use of future CSS, which are CSS features that will only be seen by IE users at some time in the future. Ok, I made that up, but since Internet Explorer is playing the catchup game, I think it&#8217;s only fitting to point out an example.</p>
<p>Looking at some CSS basics&#8230;we have a way to draw a box around some content. It&#8217;s called the border property. The top, left, right and bottom sides of the box can be assigned diferent values for the width, style and color. Each of these values can be assigned separately or all at once.</p>
<p>Separately:</p>
<div class="box">
.box {<br />
border-width: 1px;<br />
border-style: solid;<br />
border-color: #000;<br />
}
</div>
<p>All together, in the order <em>width, style, color</em>:</p>
<div class="box">
.box {<br />
border: 1px solid #d1d1d1;<br />
}
</div>
<p>If you want to have different widths, styles or colors for your box, then you&#8217;ll have to use the properties that target each side, like so:</p>
<div class="sbox">
.box {<br />
border-left: 1px dashed #000;<br />
border-right: 2px solid #5ca3b7;<br />
border-top: 1px dashed #000;<br />
border-bottom: 2px solid #5ca3b7;<br />
}
</div>
<p>That&#8217;s nice, but sometimes we really don&#8217;t want the square boxy look. Rounded corners are nice, aren&#8217;t they? Well, our Firefox users can see rounded corners for the same box that we&#8217;ve built for our menu. All we have to do is add one property to the menu, called the -moz-border-radius, and specify its size. IE simply ignores this property, so those boxes will show pointed corners.</p>
<p>.roundedbox {<br />
-moz-border-radius:10px;<br />
}</p>
<p>The 10 pixel radius is the size of the rounded corner. We probably want to add a little padding to the menu box so the content isn&#8217;t smashed against the border, so we&#8217;ll set that at 10 px, too.</p>
<p>Here&#8217;s a menu box that will show rounded corners in Firefox/Mozilla browsers:</p>
<div class="rbox">
.roundedbox {<br />
border:1px solid #5ca3b7;<br />
padding:10px;<br />
-moz-border-radius:10px;<br />
}
</div>
<p>There are ways to get the rounded corner look in IE browsers, but it&#8217;s a bit more work. For now, we&#8217;ll continue to use the -moz-border-radius property in appreciation of our Firefox users.</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/css-rounds-corners-firefox-not-ie8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calendar Pick-A-Date Scripts Reviewed</title>
		<link>http://computeraxe.com/calendar-pick-a-date-scripts-reviewed/</link>
		<comments>http://computeraxe.com/calendar-pick-a-date-scripts-reviewed/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 15:51:41 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=220</guid>
		<description><![CDATA[This week I needed to make a form where the user needed to enter two dates in order to produce a report with the selected start and end dates. What were my options? I considered writing my own php script &#8230; <a href="http://computeraxe.com/calendar-pick-a-date-scripts-reviewed/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This week I needed to make a form where the user needed to enter two dates in order to produce a report with the selected start and end dates. What were my options?</p>
<p>I considered writing my own php script where I would have separate pull-down boxes for the day, month and year to assure that there was no mistake as to the actual dates. That would take a little extra format massaging to create the date in MySQL format, so I looked for scripts that others had already written. Who wouldn&#8217;t?</p>
<p>Formatting dates can drive a person crazy. Does &#8217;06-08-2000&#8242; mean June 8th or the 6th of August? Writing for the Web should be universal. The month-day format that we tend to use in the U.S. is confusing to everybody else who uses the day-month format, and vice-versa.</p>
<p>Writing by hand I like to use this format &#8217;12-Mar-2000&#8242; so there is no ambiguity, but that format needs to be converted to &#8216;YYYY-MM-DD&#8217; format when sending dates to MySQL.</p>
<p>So, what are my requirements for such a Date-Picker Script?</p>
<ul>
<li>easy, intuitive for the user</li>
<li>easy for me with output in MySQL format (YYYY-MM-DD)</li>
<li>unrestricted license would be nice</li>
</ul>
<p>I tried a few different date picker scripts and decided upon SpiffyCalendar because it&#8217;s the most advanced, yet easily modified to suit my purposes. Also, there is an established support system via a Yahoo! user group. That&#8217;s really nice, and unexpected.</p>
<p>Here&#8217;s the scripts I tried and the pros and cons for each&#8230;most weren&#8217;t as user-friendly as SpiffyCalendar.</p>
<p>&nbsp;</p>
<h3><a href="http://www.phpclasses.org/browse/package/3611/download/zip.html">PHP Calendar</a></h3>
<ul>PROS</p>
<li>I like the look of this calendar, but it&#8217;s difficult to determine how to modify the calendar other than for css of calendar appearance.</li>
<li>Date output is already in MySQL format: YYYY-MM-DD</li>
</ul>
<ul>CONS</p>
<li>Can&#8217;t select year from calendar unless you click back or forward to the actual month.</li>
<li>Ugly and excessively long query strings in links.</li>
</ul>
<h3><a href="http://www.javascriptkit.com/script/script2/timestamp.shtml">DatePick</a></h3>
<ul>PROS</p>
<li>I like the little calendar icon.</li>
</ul>
<ul>CONS</p>
<li>Can&#8217;t select year from calendar unless you click back or forward to the actual month.</li>
<li>Timestamp is included. Don&#8217;t need it.</li>
<li>Relies on javascript and pop-up window to select date.</li>
<li>Calendar doesn&#8217;t update well when moving from month to month. Part of the calendar doesn&#8217;t get loaded in so all days are not selectable. Have to manually widen window to see all days.</li>
<li>Can&#8217;t select year directly, have to click through months to get to next year.</li>
<li>No directions on how to modify output.</li>
</ul>
<h3><a href="http://www.javascriptkit.com/script/script2/tengcalendar.shtml">DateTimePick</a></h3>
<ul>PROS</p>
<li>I like the little calendar icon.</li>
<li>Can modify output via provided directions.</li>
</ul>
<ul>CONS</p>
<li>Can&#8217;t select year from calendar unless you click back or forward to the actual month.</li>
<li>Relies on javascript and pop-up window to select date.</li>
<li>Calendar doesn&#8217;t update well when moving from month to month. Part of the calendar doesn&#8217;t get loaded in so all days are not selectable. Have to manually widen window to see all days.</li>
<li>Can select year directly, but calendar doesn&#8217;t update well.</li>
</ul>
<h3><a href="http://simplythebest.net/scripts/DHTML_scripts/javascripts/javascript_48.html">SpiffyCalendar</a></h3>
<p><del datetime="2010-08-26T15:28:02+00:00">Sign up to the Yahoo! Group to download the script.</del> <em>Script used to be offered at the now defunct GeoCities. The above link is the first place I found it posted afterwards.</em></p>
<ul>PROS</p>
<li>Calendar pops into page, not a separate window.</li>
<li>Can modify output via provided directions.</li>
<li>Can get help at Yahoo! Groups.</li>
<li>Unrestricted license.</li>
<li>Can refresh page containing calendars as link is not modified after picking a date or two.</li>
<li>Highlights holidays, although will have to remove Dec 1st developer&#8217;s birthday. (OK, modified holiday array in script on lines 86-87.)</li>
</ul>
<ul>CONS</p>
<li>Format of date will have to be modified for MySQL. (OK, Added <code>"cal1.dateFormat="yyyy-MM-dd";</code> after instantiation in header for calendar named &#8216;cal1&#8242;.)</li>
<li>Relies on javascript.</li>
<li>Had to modify the images folder location in the .js file to an absolute address, although things worked fine on my local server with a relative address.</li>
</ul>
<p>I&#8217;m sure there are plenty of these date-picker scripts floating around the Web. Do you have a different one to share with us? Leave a comment!</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/calendar-pick-a-date-scripts-reviewed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ColorZilla Browser Extension for Firefox</title>
		<link>http://computeraxe.com/colorzilla-browser-extension-firefox/</link>
		<comments>http://computeraxe.com/colorzilla-browser-extension-firefox/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 12:24:53 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[The GIMP]]></category>
		<category><![CDATA[browsers]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=132</guid>
		<description><![CDATA[Yet another way to explore colors is to use the ColorZilla browser extension for Firefox. This is one of my favorite ways to pick up colors as Firefox is always handy. Once installed, Colorzilla resides down in the left, bottom &#8230; <a href="http://computeraxe.com/colorzilla-browser-extension-firefox/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yet another way to explore colors is to use the <a href="http://www.iosart.com/firefox/colorzilla/">ColorZilla browser extension for Firefox</a>. This is one of my favorite ways to pick up colors as Firefox is always handy.</p>
<p>Once installed, Colorzilla resides down in the left, bottom corner of Firefox. You&#8217;ll see a little eye dropper icon. Click the eyedropper and the mouse pointer changes to a cross hair. Hover over any spot on the page and the RGB and #hex values are noted at the bottom of your browser. Click again and the color values are stored temporarily until you click on the eyedropper again.</p>
<p>If you leave the current tab and come back you&#8217;ll note that the color values have disappeared from the bottom bar, but they&#8217;re not really gone. Right-click the eyedropper and you&#8217;ll be presented with a menu of choices.</p>
<div id="attachment_133" class="wp-caption aligncenter" style="width: 227px"><a href="http://computeraxe.com/wp-content/uploads/2008/09/colorzilla-menu1.jpg"><img class="size-full wp-image-133" title="colorzilla-menu" src="http://computeraxe.com/wp-content/uploads/2008/09/colorzilla-menu1.jpg" alt="Right-click menu for ColorZilla Firefox browser extension." width="217" height="405" /></a><p class="wp-caption-text">Right-click menu for ColorZilla Firefox browser extension.</p></div>
<p>Have fun exploring all the features of ColorZilla, but take note that the details of the last color picked are ready for you to copy in your favorite format.</p>
<p>The Options menu has a hidden feature that you might want to check out:</p>
<div id="attachment_135" class="wp-caption aligncenter" style="width: 269px"><a href="http://computeraxe.com/wp-content/uploads/2008/09/colorzilla-menu-options1.jpg"><img src="http://computeraxe.com/wp-content/uploads/2008/09/colorzilla-menu-options1.jpg" alt="ColorZilla Firefox browser extension options menu." title="colorzilla-menu-options" width="259" height="261" class="size-full wp-image-135" /></a><p class="wp-caption-text">ColorZilla Firefox browser extension options menu.</p></div>
<p>Right-click on the eyedropper, click on Options, then click on <strong>Statusbar Format&#8230;</strong>. Here, you can modify the information that you see in the bottom bar of the Firefox browser when you activate ColorZilla.</p>
<div id="attachment_136" class="wp-caption aligncenter" style="width: 458px"><a href="http://computeraxe.com/wp-content/uploads/2008/09/colorzilla-menu-status1.jpg"><img src="http://computeraxe.com/wp-content/uploads/2008/09/colorzilla-menu-status1.jpg" alt="ColorZilla menu for statusbar formatting." title="colorzilla-menu-status" width="448" height="393" class="size-full wp-image-136" /></a><p class="wp-caption-text">ColorZilla menu for statusbar formatting.</p></div>
<p>Now, along with color values, you can &#8220;see&#8221; elements of a webpage, their paths, URLs and distances to other page elements.</p>
<p>A great feature that I must point out is the Webpage DOM Color Analyzer that you can reach from the Options menu. Visit a page where you like the color scheme, right-click the eyedropper and choose the <strong>Webpage DOM Color Analyzer&#8230;</strong>. A window at the bottom of the screen will show the main colors of the page, but not from the images on the page. Clicking on any of the colors in the palette will show you the css rules that are using that color.</p>
<p>ColorZillla &#8211; what a neat way to explore a page and all its colors!</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/colorzilla-browser-extension-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Your Colors in a Widget for Your Homepage or Blog</title>
		<link>http://computeraxe.com/get-your-colors-in-a-widget-for-your-homepage-or-blog/</link>
		<comments>http://computeraxe.com/get-your-colors-in-a-widget-for-your-homepage-or-blog/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 11:51:19 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[The GIMP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=122</guid>
		<description><![CDATA[Into widgets? Get all the colors you want by posting the Farbtastic Widget to your favorite site, or put it right on your desktop. Don&#8217;t have a site yet? Post your widgets to iGoogle, a Google &#8220;homepage&#8221; that you can &#8230; <a href="http://computeraxe.com/get-your-colors-in-a-widget-for-your-homepage-or-blog/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Into widgets? Get all the colors you want by posting the <a title="Widget for picking colors." href="http://www.widgetbox.com/widget/farbtastic-widget">Farbtastic Widget</a> to your favorite site, or put it right on your desktop.</p>
<p>Don&#8217;t have a site yet? Post your widgets to iGoogle, a Google &#8220;homepage&#8221; that you can modify as you see fit. Click on the iGoogle link at the the top right of www.google.com and you&#8217;ll see a version of google that you can modify to your liking by arranging tabs and blocks of content.</p>
<p>Here&#8217;s the widget I&#8217;m talking about:</p>
<p><script type="text/javascript" src="http://widgetserver.com/syndication/subscriber/InsertWidget.js?appId=18929961-7f25-4d19-bcbb-232d3d528713"></script><noscript>Get the <a href="http://www.widgetbox.com/widget/farbtastic-widget">Farbtastic Widget</a> widget and many other <a href="http://www.widgetbox.com/">great free widgets</a> at <a href="http://www.widgetbox.com">Widgetbox</a>!</noscript></p>
<p>Try moving either color pointer and see the resulting color and #hex value in the top box.</p>
<p>On the widget&#8217;s page at widgetbox, look under <strong>Get Widget</strong> on the right side of the page. If you&#8217;re not familiar with some of the icons, just hover your mouse pointer to get a tool tip that tells you the name of the site that the icon represents. Click on &#8220;more&#8230;&#8221; to see other icons. Here, you can also choose your language and modify your widget, if possible. Code is available for WordPress blogs &#8211; just look for the big W in the icon list.</p>
<p>To post the widget at iGoogle, click on the big G icon. A small window pops up that directs you to click on the &#8220;Add Widget&#8221; button to open the iGoogle installer. When the installer page opens click on the &#8220;Add to Google&#8221; button. Your new iGoogle page opens with the new widget displayed. Drag and drop the widget into the place you prefer and make sure to sign in to Google to save your page.</p>
<p>Same thing with WordPress. Add your favorite widget to a post or put it in your sidebar.</p>
<p>The only catch here is to grab the right code. If you take the code from one of the icons presented, the widget will be in its default state. Should you modify or customize your widget &#8211; like I did with Farbtastic by changing the language to English and enlarging the widget to 300 x 300 px &#8211; make sure to click on the small &#8220;Get Widget&#8221; button that has a little checkmark &#8211; it&#8217;s right below the customize part of the <strong>Get Widget</strong> section. Post your customized widget and make sure it&#8217;s what you want before you finish up with widgetbox.</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/get-your-colors-in-a-widget-for-your-homepage-or-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Toying Around with Colors? Check Out ColorToy!</title>
		<link>http://computeraxe.com/toying-around-with-colors-check-out-colortoy/</link>
		<comments>http://computeraxe.com/toying-around-with-colors-check-out-colortoy/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 13:43:56 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[The GIMP]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=116</guid>
		<description><![CDATA[On the topic of colors&#8230;here&#8217;s a fun toy, called ColorToy. Click the Random button to see randomly chosen color schemes or input your own RGB or Hex value to start the color selection. Copy the screen to save an image &#8230; <a href="http://computeraxe.com/toying-around-with-colors-check-out-colortoy/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>On the topic of colors&#8230;here&#8217;s a fun toy, called <a title="Color Toy" href="http://www.defencemechanism.com/color/">ColorToy</a>.</p>
<p>Click the Random button to see randomly chosen color schemes or input your own RGB or Hex value to start the color selection.</p>
<p>Copy the screen to save an image of the color scheme containing nine colors and their hex values.</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/toying-around-with-colors-check-out-colortoy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Color Schemes Aplenty and Saved Favorites to Boot!</title>
		<link>http://computeraxe.com/color-schemes-favorites/</link>
		<comments>http://computeraxe.com/color-schemes-favorites/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 15:42:45 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[The GIMP]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=111</guid>
		<description><![CDATA[Browse over 3600 color schemes at ColorSchemer. Professional color editing software is available from ColorSchemer. The color schemes that you can download are .cs files that can be opened by ColorSchemer Studio. Their PhotoSchemer, which helps you pick out a &#8230; <a href="http://computeraxe.com/color-schemes-favorites/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Browse over 3600 color schemes at <a title="ColorSchemer" href="http://www.colorschemer.com/schemes/">ColorSchemer</a>. Professional color editing software is available from ColorSchemer. The color schemes that you can download are .cs files that can be opened by ColorSchemer Studio. Their PhotoSchemer, which helps you pick out a color scheme based on a photo, might well be worth the price of the software!</p>
<p>But you don&#8217;t really need to download the software to pick up the color schemes that you like. Just hover your mouse pointer over the color blocks in your favorite color scheme and write down the #hex code from the tool tip. Now you&#8217;re all set to use your favorite new colors!</p>
<p>Better yet, sign up for a free account on ColorSchemer. For parting with an email address you&#8217;ll be able to build a personalized <strong>Favorite Schemes</strong> list. Once you sign up, go to the Scheme Gallery and browse to a scheme you like. You&#8217;ll see who made the scheme, the number of times its been downloaded, the scheme&#8217;s rating out of 5 stars (and how many people rated it), and a link called &#8220;Add Fav&#8221;. Click on Add Fav to put the scheme you like into your Favorite Schemes.</p>
<p>My Favorite Schemes will show what you have saved so far. What a nice service to allow us to collect these color schemes and save them for later.</p>
<p>Bookmark ColorSchemer!</p>
<p>Don&#8217;t miss the fantastic post on <a title="Named Colors" href="http://www.colorschemer.com/blog/2007/07/24/140-named-colors/">140 Named Colors!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/color-schemes-favorites/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Find That New Color Scheme for Your Next Website Design</title>
		<link>http://computeraxe.com/how-to-find-color-scheme-website-design/</link>
		<comments>http://computeraxe.com/how-to-find-color-scheme-website-design/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 14:28:53 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[The GIMP]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=105</guid>
		<description><![CDATA[I&#8217;ve been cruising through some new sites &#8211; to me at least &#8211; to get some ideas on a color scheme for a new website. I&#8217;ll have a few posts on color this week, so if you&#8217;re looking to find &#8230; <a href="http://computeraxe.com/how-to-find-color-scheme-website-design/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been cruising through some new sites &#8211; to me at least &#8211; to get some ideas on a color scheme for a new website. I&#8217;ll have a few posts on color this week, so if you&#8217;re looking to find a new color scheme for your next site, stay tuned!</p>
<p>The first site I looked at for <a title="Colour lovers site for color schemes." href="http://www.colourlovers.com/">color schemes was ColourLovers</a> and I came away duly impressed.</p>
<p>Colors, palettes and patterns can be viewed endlessly. Over 230,000 patterns and over <em>half-a-million</em> color palettes await your scores and comments.</p>
<p>The color community is thriving here with an active forum and lots of colors, patterns and palettes for free downloading.</p>
<p>Once you register with the site &#8211; it&#8217;s free &#8211; check out the palette maker. Under the Palette tab, click on Create New and start dragging colors from the color picker to the five spots just underneath <strong>Create a Palette</strong>. When you&#8217;re ready you can fill in some details for your final palette and add it to the community.</p>
<p>Colors are identified with their RGB and #hex equivalents, so it&#8217;s easy enough to plug those values into your css stylesheet or into The GIMP color picker when you need them.</p>
<p>There&#8217;s even more fun under the Patterns tab! Over a hundred patterns are ready for you to customize.</p>
<p>Colourlovers.com &#8211; what a wonderful site!</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/how-to-find-color-scheme-website-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Tools for Troubleshooting Problems with CSS and XHTML</title>
		<link>http://computeraxe.com/best-tools-troubleshooting-problems-css-xhtml/</link>
		<comments>http://computeraxe.com/best-tools-troubleshooting-problems-css-xhtml/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 13:09:53 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[browsers]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=85</guid>
		<description><![CDATA[Different browsers have their own ways of helping developers troubleshoot problems with positioning divs and combating errors that pop up here and there. I have found a few tools that are extremely valuable for developing web pages. I&#8217;m sure these &#8230; <a href="http://computeraxe.com/best-tools-troubleshooting-problems-css-xhtml/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Different browsers have their own ways of helping developers troubleshoot problems with positioning divs and combating errors that pop up here and there.</p>
<p>I have found a few tools that are extremely valuable for developing web pages. I&#8217;m sure these are very popular due to their ability of helping isolate and fix problems.</p>
<p>I prefer Firefox browser so these are my favorite browser add-ons and their features that I really like:</p>
<ul>
<li>Firebug &#8211; view divs onscreen, explore code and its output onscreen</li>
<li>Web Developer Toolbar &#8211; one-click validation, resize screen to 800&#215;600, disable cache, lots more &#8211; an army of tools</li>
<li>Total Validator &#8211; validates complete with screenshots in various browsers</li>
<li>ColorZilla &#8211; color picker, great view of css divs, zooms page</li>
</ul>
<p>Care to add to my list? What do you use to help in your WordPress and web page design?</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/best-tools-troubleshooting-problems-css-xhtml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unformatted Page Due to Corrupted Stylesheet</title>
		<link>http://computeraxe.com/unformatted-page-due-to-corrupted-stylesheet/</link>
		<comments>http://computeraxe.com/unformatted-page-due-to-corrupted-stylesheet/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 12:52:41 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://computeraxe.com/?p=84</guid>
		<description><![CDATA[Yesterday, I ran into a problem that was really confusing, to say the least. I still don&#8217;t know exactly how it happened, but the problem was that one of my WordPress blogs lost all its style. That is to say &#8230; <a href="http://computeraxe.com/unformatted-page-due-to-corrupted-stylesheet/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday, I ran into a problem that was really confusing, to say the least. I still don&#8217;t know exactly <em>how</em> it happened, but the problem was that one of my WordPress blogs lost all its style. That is to say that the pages appeared in black and white and in one long column down the page. No color. No sidebar. No header. Freak me out!</p>
<p>The content of the blog was untouched and it was apparently functioning as intended.</p>
<p>The stylesheet was resident in the theme folder and verified to contain css when I checked it using html-kit or another FTP program. I could download the stylesheet and see that everything appeared to be in there, including the <a href="http://computeraxe.com/theme-description-for-wordpress-blog-lies-in-the-stylesheet/">commented-header required for a WordPress theme</a>. If fact, WordPress did not report the theme as being broken &#8211; I guess it saw the file named <code>style.css</code> and figured the theme was kosher.</p>
<p>However, when viewed with any browser the unstyled output was seen. Also, validators sent to the blog could not find a stylesheet. <em>What the ??</em></p>
<p>The really weird part of this story is that I downloaded the stylesheet and could use it on my local machine using the same version of WordPress and the stylesheet produced the desired design. Beyond that, I downloaded the entire theme, zipped it up and sent it to another WordPress fan to check out. He could see the design in all its glory on his development machine.</p>
<p>So, we figured it must be some server configuration that was interfering somehow. Totally vague, I know. At least the problem seemed to be isolated to the online server. I had already tried to upload a number of older versions of the stylesheet, but the style did not come back.</p>
<p>What I did notice, which lead me to a solution, was that in one of those validation reports another error was produced in that the favicon.ico file was reported missing. I verified that file was also resident in the theme and ok. That made two files that the validator could not find even though <em>I could see they were indeed there.</em></p>
<p>Since the theme apparently worked fine on other systems I took the version that I had downloaded and renamed it. Then I uploaded said &#8220;new&#8221; theme to the themes directory and deleted the old theme. Exclaims of joy were now coming out of my office &#8211; it worked!</p>
<p>I don&#8217;t know how the stylesheet came to be corrupted, or if it even was, seeing the same problem with the favicon. The solution was to use a backup. It&#8217;s crazy that the backup in this case was the same theme that contained the corrupted file but the moral of the story is that performing backups are definitely worth the time it takes. If the files were corrupted I had backups ready to upload.</p>
<p>Backing up is so easy these days, especially with <a href="http://computeraxe.com/mozy/">automated services like Mozy</a>, it&#8217;s kinda dumb not to assure yourself that you can recover from gremlins that visit every now and then. Mozy gives you a free 2GB so get started on protecting your files today!</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/unformatted-page-due-to-corrupted-stylesheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>KISS Me, WordPress! Easy Category List for Stylesheet and ID for Pages</title>
		<link>http://computeraxe.com/easy-category-list-stylesheet-id-pages/</link>
		<comments>http://computeraxe.com/easy-category-list-stylesheet-id-pages/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 22:42:53 +0000</pubDate>
		<dc:creator>LizzyFin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://computeraxe.com/easy-category-list-stylesheet-id-pages/</guid>
		<description><![CDATA[Keep IT Simple, Stupid. In my way of making things harder than necessary I stumbled upon something simple. At times nothing seems simple with CSS! Check it out. Trying to style a particular post, based on whether it was a &#8230; <a href="http://computeraxe.com/easy-category-list-stylesheet-id-pages/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Keep IT Simple, Stupid.</p>
<p>In my way of making things harder than necessary I stumbled upon something simple. At times nothing seems simple with CSS! Check it out.</p>
<p>Trying to style a particular post, based on whether it was a password-protected post or not, I found that using the category assigned could help &#8211; <em>on the condition that one category name was reserved for the password-protected posts</em>. Look at this piece of WordPress code:</p>
<p><code>&lt;?php foreach((get_the_category()) as $cat)<br />
{<br />
echo $cat-&gt;category_nicename;<br />
}<br />
?&gt;</code></p>
<p>Basically, what we are asking for here is to create an array that holds the names of the categories, and then return the <em>nice names</em> of each category in lowercase and with multiple words separated by hypens.</p>
<p>So, being able to assign category names on the fly gives us the ability to assign classes based on the category. Use the above PHP code snippet in the index.php, category.php and single.php files of your WP theme.</p>
<p>Remembering that we can assign more than one class to an xhtml feature, on line 5 or 6 in each of the 3 files replace</p>
<p><code>&lt;div class="post"</code></p>
<p>with</p>
<p><code>&lt;div id="post" class="post cat-&lt;?php foreach((get_the_category()) as $cat)<br />
{<br />
echo $cat-&gt;category_nicename;<br />
}<br />
?&gt;"</code></p>
<p>Now, in your stylesheet you can target classes like <code>cat-owls</code>, <code>cat-hawks</code> and <code>cat-bald-eagles</code> on your site about big birds.</p>
<p>The KISS part comes in where I was going through steps to create a page template to replace a Page that was already written so that I could style it differently than the rest of the blog. What? Instead of going through all that, all I needed to do was pick up the ID number of the &#8220;post&#8221; of that page. Duh!</p>
<p>How simple of me to forget that the pages, as well as the posts, that we write in WordPress are assigned ID numbers. Just use the <code>#page-ID</code> in your stylesheet! Oh yeah, pick up the ID numbers of posts and pages in the admin area under Manage/ Posts or Pages.</p>
]]></content:encoded>
			<wfw:commentRss>http://computeraxe.com/easy-category-list-stylesheet-id-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
