<?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>ComputerChimp.com &#187; Blogging</title> <atom:link href="http://computerchimp.com/category/blogging/feed" rel="self" type="application/rss+xml" /><link>http://computerchimp.com</link> <description>Computer Basics for Beginners</description> <lastBuildDate>Wed, 13 Jul 2011 14:37:12 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3</generator> <item><title>Tweaking Your Blog Design with CSS</title><link>http://computerchimp.com/wordpress/tweaking-your-blog-design-with-css.html</link> <comments>http://computerchimp.com/wordpress/tweaking-your-blog-design-with-css.html#comments</comments> <pubDate>Sun, 14 Jun 2009 12:48:21 +0000</pubDate> <dc:creator>Joe Kraynak</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Thesis]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[CSS]]></category><guid
isPermaLink="false">http://computerchimp.com/?p=267</guid> <description><![CDATA[Behind every WordPress blog is a theme that controls the look and layout of the blog. As I explain in &#8220;Make a Website, Changing the Look and Layout with a WordPress Theme,&#8221; you can change the entire look and layout of your WordPress blog by installing and activating a different theme. Every theme contains one [...]]]></description> <content:encoded><![CDATA[<p></p><p>Behind every WordPress blog is a <em>theme</em> that controls the look and layout of the blog. As I explain in &#8220;<a
href="http://computerchimp.com/website/make-a-website-changing-the-look-and-layout-with-a-wordpress-theme.html">Make a Website, Changing the Look and Layout with a WordPress Theme</a>,&#8221; you can change the entire look and layout of your WordPress  blog by installing and activating a different theme.</p><p>Every theme contains one or more CSS (Cascading Style Sheets). Each stylesheet contains codes that tell Web browsers how to display particular elements on your blog, including text, images, sidebars, headers, and footers. CSS codes are structured something like this:</p><p><code>selector { property: value; }</code></p><p>The <em>selector</em> indicates the element that the style applies to (such as a heading, paragraph, or image), the <em>property</em> defines the aspect of the object that will be modified (such as its color or alignment), and the <em>value</em> defines the setting for the property (such as blue or center). Here&#8217;s an example:</p><p><code>h3 {color: #0033FF; font-size: 22px; font-family: Arial; padding-bottom: 20px; }</code></p><p>This &#8220;style&#8221; tells Web browsers to display any text formatted as a Heading 3 (using the HTML tag &lt;h3&gt;) as blue, 22 pixels, Arial followed by 20 pixels of blank space below it.</p><p>As you&#8217;re composing blog entries, any text you format as a Heading 3 will be formatted according to the CSS property values assigned to it. You can change the appearance of all Heading 3 items in your blog simply by editing the h3 entry in your blog&#8217;s stylesheet as explained later in this post.</p><blockquote><p><strong>Tip</strong><br
/> For a list of CSS properties and values associated with each property, check out the W3 School&#8217;s <a
href="http://www.w3schools.com/css/css_reference.asp">CSS Reference</a>.</p></blockquote><h3>Understanding CSS Selectors</h3><p>A CSS selector indicates the type of object each property value is applied to. Common selectors include&#8230;</p><ul><li><strong>p</strong> for paragraphs</li><li><strong>img</strong> for images</li><li><strong>h1</strong>, <strong>h2</strong>, <strong>h3</strong>, <strong>h4</strong>, <strong>h5</strong>&#8230; for headings</li><li><strong>ul</strong> for unnumbered (bulleted) lists</li><li><strong>ol</strong> for numbered lists</li><li><strong>li</strong> for items in a list</li></ul><p>This is pretty simple stuff, but CSS complicates things by allowing for a couple different types of selectors, as described in the following sections.</p><blockquote><p><strong>Tip</strong><br
/> You can group selectors to apply property values to two or more elements. For example, h1, h2, h3, h4, h5 {color:blue; } would make all headings numbered 1-5 blue.</p></blockquote><h4>Class Selectors</h4><p>A <em>class selector</em> enables you to create multiple style rules for a given element. For example, you can create three paragraph classes – <strong>p.left {text-align: left}</strong>, <strong>p.center {text-align: center}</strong>, and <strong>p.right {text-align: right}</strong>. When composing your blog entry, you can add the <em>class attribute</em> to a paragraph&#8217;s opening tag to specify which class you want to apply, for example >&lt;p class=&#8221;center&#8221;&gt;.</p><p>You can also create a class that is not associated with any given element by omitting the element designation from the selector. For example, you can create a <strong>.center {text-align: center}</strong> class, which you can then apply to any text element, such as paragraphs, images, headings, addresses, and definitions. For example, &lt;img class=&#8221;center&#8221; src=&#8221;http://www.mydomain.com/images/image.jpg&#8221; /&gt; would center an image while &lt;p class=&#8221;center&#8221;&gt; would center a paragraph.</p><h4>ID Selectors</h4><p>ID selectors are similar to class selectors, but they use a pound sign (#) instead of a period and apply formatting to only a single occurrence of a specific element. For example, you can apply <strong>p#footer {font-size: small; font-style: italic}</strong> to a paragraph at the bottom of a page to display the paragraph as a footer in small, italic text.</p><p>Some theme designers use the ID selector to apply different formatting for different sections of the blog; for example, <strong>#content li</strong> to control the appearance of list items in the content area and <strong>#l_sidebar li</strong> to control the appearance of list items in the left sidebar.</p><h4>CSS Comments</h4><p>Most WordPress stylesheets include <em>comments</em> that serve no other purpose than to provide information to anyone who may want to edit the file, including you. Comment text is marked with a forward slash followed by an asterisk, like this:</p><p><code>/* This is a comment. */</code></p><p>Comments usually designate groups of CSS formatting codes. For example, the designer may include a comment before each group of codes that apply to the header, footer, and content area. You can learn a great deal about how a designer formatted particular elements by reading the comments.</p><blockquote><p><strong>Tip</strong><br
/> It&#8217;s a good idea to insert a comment describing any changes you make to your blog&#8217;s stylesheet, so you can easily change the setting back if something goes wrong. At least make a note of any changes.</p></blockquote><h3>Editing Styles in WordPress</h3><p>You can edit your blog&#8217;s stylesheet and other files that comprise the theme you&#8217;re using from within WordPress. Here&#8217;s what you do:</p><ul><li>Log in to WordPress as you normally do. The WordPress Dashboard appears.</li><li>Click <strong>Appearance</strong> and then <strong>Editor</strong>. The contents of your blog&#8217;s stylesheet should appear. If it doesn&#8217;t, click the <strong>Stylesheet</strong> link under Styles.</li><li>Edit the styles as desired. (Editing styles is like editing any text document.)</li><li>Click the <strong>Update File</strong> button to save your changes.</li></ul><h3>Editing Styles in Thesis</h3><p>If you&#8217;re using the <a
title="Thesis Theme" href="http://diythemes.com/?a_aid=JoeKraynak">Thesis theme</a> (which I use on this blog as well as most of the blogs I manage), editing styles is a little more complicated at first, but after you learn the basics, managing your styles with Thesis is actually easier. The difference is that Thesis discourages users from editing the stylesheet directly. Instead, you leave the stylesheet as is and enter any changes in a separate Thesis <em>custom stylesheet</em>. This way, if you make a mistake, you know exactly where to find it – in the custom stylesheet.</p><blockquote><p><strong>Tip</strong><br
/> The Thesis how-to manual tells you to download the file you want to edit, open it in a text editor, make your changes, and then upload the file. A better way is to install the Thesis OpenHook plugin.</p><p>With Thesis OpenHook, you can edit the custom stylesheet from WordPress rather than having to open the custom.css file in a separate editor. After installing and activating OpenHook, click <strong>Appearance</strong> in the WordPress Dashboard, click <strong>Thesis OpenHook</strong>, and then scroll down to the Custom Stylesheet box to view or edit the contents of custom.css.</p><p>If you don&#8217;t like that idea, consider using your hosting service&#8217;s file manager. In <a
title="Bluehost" href="http://www.BlueHost.Com/track/joekraynak">Bluehost</a> (the hosting service I use), you can login, click File Manager, and use it to navigate to the folder that contains the custom.css file: <strong>/wp-content/themes/thesis-15/custom</strong>. You can then click the custom.css file and click the <strong>Edit</strong> button in the toolbar at the top to open the file in the Bluehost Text Editor and make your changes online. I&#8217;ve used GoDaddy, and it has its own editor, too. Other tools are available that simplify the process of editing files online.</p></blockquote><h4>Using the Custom Stylesheet</h4><p>To use the custom stylesheet, log into WordPress and then click <strong>Appearance</strong>, <strong>Thesis Options</strong>, <strong>Custom Stylesheet</strong>, and make sure <strong>Use custom stylesheet</strong> is checked. With the custom stylesheet enabled, you can use the &#8220;custom&#8221; class selector to override any existing style for any selector.</p><blockquote><p><strong>Tip</strong><br
/> Before editing custom.css, check the Thesis Options and Design Options settings to determine whether you can make your adjustments using the Thesis built-in control panels. You can make dozens of adjustments without having to edit the custom.css file.</p></blockquote><h4>Sample Edits</h4><p>Here are some of the easy changes I made to my custom.css file for my personal blog at <a
href="joekraynak.com/blog">joekraynak.com/blog</a> (above each is a comment explaining what the new CSS declaration does):</p><p><code>/*Remove padding above and to left of header*/</code><br
/> <code>.custom #header { padding-top: 0; padding-left: 0; }</code></p><p><code>/*Indent the tagline in the header 130px*/</code><br
/> <code>.custom #tagline { position: absolute; left: 130px; }</code></p><p><code>/*When images are left-aligned add no extra space to the left, top, or bottom but 1em space to the right*/</code><br
/> <code>.custom img.alignleft { margin: 0 1em 0 0; }</code></p><p><code>/*Separate list items by 10px space in the content area – does not affect list items in sidebars*/</code><br
/> <code>.custom #content li { padding-bottom: 10px; }</code></p><p><code>/*Reduce the space between widgets in the sidebars*/</code><br
/> <code>.custom li.widget { margin-bottom: 10px; }</code></p><blockquote><p><strong>Tip</strong><br
/> Before you can change the property of a selector, you need to know what the selector is, and finding out can be a real challenge. One of the best tools to use to identify selectors is an add-on program for Mozilla&#8217;s Firefox Web browser called Firebug.</p><p>You can download a free copy of <a
title="Download Firefox" href="http://www.mozilla.com/en-US/firefox/ie-bl.html">Firefox</a> and then download and install Firebug using the Firefox browser. Kristarella.com has posted an excellent video called &#8220;<a
title="How to Use Firebug for CSS" href="http://www.kristarella.com/2009/02/how-to-use-firebug-for-css/">How to Use Firebug for CSS</a>,&#8221; demonstrating how to use the Firefox/Firebug combo to examine and experiment with CSS selectors, properties, and values on your own blog as well as other people&#8217;s blogs.</p></blockquote> ]]></content:encoded> <wfw:commentRss>http://computerchimp.com/wordpress/tweaking-your-blog-design-with-css.html/feed</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>Changing WordPress Blog Title, Tagline, Permalinks, and Admin Nickname</title><link>http://computerchimp.com/wordpress/changing-wordpress-blog-title-tagline-permalinks-and-admin-nickname.html</link> <comments>http://computerchimp.com/wordpress/changing-wordpress-blog-title-tagline-permalinks-and-admin-nickname.html#comments</comments> <pubDate>Wed, 03 Jun 2009 12:14:47 +0000</pubDate> <dc:creator>Joe Kraynak</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[WordPress]]></category><guid
isPermaLink="false">http://computerchimp.com/?p=259</guid> <description><![CDATA[After installing WordPress, one of the first things you should do is make sure the blog title and tagline are correct and that the author name for your posts is exactly how you want it to appear. In this post, I show you how to access and change crucial WordPress settings: In your Web browser, [...]]]></description> <content:encoded><![CDATA[<p></p><p>After installing WordPress, one of the first things you should do is make sure the blog title and tagline are correct and that the author name for your posts is exactly how you want it to appear. In this post, I show you how to access and change crucial WordPress settings:</p><ol><li>In your Web browser, type the address of your blog, followed by a forward slash and <strong>wp-admin</strong> and press <strong>Enter</strong>. For example, you might type <em>yourdomain.com/blog/wp-admin</em> and press <strong>Enter</strong>. The WordPress Dashboard appears.</li><li>Click <strong>Settings</strong>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/wpsettings/wpsettings01.jpg" alt="" /></p><li>Make sure the blog title and tagline are as you want them to appear in your blog header and click <strong>Save Changes</strong>. (Even if you use a header image instead of text, the blog title and tagline are important for search engines.)</li><p><img
class="aligncenter" src="http://computerchimp.com/images/wpsettings/wpsettings02.jpg" alt="" /></p><li>Under <strong>Settings</strong>, click <strong>Permalinks</strong>.</li><li>Select <strong>Custom Structure</strong>, type <strong>/%category%/%postname%.html</strong> in the text box and click <strong>Save Changes</strong>. This displays the title of the blog post in its address rather than just a number. For example, instead of displaying <em>http://www.yourdomain.com/?p=123</em> in the address bar, the address may appear as <em>http://www.yourdomain.com/wildlife/save-rain-forests.html</em>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/wpsettings/wpsettings03.jpg" alt="" /></p><li>Click <strong>Users</strong>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/wpsettings/wpsettings04.jpg" alt="" /></p><li>Rest the mouse pointer on your username and click <strong>Edit</strong>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/wpsettings/wpsettings05.jpg" alt="" /></p><li>In the <strong>Nickname</strong> box, highlight admin, type the name you want to appear whenever you post an entry, and click <strong>Save Changes</strong>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/wpsettings/wpsettings06.jpg" alt="" /></p><li>Open the <strong>Display name publicly as</strong> drop-down list and click the new nickname you created.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/wpsettings/wpsettings07.jpg" alt="" /></p><li>Under <strong>Contact Info</strong>, make sure WordPress is set up to send notifications to the correct email address you want to use.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/wpsettings/wpsettings08.jpg" alt="" /></p><li>Click <strong>Save Changes</strong>.</li></ol> ]]></content:encoded> <wfw:commentRss>http://computerchimp.com/wordpress/changing-wordpress-blog-title-tagline-permalinks-and-admin-nickname.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Make a Website: Creating a Static Home Page in WordPress</title><link>http://computerchimp.com/website/make-a-website-creating-a-static-home-page-in-wordpress.html</link> <comments>http://computerchimp.com/website/make-a-website-creating-a-static-home-page-in-wordpress.html#comments</comments> <pubDate>Fri, 29 May 2009 18:18:13 +0000</pubDate> <dc:creator>Joe Kraynak</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Thesis]]></category> <category><![CDATA[Website]]></category> <category><![CDATA[WordPress]]></category> <category><![CDATA[Create a Blog]]></category> <category><![CDATA[Create Website]]></category><guid
isPermaLink="false">http://computerchimp.com/?p=254</guid> <description><![CDATA[In this series, I’ve been teaching the basics of making a combination website/blog using Bluehost, WordPress, and Thesis. Here’s what I’ve covered so far: In Part I: Starting with Bluehost, I showed you how to open a Bluehost account, register your own domain name, and install WordPress. In Part II: Changing the Look and Layout [...]]]></description> <content:encoded><![CDATA[<p></p><p>In this series, I’ve been teaching the basics of making a combination website/blog using Bluehost, WordPress, and Thesis. Here’s what I’ve covered so far:</p><ul><li>In <a
href="http://computerchimp.com/website/make-a-website-starting-with-bluehost.html">Part I: Starting with Bluehost</a>, I showed you how to open a Bluehost account, register your own domain name, and install WordPress.</li><li>In <a
href="http://computerchimp.com/website/make-a-website-changing-the-look-and-layout-with-a-wordpress-theme.html">Part II: Changing the Look and Layout with a WordPress Theme</a>, I discussed WordPress themes and showed you how to transform the look and layout of your website/blog simply by selecting a different theme.</li><li>In <a
href="http://computerchimp.com/website/make-a-website-essential-wordpress-plugins.html">Part III: Essential WordPress Plugins</a>, I introduced you to WordPress plug-ins – small programs that add features to WordPress – and revealed my eight favorite plugins.</li></ul><p>In this part, I finally get around to showing you how to create a static home page in WordPress, so your blog can act like a website and vice versa. When people go to your site, they&#8217;ll be greeted by whatever you choose to include on your static home page and can then click a tab to access your blog. With recent versions of WordPress, the process is pretty simple (requires WordPress 2.3.1 or later):</p><ol><li>Create the <em>page</em> you want to appear as your home page. (Make sure it&#8217;s a page, not a post.)</li><p><img
class="aligncenter" src="http://computerchimp.com/images/StaticHomePage/statichomepage01.jpg" alt="Create the page you want to use as your static home page." /></p><li>Scroll down to the Discussion options and remove the checks next to <strong>Allow comments</strong> and <strong>Allow pings</strong>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/StaticHomePage/statichomepage02.jpg" alt="Disable comments and pings for this page." /></p><li>Click the <strong>Publish</strong> button to publish your new page.</li><li>Create and publish a blank page to use for your blog, and call it something like Blog or Nick&#8217;s Blog, whatever.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/StaticHomePage/statichomepage03.jpg" alt="Create a blank page for your blog." /></p><li>In the WordPress Options or Settings group (on the Administration panel), click <strong>Reading</strong>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/StaticHomePage/statichomepage04.jpg" alt="Under Settings, click Reading." /></p><li>Under <strong>Front page</strong>, click the <strong>Static page</strong> option.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/StaticHomePage/statichomepage05.jpg" alt="Choose the pages to use for the static home page and blog posts." /></p><li>Open the <strong>Front page</strong> list and choose the page you want to use as your static home page.</li><li>Open the <strong>Post page</strong> list and choose the page you want to use to display your blog posts.</li><li>Save your changes.</li></ol><p>If you&#8217;re using Thesis, you need to choose to have new pages displayed as tabs in the navigation bar:</p><ol><li>On the WordPress Administration panel, click <strong>Appearance</strong>, <strong>Thesis Options</strong>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/StaticHomePage/statichomepage06.jpg" alt="Select Thesis Options." /></p><li>Under <strong>Navigation Menu</strong> click the plus sign next to <strong>Select pages to include in nav menu</strong>.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/StaticHomePage/statichomepage07.jpg" alt="Checkmark the new pages to appear in the navigation bar." /></p><li>Check the box next to the blog page you created. Do not check the box next to the new home page you created. As long as you have the option checked to show the home link in the nav menu (see the following step), a tab for the page will appear.(Optional) In the list of pages, you can drag pages up or down to rearrange the order they will appear in your navigation bar.</li><li>Click the plus sign next to <strong>Home Link</strong> and make sure the <strong>Show home link in nav menu</strong> option is checked. You can edit the link&#8217;s name to something different for the link than you used for the page name.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/StaticHomePage/statichomepage09.jpg" alt="Checkmark Show home link in nav menu." /></p><li>Click the <strong>Save</strong> button.</li></ol><p>Your new static home page now opens whenever someone chooses to go to your site, and they can click your new Blog tab to go to your blog.</p><p><img
class="aligncenter" src="http://computerchimp.com/images/StaticHomePage/statichomepage08.jpg" alt="Your new static page greets visitors who can click the new blog tab." /></p><p>You&#8217;ll find other tutorials about this topic that recommend creating a separate template, which you can do if you want to give your home page a unique appearance, but I think most folks just want to have a static page with some unique content to greet visitors.</p><p>For more about using Thesis to design your website or blog, check out <a
href="http://joekraynak.com/blog/computers/redesigning-my-wordpress-blog-with-thesis.html">Redesigning My WordPress Blog with Thesis</a>.</p><p>This completes my four-part series on creating a combination website/blog with Bluehost, WordPress, and Thesis, but I&#8217;m not quite finished yet. In future posts, I&#8217;ll be introducing the basics of HTML (HyperText Markup Language) and CSS (Cascading Style Sheets) and showing you how to make some additional modifications to your blog. Although you can blog without knowing anything about HTML and CSS, knowing the basics can help you troubleshoot common problems and tweak your blog design to suit your tastes.</p> ]]></content:encoded> <wfw:commentRss>http://computerchimp.com/website/make-a-website-creating-a-static-home-page-in-wordpress.html/feed</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Make a Website, Changing the Look and Layout with a WordPress Theme</title><link>http://computerchimp.com/website/make-a-website-changing-the-look-and-layout-with-a-wordpress-theme.html</link> <comments>http://computerchimp.com/website/make-a-website-changing-the-look-and-layout-with-a-wordpress-theme.html#comments</comments> <pubDate>Thu, 21 May 2009 18:36:07 +0000</pubDate> <dc:creator>Joe Kraynak</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Website]]></category> <category><![CDATA[Blog as Website]]></category> <category><![CDATA[Bluehost]]></category> <category><![CDATA[Thesis]]></category> <category><![CDATA[WordPress]]></category><guid
isPermaLink="false">http://computerchimp.com/?p=237</guid> <description><![CDATA[In my previous post, &#8220;Make a Website, Starting with Bluehost,&#8221; I showed you how to sign up with Bluehost, register your own unique domain name, set up an email account on that domain, and install the WordPress blogging platform. With WordPress, you can instantly begin posting content on the Web and establishing your own Internet [...]]]></description> <content:encoded><![CDATA[<p></p><p>In my previous post, &#8220;<a
href="http://computerchimp.com/website/make-a-website-starting-with-bluehost.html">Make a Website, Starting with Bluehost</a>,&#8221; I showed you how to sign up with Bluehost, register your own unique domain name, set up an email account on that domain, and install the WordPress blogging platform. With WordPress, you can instantly begin posting content on the Web and establishing your own Internet presence. You can also create a combination website/blog, which is the ultimate goal of this series.</p><p>In this post, I show you how to completely change the layout and appearance of your WordPress blog by changing its <em>theme</em>. A theme is a collection of computer code that functions behind the scenes to control the function and formatting of your blog.</p><h3>Finding and Choosing a WordPress Theme</h3><p>Numerous talented people, and some untalented ones, have designed themes for WordPress, most of which are free for the taking. As I&#8217;m writing this, WordPress boasts a collection of nearly 800 themes. To check them out, head to the <a
href="http://wordpress.org/extend/themes/">Free Themes Directory</a> at WordPress.org.</p><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost08.jpg" alt="" /></p><p>Upon arrival, choose one of the following options to track down a theme (scroll down the page to access the different options):</p><ul><li><strong>Search:</strong> Click in the search box, type one or more <em>tags</em> to describe what you&#8217;re looking for, and click <strong>Search Themes</strong>. By &#8220;tags,&#8221; I mean things like &#8220;blue 2-column&#8221; or &#8220;silver 3-column custom header.&#8221; (For a complete list of tags, click <strong>More Info</strong> in the navigation bar on the left and then scroll down the page.)</li><li><strong>Featured Themes:</strong> The directory always lists a collection of about fifteen featured themes.</li><li><strong>Most Popular:</strong> Choosing a popular theme is usually a safe bet. Themes are usually popular for a reason, actually two reasons – it looks good and has fewer problems than less popular themes.</li><li><strong>Newest Themes:</strong> If you&#8217;re looking for something fresh, check out the newest themes on the block.</li><li><strong>Most Recently Updated:</strong> The most recently updated themes are probably in the process of working out some bugs, which may prove that they&#8217;re buggy or just show you that the designer cares enough to keep the theme updated.</li></ul><blockquote><p>Looks aren&#8217;t everything. A theme can have the right look but be coded inefficiently making it buggy or difficult to customize. Unfortunately, you can&#8217;t tell just by looking at the theme or its description. When previewing a theme, be sure to check out what others have said about it. You&#8217;ll may have to try a few themes before you hit on one that has the right combination of good looks and performance.</p></blockquote><h3>Downloading a WordPress Theme</h3><p>After you find a theme you like, the next step is to download it. This is pretty easy. You just click the <strong>Download</strong> button and follow instructions to copy the theme to your computer.</p><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost09.jpg" alt="" /></p><blockquote><p><strong>Tip:</strong> Consider creating a separate WordPressThemes folder on your hard drive and storing all of your downloaded themes in this folder.</p></blockquote><h3>Uploading Your Theme</h3><p>Themes are stored as compressed (zipped) files, so you want to decompress the file before uploading it. To unzip the file, take the following steps:</p><ol><li>Open the folder in which you saved the theme file you just downloaded.</li><li>Right-click the zipped theme folder and click <strong>Extract All</strong>.</li><li>Follow the onscreen instructions to complete the operation.</li></ol><p>Assuming everything has gone according to plan, you should now have two folders of the same name – one zipped and one not – on your computer. You can delete the zipped version, if desired.</p><p>Now, upload the unzipped folder to the WordPress &#8220;themes&#8221; directory on your hosting service. Here&#8217;s how you install a theme using Bluehost:</p><ol><li>Go to Bluehost and login to your account. The Control Panel appears.</li><li>Click <strong>Unlimited FTP</strong> and wait for the FTP window to appear, as shown below.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost10.jpg" alt="" /></p><li>In the Local File System list, change to the drive and folder on your computer where your theme folder is stored.</li><li>In the file list for your hosting service, double-click on the <strong>public_html</strong> folder and then change to the folder that contains your WordPress themes. If you installed WordPress in the root directory, your themes should be in <strong>/public_html/wp-content/themes</strong>. You should already have a few theme folders inside the themes folder.</li><li>Go back to the Local File System list and click the theme folder you want to upload to your hosting service, and then click the right arrow that appears between the two lists, as shown below.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost11.jpg" alt="" /></p><li>Wait until the upload is complete. The theme folder you uploaded should now be displayed in the themes folder on your hosting service.</li></ol><p>Now that the theme is in place, you&#8217;re ready to activate it in WordPress.</p><h3>Activating Your Theme</h3><p>From the WordPress Dashboard, you can activate your theme. Here&#8217;s how:</p><ol><li>In your Web browser, type the address of your blog followed by <strong>/wp-admin</strong> and press <strong>Enter</strong>. For example, you might type something like <strong>www.yourname.com/wp-admin</strong> and press <strong>Enter</strong>. The WordPress login screen should appear, as shown below.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost12.jpg" alt="" /></p><li>Type your username and password in the appropriate boxes and click <strong>Log In</strong>. The WordPress Dashboard appears.</li><li>Click <strong>Appearance</strong> and then <strong>Themes</strong>.</li><li>Click the theme you just uploaded. WordPress displays a preview window showing how your blog might look with the new theme. Previews can be deceiving, but they give you a general idea.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost13.jpg" alt="" /></p><li>Click the <strong>Activate</strong> link in the upper right corner of the preview window. This applies the theme to your blog, which should now have an entirely new look.</li></ol><blockquote><p>The cool thing about themes is that you can always switch back to what you had if you don&#8217;t like what you see.</p></blockquote><h3>Installing the Thesis Theme</h3><p>If you&#8217;ve been following this series, you know that I&#8217;m a big fan of the <a
href="http://diythemes.com/?a_aid=JoeKraynak">Thesis theme</a> for WordPress. It costs $87 but it looks great, and it has saved me much more than $87 in time and aggravation. The choice is yours, but if I were you, I&#8217;d go with Thesis.</p><p>The steps for installing Thesis are almost the same as those for installing any other theme. You download the theme to your computer and then upload it to the <strong>/wpcontent/themes</strong> folder on your hosting service. Then, you need to take a few additional steps. Here&#8217;s what you do if you&#8217;re using Bluehost:</p><ol><li>After uploading the Thesis theme, login to Bluehost and go to the Control Panel.</li><li>Click the <strong>File Manager</strong> icon, click <strong>Go</strong>, and wait for the File Manager to appear.</li><li>Wind your way to the <strong>/wp-content/themes/thesis-15/custom-sample</strong> folder, click <strong>Rename</strong>, and change the folder name custom-sample to just <strong>custom</strong> as shown below.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost14.jpg" alt="" /></p><li>Change back to the <strong>/wp-content/themes/thesis-15/ </strong>folder.</li><li>Select the <strong>layout.css</strong> file, click <strong>Permissions</strong>, and change the file&#8217;s permissions to 666, as shown below.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost15.jpg" alt="" /></p><li>[optional] If you’d like to give Thesis the ability to auto-crop thumbnail images for you, then go to <strong>/wp-content/themes/thesis-15/</strong> click the <strong>cache</strong> folder, click <strong>Permissions</strong>, and change the folder&#8217;s permissions to 775 as shown below.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost16.jpg" alt="" /></p><li>Inside your WordPress dashboard, go to <strong>Appearance</strong>,  <strong>Themes</strong>, and then activate Thesis 1.5.</li></ol><h3>Tweaking a Standard WordPress Theme</h3><p>Some themes offer a few ways you can tweak the design without having to edit the files that comprise the theme. For example, in the WordPress Default theme, you can click <strong>Appearance</strong> and then <strong>Header Image and Color</strong> to give your blog&#8217;s header a unique look.</p><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost17.jpg" alt="" /></p><p>Some themes support widgets that allow you to add stuff to the sidebars. For example, I use widgets on both <a
href="http://joekraynak.com/blog">JoeKraynak.com/blog</a> and <a
href="http://computerchimp.com">ComputerChimp.com</a> to display cover images for the books I&#8217;ve written along with links to recent posts, small advertisements, and a list of categories.</p><p>To add or remove widgets, click <strong>Appearance</strong> and then <strong>Widgets</strong>, and use the available options. (The figure below shows a few types of available widgets.) I&#8217;ll talk more about creating widgets in a future post.</p><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost18.jpg" alt="" /></p><p>To really take control of your theme, however, you have to edit the various files that comprise the theme. To do this, click <strong>Appearance</strong>, <strong>Editor</strong>. The WordPress Editor appears, as shown below, displaying the content of one of the theme&#8217;s editable files. On the right is a list of files you can edit.</p><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost19.jpg" alt="" /></p><p>Most of the changes you&#8217;re going to make are to CSS (Cascading Style Sheet) settings that control things like the size, position, and color of text and how images are positioned in relation to text. CSS can be very complicated. I&#8217;ll be blogging about that in the future, too.</p><h3>Tweaking Your Blog Design with Thesis</h3><p>With the Thesis theme, you can tweak your blog&#8217;s design without having to deal with CSS. Instead, Thesis provides its own control panels – Thesis Options and Design Options that allow you to control much of the formatting and layout by selecting your preferences via the control panels.</p><p>To access the Thesis control panels, click <strong>Appearance</strong> and then <strong>Thesis Options</strong> or <strong>Design Options</strong>.</p><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost20.jpg" alt="" /></p><blockquote><p>Although Thesis lets you tweak the design and layout with its control panels, these control panels do not give you full command over your blog. For more advanced customizations, you&#8217;ll need to know how to edit two Thesis files in its &#8220;custom&#8221; folder – custom.css and custom_functions.php. I&#8217;ll show you some examples in a future post.</p></blockquote><p>That&#8217;s it for now. In my next post, I&#8217;ll introduce you to my favorite WordPress plugins – add-on features that can really make your WordPress blogging easier and more enjoyable. I&#8217;ll show you how to install the plugins, activate them, and configure them for your use. See &#8220;<a
title="WordPress Plugins" href="http://computerchimp.com/website/make-a-website-essential-wordpress-plugins.html">Make a Website: Essential WordPress Plugins</a>.&#8221;</p> ]]></content:encoded> <wfw:commentRss>http://computerchimp.com/website/make-a-website-changing-the-look-and-layout-with-a-wordpress-theme.html/feed</wfw:commentRss> <slash:comments>16</slash:comments> </item> <item><title>Make a Website, Starting with Bluehost</title><link>http://computerchimp.com/website/make-a-website-starting-with-bluehost.html</link> <comments>http://computerchimp.com/website/make-a-website-starting-with-bluehost.html#comments</comments> <pubDate>Sun, 17 May 2009 12:39:42 +0000</pubDate> <dc:creator>Joe Kraynak</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Website]]></category> <category><![CDATA[Bluehost]]></category> <category><![CDATA[Register Domain Name]]></category> <category><![CDATA[Website Hosting]]></category><guid
isPermaLink="false">http://computerchimp.com/?p=190</guid> <description><![CDATA[You can take several approaches to creating and managing your own site on the Internet, starting with low-end stuff like creating a free blog on WordPress.com to high-end stuff like hiring a professional designer to set up everything for you. In this series, I lead you down the middle of the road. This series assumes [...]]]></description> <content:encoded><![CDATA[<p></p><p>You can take several approaches to creating and managing your own site on the Internet, starting with low-end stuff like creating a free blog on WordPress.com to high-end stuff like hiring a professional designer to set up everything for you. In this series, I lead you down the middle of the road. This series assumes you want:</p><ul><li>Your own domain, like www.yourname.com with an email address like yourfirstname@yourname.com.</li><li>A website or blog on your own, unique domain. (In this series, I show you how to use blogging software to create a combination website/blog.)</li><li>The satisfaction of doing it yourself.</li></ul><p>I&#8217;ve registered most of my domain names through Bluehost and have been using it as my hosting service for about three years. (A <em>hosting service</em> is where the files that make up your site will ultimately live on the Internet.) With Bluehost, you can&#8230;</p><ul><li>Register your own, unique domain name</li><li>Create one or more websites or blogs</li><li>Have up to 2500 email accounts for your domain name – like jack@companyname.com, jill@companyname.com, and kerry@companyname.com</li><li>Create your own message boards</li><li>&#8230; and more</li></ul><p>To find out more, visit <a
title="Bluehost" href="http://www.BlueHost.Com/track/joekraynak/computerchimp" target="_blank">Bluehost</a>, click the <strong>Tell Me More</strong> button, and then click the <strong>Demo Login&#8230;</strong> button. This logs you into a mock Bluehost Control Panel, were you can take Bluehost for a test drive. A tutorial window should pop up, providing additional details.</p><h3>Register a Domain Name</h3><p>Registering a domain name is pretty easy, assuming it&#8217;s not already taken, but you should spend some time deciding on a good name. When you&#8217;re trying to come up with a catchy name that plays well on the Web, check out &#8220;<a
title="How to Choose a Good Domain Name" href="http://www.seomoz.org/blog/how-to-choose-the-right-domain-name" target="_blank">12 Rules for Choosing the Right Domain Name</a>&#8221; by Rand Fishkin.</p><p>Several sites allow you to check domain name availability for free, including Whois.net, Internic.net, ajaxwhois.com, www.domjax.com, and Bluehost.com. When you find a name you like that&#8217;s available, register it. On Bluehost.com, here&#8217;s what you do:</p><ul><li>If you don&#8217;t have a Bluehost account, go to <a
title="Bluehost" href="http://www.BlueHost.Com/track/joekraynak/computerchimp" target="_blank">Bluehost.com</a>, click <strong>Domain Check</strong>, and follow the onscreen instructions to register your domain and open a Bluehost account.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost01.jpg" alt="" /></p><li>If you&#8217;re already a Bluehost customer, log in to the Control Panel, scroll down to the Domains area, click <strong>Register Domain</strong>, and follow the on-screen instructions.</li></ul><h3>Create an Email Account</h3><p>One of the first things you&#8217;ll want to do on Bluehost is create an email account. You can then access your mail via the Web by going to mail.yourname.com or you can set up your own email program, such as Outlook Express to fetch your mail for you. Setting up a new email account is a snap:</p><ol><li>Log on to Bluehost, if you&#8217;re not already logged on.</li><li>Go to the Control Panel.</li><li>Scroll down to the Mail section and click <strong>Email Accounts</strong>.</li><li>Type the name you want to use in your email address and select the domain (if you have multiple domains in your account), as shown below.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost02.jpg" alt="" /></p><li>Type the password you want to use in the <strong>Password</strong> and <strong>Password (Again)</strong> boxes.</li><li>Click <strong>Create</strong>. The new email account is added to your Current Accounts list.</li></ol><p>To configure Outlook or Outlook Express for sending and receiving email through the new account, scroll down to the Current Accounts list and click the <strong>Configure Mail Client Option</strong>. This opens a window that includes links you can click to have Bluehost automatically configure Outlook or Outlook Express. The required settings are also displayed, so you can configure your email client yourself, even if you happen to use something other than Outlook.<br
/> <img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost03.jpg" alt="" /></p><h3>Install WordPress</h3><p>The next thing you&#8217;re likely going to want to do on Bluehost is install WordPress – the program you&#8217;ll use to create and manage your blog/website.</p><blockquote><p>Bluehost has several website creation and management tools, including Page Wizard Site Builder. People often waste a lot of time with these &#8220;Wizards&#8221; and wind up with mediocre sites to show for their efforts. WordPress (or better yet WordPress + Thesis) gives you much greater flexibility.</p></blockquote><p>Before you proceed with the installation, consider where you&#8217;re going to have the WordPress files installed:</p><ul><li><strong>The root directory:</strong> This is probably the best option if your site is going to consist of only one blog, only one website, or a combination blog/website as described in this series. By installing in the root directory, people can pull up your site in their browsers by entering <strong>www.yourname.com</strong>.</li><li><strong>A subdirectory:</strong> This is a great option if you plan on having your blog separate from your website, because it places all your blog files in a separate folder. To get to your site, however, people will need to tack the folder name onto the end of your domain name, as in <strong>www.yourname.com/blog</strong>. I used this option for FinkShrink.com, where the main website is on <a
href="http://finkshrink.com">FinkShrink.com</a> and the blog is on <a
href="http://finkshrink.com/blog">FinkShrink.com/blog</a>.</li><li><strong>A subdomain:</strong> With a subdomain, you can install WordPress into a separate subdirectory (folder) and then create a subdomain, such as blog.yourdomain.com that people can enter in their browsers to go to your blog. (You can easily create a subdomain through the Bluehost Control Panel.)</li></ul><blockquote><p><strong>Advanced:</strong> On JoeKraynak.com, I installed my blog in a separate folder and use a &#8220;redirect&#8221; to steer traffic from JoeKraynak.com to JoeKraynak.com/blog. In other words, if you try to go to JoeKraynak.com, you&#8217;ll end up at JoeKraynak.com/blog.</p></blockquote><p>On Bluehost, installing WordPress is a snap with SimpleScripts. Here&#8217;s what you do:</p><ol><li>Log into Bluehost and go to the Control Panel, if you&#8217;re not already there.</li><li>Scroll down to Software / Services and click the <strong>WordPress</strong> icon.</li><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost04.jpg" alt="" /></p><li>Follow the onscreen instructions to complete the installation.</li></ol><p>Once WordPress is installed, you can visit your new blog by entering its address in your Web browser. It doesn&#8217;t look like much, but the Internet wasn&#8217;t built in a day, either.</p><p>To log in to WordPress, type its address in your Web browser followed by <strong>wp-login.php</strong> or <strong>wp-admin</strong> and press <strong>Enter</strong>. Enter your username and password, as shown below, and click <strong>Log In</strong>.<br
/> <img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost05.jpg" alt="" /><br
/> The WordPress Dashboard appears, which gives you access to everything you need to start posting entries and tweaking your blog layout and appearance.</p><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost06.jpg" alt="" /></p><p>You can click the <strong>New Post</strong> button (upper right of the Dashboard) to display the screen below, which provides all the tools you need to compose, format, and publish a blog post.</p><p><img
class="aligncenter" src="http://computerchimp.com/images/bluehost/bluehost07.jpg" alt="" /></p><p>Next time, I&#8217;ll discuss <em>themes</em> – the code that works behind the scenes to control the look and layout of your blog. You can completely revamp the appearance of your blog by changing themes – it&#8217;s almost as easy as changing your clothes! See &#8220;<a
title="Change WordPress Theme" href="http://computerchimp.com/website/make-a-website-changing-the-look-and-layout-with-a-wordpress-theme.html">Make a Website, Changing the Look and Layout with a WordPress Theme</a>.&#8221;</p> ]]></content:encoded> <wfw:commentRss>http://computerchimp.com/website/make-a-website-starting-with-bluehost.html/feed</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>Making and Managing a Website as a Blog</title><link>http://computerchimp.com/website/making-and-managing-a-website-as-a-blog.html</link> <comments>http://computerchimp.com/website/making-and-managing-a-website-as-a-blog.html#comments</comments> <pubDate>Thu, 14 May 2009 13:13:58 +0000</pubDate> <dc:creator>Joe Kraynak</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Website]]></category> <category><![CDATA[Blog as Website]]></category> <category><![CDATA[Bluehost]]></category> <category><![CDATA[Create Blog]]></category> <category><![CDATA[Create Website]]></category> <category><![CDATA[Thesis]]></category> <category><![CDATA[WordPress]]></category><guid
isPermaLink="false">http://computerchimp.com/?p=185</guid> <description><![CDATA[Blogging software has become so sophisticated that most people no longer need complicated and expensive website creation and management tools to build and maintain a Web presence. In less than 30 minutes, you can register your own domain name, install the blogging software (also called a blogging platform), make a few tweaks to the design, [...]]]></description> <content:encoded><![CDATA[<p></p><p>Blogging software has become so sophisticated that most people no longer need complicated and expensive website creation and management tools to build and maintain a Web presence. In less than 30 minutes, you can register your own domain name, install the blogging software (also called a <em>blogging platform</em>), make a few tweaks to the design, and start posting content to the Web. You can then spend as much or as little time as you want customizing your blog.</p><div
class="wp-caption aligncenter" style="width: 450px"> <img
title="WordPress Add New Post" src="http://computerchimp.com/images/bluehost-thesis/addnewpost.jpg" alt="With a blogging platform, posting content to your site is like composing a document in Microsoft Word." width="450" height="228" /><p
class="wp-caption-text">With a blogging platform, posting content to your site is like composing a document in Microsoft Word.</p></div><p>I&#8217;ve created several websites and blogs, including <a
href="http://joekraynak.com/blog">JoeKraynak.com</a>, <a
href="http://finkshrink.com">FinkShrink.com</a>, <a
href="http://FinkShrink.com/blog">FinkShrink.com/blog</a>, <a
href="http://Slampapi.com/blog">Slampapi.com/blog</a>, and <a
href="http://DrRobertWood.com">DrRobertWood.com</a>. In the process, I settled on what I believe is the perfect collection of tools for the average Joe or Joanne to build and maintain a Web presence:</p><ul><li><a
href="http://www.BlueHost.com/track/joekraynak/computerchimp" target="_blank">Bluehost</a> – to host my sites (and provide me with my own personal email address)</li><li>WordPress – the blogging platform I use to post content to my site</li><li><a
href="http://diythemes.com/?a_aid=JoeKraynak" target="_blank">Thesis</a> – a WordPress theme that controls the overall layout and appearance of my site (you can choose from over 4 million free themes, but I paid $87 for Thesis, because I couldn&#8217;t find anything else that was quite as flexible and powerful)</li><li>Thesis OpenHook – a free WordPress plugin that makes it easier to configure Thesis</li><li>A collection of additional free WordPress plugins to do everything from reducing comment spam to making my site more attractive to search engines like Google</li></ul><p>Over the coming weeks, I&#8217;ll be posting about each of these tools and showing how to use them to set up a blog that looks and functions like a combination blog and website.</p> ]]></content:encoded> <wfw:commentRss>http://computerchimp.com/website/making-and-managing-a-website-as-a-blog.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WordPress&#8230; 4 Million Themes&#8230; Ugh!</title><link>http://computerchimp.com/blogging/wordpress-4-million-themes-ugh.html</link> <comments>http://computerchimp.com/blogging/wordpress-4-million-themes-ugh.html#comments</comments> <pubDate>Sun, 26 Apr 2009 19:43:33 +0000</pubDate> <dc:creator>Joe Kraynak</dc:creator> <category><![CDATA[Blogging]]></category> <category><![CDATA[Thesis]]></category> <category><![CDATA[WordPress Themes]]></category><guid
isPermaLink="false">http://computerchimp.com/?p=150</guid> <description><![CDATA[If you blog, you&#8217;ve probably heard of WordPress. It&#8217;s a blogging platform that makes it easy to post content on the Web. You just type your entry in a form, click the Publish button, and your entry appears on your blog (sort of like a Web site). What you&#8217;re reading right now, for example, is [...]]]></description> <content:encoded><![CDATA[<p></p><p>If you blog, you&#8217;ve probably heard of WordPress. It&#8217;s a blogging platform that makes it easy to post content on the Web. You just type your entry in a form, click the Publish button, and your entry appears on your blog (sort of like a Web site). What you&#8217;re reading right now, for example, is a blog post. A <em>theme</em> controls the appearance of everything on the blog and sometimes its functionality. You can change the entire look and layout of your blog simply by installing and activating a new theme. It&#8217;s as easy as changing clothes.<span
id="more-150"></span></p><p>Recently I was helping a colleague of mine create a new blog at <a
title="Slampapi Blog" href="http://slampapi.com/blog">Slampapi.com/blog</a>, so I needed to go shopping for a template. I asked friends to recommend templates. One said, &#8220;That should be easy enough. WordPress has over 4 million of them!&#8221; That was exactly my problem. I have trouble picking out a tube of toothpaste at the grocery store. How on earth could I be expected to choose from over 4 million templates!</p><p>Further compounding the problem is the fact that WordPress offers no effecient way for browsing through its massive collection. They don&#8217;t even sort the themes by category or color scheme. (I&#8217;m partial to three-column themes, and we were looking for something in grayscale.) The categories presented in the <a
title="WordPress Themes Directory" href="http://wordpress.org/extend/themes/">WordPress Themes directory</a> consist of Most Popular, Newest, and Most Recently Updated. Those were of no use for me. When I did a search for &#8220;three-column grayscale&#8221; I was presented with a long list of themes that included everything from 1- to 4-column themes. Ugh!</p><p>Finally, I used my &#8220;Call a friend&#8221; option and called upon my blog expert buddy, <a
title="Mikal Belicove" href="http://www.belicove.com">Mikal Belicove</a>. He recommended the Thesis theme. He told me to watch the <a
title="Thesis Theme Demo Video" href="http://diythemes.com/">16-Minute Demo Video </a>and then let him know what I thought. I took his advice and watched the video. Wow! The video made the process of customizing the blog as easy as toasting a slice of bread. I was SOLD! I ordered the developer&#8217;s edition for $167, downloaded my copy of the theme, installed it, and was ready to roll&#8230; or so I thought.</p><p>The one thing I wanted to do is replace the blog title at the top with a large graphic. I&#8217;d done it before in WordPress without a hitch using a <em>free template</em>. Unfortunately, I could find no similar option in Thesis. What a ripoff, I thought. The one big customization thing I wanted to do, and I couldn&#8217;t find a way to do it!</p><p>So, I proceeded to do what I usually do when I try and fail at a task &#8211; I read the instructions. After some reading and playing with Thesis for a day, I realized that it is a well-designed theme &#8211; very powerful and flexible and even simple for most users. It can be more challenging than expected, however, if you need to customize the overall look, layout, or functionality of the template. In such cases, you may have to write scripts or wrestle with some CSS formatting codes, as you would need to do if you were customizing a free theme.</p><p>The difference with Thesis is that instead of making changes to the theme files, which are usually packed with a lot of code, you leave those files alone and make changes to two &#8220;custom&#8221; files &#8211; custom.css and custom_functions.php. This prevents users from having to search through a lot of code to find the code they want to modify and from inadvertently messing up the core theme files. In a way, this simplifies customization, but it takes some getting used to.</p><p>If you&#8217;re thinking of using Thesis, just keep your expectations in check. It comes with a bit of a learning curve, but once you get over the hump, you&#8217;ll never want to go back.</p> ]]></content:encoded> <wfw:commentRss>http://computerchimp.com/blogging/wordpress-4-million-themes-ugh.html/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk
Database Caching 1/17 queries in 0.046 seconds using disk

Served from: computerchimp.com @ 2012-02-05 08:33:47 -->
