<?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>Blog &#8211; Sheppco</title>
	<atom:link href="https://sheppco.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>https://sheppco.com</link>
	<description>Pittsburgh WordPress Development</description>
	<lastBuildDate>Sun, 08 Mar 2026 15:24:35 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://sheppco.com/wp-content/uploads/2020/04/cropped-favicon-3-32x32.png</url>
	<title>Blog &#8211; Sheppco</title>
	<link>https://sheppco.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>OsixthreeO Grid</title>
		<link>https://sheppco.com/osixthreeo-grid/</link>
		
		<dc:creator><![CDATA[Chip Sheppard]]></dc:creator>
		<pubDate>Sun, 08 Mar 2026 14:39:02 +0000</pubDate>
				<category><![CDATA[osixthreeo theme]]></category>
		<guid isPermaLink="false">https://sheppco.com/?p=1008</guid>

					<description><![CDATA[OsixthreeO employs a very simple grid system to create all the layouts. In fact it is [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">OsixthreeO employs a very simple grid system to create all the layouts. In fact it is so simple that anyone can use it. </p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p class="wp-block-paragraph">Note: this is not really all that useful considering the column blocks available with WordPress block editor.  The theme uses this system in a few spots so the css code isn&#8217;t going anywhere, might as well be aware of it.</p>
</blockquote>



<p class="wp-block-paragraph">Before the WordPress editor was updated and there were no blocks, this is what we used. It requires only a rudimentary understanding of how HTML &amp; CSS work.</p>



<p class="wp-block-paragraph">First thing to know is that all things in a HTML document (webpage) are enclosed in what we call tags. For example, the entire visible part of a webpage is enclosed in a &#8216;body&#8217; tag which looks like  &lt;body&gt; . . . &lt;/body&gt;.  Everything else, the header, all the text and images, etc&#8230; is within the opening and closing body tags. </p>



<p class="wp-block-paragraph">A paragraph of text is enclosed in paragraph tags, &lt;p&gt; &#8230; &lt;/p&gt;. We have the image tag, a blockquote tag, bold, italics, you name it.  We also have the generic &lt;div&gt; &#8230; &lt;/div&gt; tag for things like layout.  For example, if I wanted to make columns of text I would need containers to put the paragraphs of text in so they could be in stacks that are next to each other. These containers would be &#8216;div&#8217;s.</p>



<p class="wp-block-paragraph">In HTML two div tags, each with some paragraphs in them would look like this&#8230;</p>



<pre class="wp-block-code"><code>&lt;div&gt;
   &lt;p&gt; ... &lt;/p&gt;
   &lt;p&gt; ... &lt;/p&gt;
   &lt;p&gt; ... &lt;/p&gt;
&lt;/div&gt;

&lt;div&gt;
   &lt;p&gt; ... &lt;/p&gt;
   &lt;p&gt; ... &lt;/p&gt;
   &lt;p&gt; ... &lt;/p&gt;
&lt;/div&gt;</code></pre>



<p class="wp-block-paragraph">Divs and paragraphs are block elements though.  This means that they take up the entire width of the browser pushing everything else down, just like adding a block of wood to a stack of blocks, all the others are displaced vertically.</p>



<h4 class="wp-block-heading">CSS to the rescue</h4>



<p class="wp-block-paragraph">With CSS we can define the attributes of an element, for example we can tell a div to only be 50% of the browser  width and to shift to the left making room for a 2nd 50% width div &#8230; and we have columns.</p>



<p class="wp-block-paragraph">To do this we need the instructions (be only 50% and shift to the left), and a way to attach those instructions to the HTML we wrote (above).</p>



<p class="wp-block-paragraph">With CSS we can write those instructions and define them as a &#8216;class&#8217;. Then all we have to do is assign that class to the div like so &#8230; &lt;div class=&#8221;css-class&#8221;&gt; &#8230; &lt;/div&gt;</p>



<h3 class="wp-block-heading">The Grid</h3>



<p class="wp-block-paragraph">The &#8220;instructions&#8221; to create the columns mentioned above are already written, loaded and being used in this theme.  It is an 8 column grid.</p>



<p class="wp-block-paragraph">To make a div a 50% width, shifted to the left column add the class &#8216;<strong>col-1-2</strong>&#8216;.<br><strong>col</strong> for column. <strong>1-2</strong> for one half.</p>



<p class="wp-block-paragraph"><strong>Available column classes are:</strong><br>col-1-2<br>col-1-3, col-2-3<br>col-1-4, col-3-4<br>col-1-5, col-2-5, col-3-5, col-4-5<br>col-1-6, col-5-6<br>col-1-7, col-2-7, col-3-7, col-4-7, col-5-7, col-6-7<br>col-1-8, col-3-8, col-5-8, col-7-8</p>



<h4 class="wp-block-heading">Margins</h4>



<p class="wp-block-paragraph">Columns need a margin and these columns have one HOWEVER, it is a left margin and we do NOT want a left margin on the first column. To solve this we simply add a second class of &#8216;first&#8217; on the first column.</p>



<pre class="wp-block-code"><code>&lt;div class="col-1-2 first"&gt;
   &lt;p&gt; ... &lt;/p&gt;
   &lt;p&gt; ... &lt;/p&gt;
   &lt;p&gt; ... &lt;/p&gt;
&lt;/div&gt;

&lt;div class="col-1-2"&gt;
   &lt;p&gt; ... &lt;/p&gt;
   &lt;p&gt; ... &lt;/p&gt;
   &lt;p&gt; ... &lt;/p&gt;
&lt;/div&gt;</code></pre>



<p class="wp-block-paragraph">Some other ways to use the grid&#8230;</p>



<pre class="wp-block-code"><code>&lt;div class="col-1-3 first"&gt;
   &lt;p&gt; ... &lt;/p&gt;
&lt;/div&gt;

&lt;div class="col-1-3"&gt;
   &lt;p&gt; ... &lt;/p&gt;
&lt;/div&gt;

&lt;div class="col-1-3"&gt;
   &lt;p&gt; ... &lt;/p&gt;
&lt;/div&gt;</code></pre>


<div class="wp-block-image">
<figure class="alignright size-full"><img fetchpriority="high" decoding="async" width="277" height="592" src="https://sheppco.com/wp-content/uploads/2026/03/grid-cols.png" alt="" class="wp-image-1010" srcset="https://sheppco.com/wp-content/uploads/2026/03/grid-cols.png 277w, https://sheppco.com/wp-content/uploads/2026/03/grid-cols-187x400.png 187w" sizes="(max-width: 277px) 100vw, 277px" /></figure>
</div>


<pre class="wp-block-code"><code>&lt;div class="col-1-3 first"&gt;
   &lt;p&gt; ... &lt;/p&gt;
&lt;/div&gt;

&lt;div class="col-2-3"&gt;
   &lt;p&gt; ... &lt;/p&gt;
&lt;/div&gt;</code></pre>



<pre class="wp-block-code"><code>&lt;div class="col-1-4 first"&gt;
   &lt;p&gt; ... &lt;/p&gt;
&lt;/div&gt;

&lt;div class="col-1-2"&gt;
   &lt;p&gt; ... &lt;/p&gt;
&lt;/div&gt;

&lt;div class="col-1-4"&gt;
   &lt;p&gt; ... &lt;/p&gt;
&lt;/div&gt;</code></pre>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>OsixthreeO Utility Classes</title>
		<link>https://sheppco.com/osixthreeo-utility-classes/</link>
		
		<dc:creator><![CDATA[Chip Sheppard]]></dc:creator>
		<pubDate>Sun, 08 Mar 2026 14:29:08 +0000</pubDate>
				<category><![CDATA[osixthreeo theme]]></category>
		<guid isPermaLink="false">https://sheppco.com/?p=1002</guid>

					<description><![CDATA[Utility Classes OsixthreeO has several CSS classes built in for use in the post/page editor. I [&#8230;]]]></description>
										<content:encoded><![CDATA[
<h2 class="wp-block-heading">Utility Classes</h2>



<p class="wp-block-paragraph">OsixthreeO has several CSS classes built in for use in the post/page editor. I call these &#8220;utility&#8221; classes.</p>



<h3 class="wp-block-heading">Boxed Boxes</h3>



<p class="wp-block-paragraph">By default the column blocks <em>inside</em> a Columns block are not styled. With this in mind, note that each block in the WordPress editor has an &#8220;Advanced&#8221; tab and in this tab there is an input box for Additional CSS Class(es).</p>



<p class="wp-block-paragraph">By adding specific css class names in this box you can activate css classes already in your stylesheet. With this in mind the OsixthreeO theme includes a few, small &#8220;utility&#8221; classes made specifically for the Columns block.</p>



<p class="wp-block-paragraph">TO START:<br>Create a &#8220;Columns&#8221; block.<br>Be sure the columns container is selected and not one of the inner content blocks. Find and open the &#8220;Advanced&#8221; tab (bottom right), add the word <strong>boxed</strong>.</p>



<p class="wp-block-paragraph">This will add padding around each individual column block and give it a white background.</p>



<p class="wp-block-paragraph">You may then add any of the other available class names, separated by a space.</p>



<p class="wp-block-paragraph">boxed &#8211; THIS ONE is required in order to activate the others.<br>bdr     &#8211; 1 pixel border<br>shade &#8211; box-shadow:<br>rad4   &#8211; 4 pixel border-radius<br>rad8   &#8211; 8 pixel border-radius<br>no-pad<br>use only one of the following<br>  up50  &#8211; push blocks up 50px<br>  up75  &#8211; push blocks up 75px<br>  up100 &#8211; push blocks up 100px<br>  up125 &#8211; etc…<br>  up150, up160, up175, up200</p>


<div class="wp-block-image">
<figure class="aligncenter size-large"><img decoding="async" width="1024" height="485" src="https://sheppco.com/wp-content/uploads/2026/03/utility-classes-1024x485.jpg" alt="utility classes in column block" class="wp-image-979" srcset="https://sheppco.com/wp-content/uploads/2026/03/utility-classes-1024x485.jpg 1024w, https://sheppco.com/wp-content/uploads/2026/03/utility-classes-400x189.jpg 400w, https://sheppco.com/wp-content/uploads/2026/03/utility-classes.jpg 1120w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
</div>


<pre class="wp-block-code"><code>SCSS

.wp-block-columns.boxed {
    position: relative;
    z-index: 2;

    .wp-block-column {
        background-color: #ffffff;
        padding: 1.5em 1.5em 1em;
    }

    &amp;.bdr .wp-block-column {
        border: 1px solid rgba(153,153,153,0.25);
    }
    &amp;.shade .wp-block-column {
        box-shadow: 0px 0px 10px 0px rgba(153,153,153,0.25);
    }
    .rad4 .wp-block-column {
        border-radius: 4px;
    }
    .rad8 .wp-block-column {
        border-radius: 8px;
    }

    &amp;.no-pad .wp-block-column {
        padding: 0;
    }

    &amp;.up50 {margin-top: -50px;}
    &amp;.up75 {margin-top: -75px;}
    &amp;.up100 {margin-top: -100px;}
    &amp;.up125 {margin-top: -125px;}
    &amp;.up150 {margin-top: -150px;}
    &amp;.up160 {margin-top: -160px;}
    &amp;.up175 {margin-top: -175px;}
    &amp;.up200 {margin-top: -200px;}
    @include breakpoint(phone-h) {
        &amp;.up50 {margin-top: -25px;}
        &amp;.up75 {margin-top: -37px;}
        &amp;.up100 {margin-top: -50px;}
        &amp;.up125 {margin-top: -62px;}
        &amp;.up150 {margin-top: -75px;}
        &amp;.up160 {margin-top: -80px;}
        &amp;.up175 {margin-top: -87px;}
        &amp;.up200 {margin-top: -100px;}
    }
}</code></pre>



<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>OsixthreeO Custom Header</title>
		<link>https://sheppco.com/osixthreeo-custom-header/</link>
		
		<dc:creator><![CDATA[Chip Sheppard]]></dc:creator>
		<pubDate>Sun, 08 Mar 2026 14:09:09 +0000</pubDate>
				<category><![CDATA[osixthreeo theme]]></category>
		<guid isPermaLink="false">https://sheppco.com/?p=983</guid>

					<description><![CDATA[Here are some examples of the custom header options in action. Gradient color combinations Left &#8211; [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph"><br>Here are some examples of the custom header options in action.</p>



<h4 class="wp-block-heading">Gradient color combinations</h4>



<div class="wp-block-columns has-2-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><a href="https://sheppco.com/wp-content/uploads/2026/03/ch-demo1.jpg" target="_blank" rel="noreferrer noopener"><img decoding="async" width="800" height="360" src="https://sheppco.com/wp-content/uploads/2026/03/ch-demo1.jpg" alt="" class="wp-image-984" srcset="https://sheppco.com/wp-content/uploads/2026/03/ch-demo1.jpg 800w, https://sheppco.com/wp-content/uploads/2026/03/ch-demo1-400x180.jpg 400w" sizes="(max-width: 800px) 100vw, 800px" /></a></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="wp-block-paragraph">Left &#8211; #4169e1<br>Right &#8211; #fcd6f7</p>
</div>
</div>



<div class="wp-block-columns has-2-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><a href="https://sheppco.com/wp-content/uploads/2026/03/ch-demo2.jpg"><img loading="lazy" decoding="async" width="800" height="360" src="https://sheppco.com/wp-content/uploads/2026/03/ch-demo2.jpg" alt="" class="wp-image-985" srcset="https://sheppco.com/wp-content/uploads/2026/03/ch-demo2.jpg 800w, https://sheppco.com/wp-content/uploads/2026/03/ch-demo2-400x180.jpg 400w" sizes="auto, (max-width: 800px) 100vw, 800px" /></a></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="wp-block-paragraph">Left &#8211; #4169e1<br>Right &#8211; #fcd6f7</p>
</div>
</div>



<div class="wp-block-columns has-2-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><a href="https://sheppco.com/wp-content/uploads/2026/03/ch-demo4-768x346-1.jpg"><img loading="lazy" decoding="async" width="768" height="346" src="https://sheppco.com/wp-content/uploads/2026/03/ch-demo4-768x346-1.jpg" alt="" class="wp-image-986" srcset="https://sheppco.com/wp-content/uploads/2026/03/ch-demo4-768x346-1.jpg 768w, https://sheppco.com/wp-content/uploads/2026/03/ch-demo4-768x346-1-400x180.jpg 400w" sizes="auto, (max-width: 768px) 100vw, 768px" /></a></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="wp-block-paragraph">Left &#8211; #4169e1<br>Right &#8211; #fcd6f7</p>
</div>
</div>



<div class="wp-block-columns has-2-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><a href="https://sheppco.com/wp-content/uploads/2026/03/ch-demo5-768x346-1.jpg"><img loading="lazy" decoding="async" width="768" height="346" src="https://sheppco.com/wp-content/uploads/2026/03/ch-demo5-768x346-1.jpg" alt="" class="wp-image-987" srcset="https://sheppco.com/wp-content/uploads/2026/03/ch-demo5-768x346-1.jpg 768w, https://sheppco.com/wp-content/uploads/2026/03/ch-demo5-768x346-1-400x180.jpg 400w" sizes="auto, (max-width: 768px) 100vw, 768px" /></a></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="wp-block-paragraph">Left &#8211; #4169e1<br>Right &#8211; #fcd6f7</p>
</div>
</div>



<div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">Transparent image overlay</h2>



<div class="wp-block-columns has-2-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><a href="https://sheppco.com/wp-content/uploads/2026/03/ch-demo7-768x346-1.jpg"><img loading="lazy" decoding="async" width="768" height="346" src="https://sheppco.com/wp-content/uploads/2026/03/ch-demo7-768x346-1.jpg" alt="" class="wp-image-988" srcset="https://sheppco.com/wp-content/uploads/2026/03/ch-demo7-768x346-1.jpg 768w, https://sheppco.com/wp-content/uploads/2026/03/ch-demo7-768x346-1-400x180.jpg 400w" sizes="auto, (max-width: 768px) 100vw, 768px" /></a></figure>



<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>



<figure class="wp-block-image size-full"><a href="https://sheppco.com/wp-content/uploads/2026/03/ch-demo8-768x346-1.jpg"><img loading="lazy" decoding="async" width="768" height="346" src="https://sheppco.com/wp-content/uploads/2026/03/ch-demo8-768x346-1.jpg" alt="" class="wp-image-989" srcset="https://sheppco.com/wp-content/uploads/2026/03/ch-demo8-768x346-1.jpg 768w, https://sheppco.com/wp-content/uploads/2026/03/ch-demo8-768x346-1-400x180.jpg 400w" sizes="auto, (max-width: 768px) 100vw, 768px" /></a></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<ul class="wp-block-list">
<li>Some transparent PNG files</li>



<li><a href="https://sheppco.com/wp-content/uploads/2026/03/bg-clouds.png" target="_blank" rel="noreferrer noopener">Clouds</a></li>



<li><a href="https://sheppco.com/wp-content/uploads/2026/03/bg-grunge.png" target="_blank" rel="noreferrer noopener">Grunge</a></li>



<li><a href="https://sheppco.com/wp-content/uploads/2026/03/bg-dots.png" target="_blank" rel="noreferrer noopener">Dots</a></li>



<li><a href="https://sheppco.com/wp-content/uploads/2026/03/bg-noise.png" target="_blank" rel="noreferrer noopener">Noise</a></li>



<li><a href="https://sheppco.com/wp-content/uploads/2026/03/bg-splat.png" target="_blank" rel="noreferrer noopener">Splat</a></li>
</ul>
</div>
</div>



<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">Hero image or Video</h2>



<div class="wp-block-columns has-2-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><a href="https://sheppco.com/wp-content/uploads/2026/03/ch-demo10-768x346-1.jpg"><img loading="lazy" decoding="async" width="768" height="346" src="https://sheppco.com/wp-content/uploads/2026/03/ch-demo10-768x346-1.jpg" alt="" class="wp-image-990" srcset="https://sheppco.com/wp-content/uploads/2026/03/ch-demo10-768x346-1.jpg 768w, https://sheppco.com/wp-content/uploads/2026/03/ch-demo10-768x346-1-400x180.jpg 400w" sizes="auto, (max-width: 768px) 100vw, 768px" /></a></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-text-align-left wp-block-paragraph">Still image background.<br>Solid header background.</p>
</div>
</div>



<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>



<div class="wp-block-columns has-2-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><a href="https://sheppco.com/wp-content/uploads/2026/03/ch-demo9-768x346-1.jpg"><img loading="lazy" decoding="async" width="768" height="346" src="https://sheppco.com/wp-content/uploads/2026/03/ch-demo9-768x346-1.jpg" alt="" class="wp-image-991" srcset="https://sheppco.com/wp-content/uploads/2026/03/ch-demo9-768x346-1.jpg 768w, https://sheppco.com/wp-content/uploads/2026/03/ch-demo9-768x346-1-400x180.jpg 400w" sizes="auto, (max-width: 768px) 100vw, 768px" /></a></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-text-align-left wp-block-paragraph">Movie or hero image</p>
</div>
</div>



<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>



<h2 class="wp-block-heading">Text with HTML</h2>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="800" height="322" src="https://sheppco.com/wp-content/uploads/2026/03/ch-demo3.jpg" alt="" class="wp-image-992" srcset="https://sheppco.com/wp-content/uploads/2026/03/ch-demo3.jpg 800w, https://sheppco.com/wp-content/uploads/2026/03/ch-demo3-400x161.jpg 400w" sizes="auto, (max-width: 800px) 100vw, 800px" /></figure>



<p class="wp-block-paragraph"><strong>Primary Text Box:</strong></p>



<p class="has-background has-very-light-gray-background-color wp-block-paragraph"><code>Your Slogan Here</code><br>
<code>&lt;br&gt;&lt;br&gt;</code></p>



<p class="wp-block-paragraph"><strong>Secondary Text Box:</strong></p>



<p class="has-background has-very-light-gray-background-color wp-block-paragraph"><code> &lt;div class="col-1-2 first"&gt; <br> Your brief product or service write up for that 30 second attention window.</code><br><code>&lt; /div &gt;</code><br><code><br>&lt;div class="col-1-2 ta-center"&gt; <br> Buy now Call to Action&lt;br /&gt;<br> &lt;a href="/osixthreeo-addons/" class="btn"&gt;Get Add Ons&lt;/a&gt; <br> &lt; /div &gt; </code></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>What is a Gacillia Nut?</title>
		<link>https://sheppco.com/what-is-a-gacillia-nut/</link>
					<comments>https://sheppco.com/what-is-a-gacillia-nut/#comments</comments>
		
		<dc:creator><![CDATA[Chip Sheppard]]></dc:creator>
		<pubDate>Mon, 09 Dec 2019 19:32:51 +0000</pubDate>
				<category><![CDATA[Uncategorizable]]></category>
		<guid isPermaLink="false">https://sheppco.com/?p=469</guid>

					<description><![CDATA[There is no such thing as a Gracillia Nut! Search it and you&#8217;ll only find posts [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-image"><figure class="aligncenter size-large"><img loading="lazy" decoding="async" width="1024" height="360" src="https://sheppco.com/wp-content/uploads/2019/12/nuts.jpg" alt="" class="wp-image-474" srcset="https://sheppco.com/wp-content/uploads/2019/12/nuts.jpg 1024w, https://sheppco.com/wp-content/uploads/2019/12/nuts-400x141.jpg 400w, https://sheppco.com/wp-content/uploads/2019/12/nuts-171x60.jpg 171w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure></div>



<p class="wp-block-paragraph">There is no such thing as a Gracillia Nut! Search it and you&#8217;ll only find posts like this one talking about a popular internet scam that targets web developers.</p>



<p class="wp-block-paragraph">It starts as an email from a potential client, with a budget! AND content and a logo already produced!  And did I say a budget? A good budget, one I could definitely work with.  An import company that wants to pay a fair price for a custom website and sign on to my maintenance program. YES! The perfect client.</p>



<p class="wp-block-paragraph">Being the curious type I wanted to know a little more about this import business and what products they were importing which were going to be nuts and herbs.</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p>I have a small scale business which I want to turn into a large scale business, now it located in your country and the company is based on importing and exporting of Agriculture products such as Kola Nut, Gacillia Nut and Cocoa so I need the best layout design for it.</p></blockquote>



<p class="wp-block-paragraph">Kola nuts, cool. Cocoa, yum. What the heck is a Gracillia Nut though? I googled it and voila, what a let down. All I can find are posts about the scam containing word-for-word copies of the email I received. The budgets and names varied but pretty much everything else was exact.</p>



<p class="wp-block-paragraph">Obviously I will terminate communication.</p>



<p class="wp-block-paragraph">Reading other articles about this scam I was able to connect this to another type of scam that hit me a few years back. 3 years ago I was contacted by someone who needed a design made into a website, I said sure!! He then said he was in the hospital and could not pay the designer to release the Photoshop files. She could only accept cash and he could not go to the bank. So&#8230; his brilliant plan was he would send me a check for the cost of the website PLUS the designer&#8217;s fee. I of course would have to do the wire transfer to the designer. HA.</p>



<p class="wp-block-paragraph">That was pretty easy to spot. However it now seems that they&#8217;ve been working on this!</p>



<p class="wp-block-paragraph">As I was investigating the Gacillia Nut thing I became a bit curious about how this request for a website turns into thievery.</p>



<p class="wp-block-paragraph">Turns out that after everything is settled, after the project is a go and you have a contact name and an address, THEN comes the &#8220;I&#8217;m in the hospital&#8221; bit. Designer can&#8217;t take credit cards or whatever, send them this and I&#8217;ll send you that etc&#8230;</p>



<p class="wp-block-paragraph">Had I not been curious about what a Gacillia Nut is and searched it, I would have missed this first warning sign!</p>



<p class="wp-block-paragraph">I would have seen through the scam the second they requested money however I think that would have been 2 or 3 more emails or even a phone call down the road. By then I would have made a local and a staging area, loaded up WordPress and a starter theme on each, sync up my development  area with GIT, etc&#8230; HOURS of work. Busy work, setup stuff but still, it&#8217;s hours AND you&#8217;re all excited about it because we love this stuff!</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p>Serious bummer, dude.</p><cite>Ted Theodore Logan</cite></blockquote>
]]></content:encoded>
					
					<wfw:commentRss>https://sheppco.com/what-is-a-gacillia-nut/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
			</item>
		<item>
		<title>How Much Does a WordPress Website Cost?</title>
		<link>https://sheppco.com/how-much-does-a-wordpress-website-cost/</link>
					<comments>https://sheppco.com/how-much-does-a-wordpress-website-cost/#comments</comments>
		
		<dc:creator><![CDATA[Chip Sheppard]]></dc:creator>
		<pubDate>Fri, 03 Jun 2016 01:33:04 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[money]]></category>
		<guid isPermaLink="false">http://sheppco.com/?p=192</guid>

					<description><![CDATA[WordPress is free, right? You can sign up for a free account at WordPress.com or you [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" src="/wp-content/uploads/2016/06/website-cost.jpg" alt="WordPress website cost" width="1024" height="360" class="alignnone size-full wp-image-273" srcset="https://sheppco.com/wp-content/uploads/2016/06/website-cost.jpg 1024w, https://sheppco.com/wp-content/uploads/2016/06/website-cost-400x141.jpg 400w, https://sheppco.com/wp-content/uploads/2016/06/website-cost-171x60.jpg 171w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>WordPress is free, right?<br />
You can sign up for a free account at WordPress.com or you get your own copy of it from WordPress.org.</p>
<p><strong>So why do web developers charge thousands of dollars to build a single website?</strong></p>
<p>This <a href="https://codeable.io/wordpress-website-ecommerce-cost/">infographic from Codeable</a> does a good job showing the amount of time and cost involved in building a custom website with WordPress.</p>
<p>And <a href="http://howmuchdoesawebsiteco.st/" target="_blank" rel="noopener">here is a really nice web app for pricing a website here</a> too.</p>
<p>According to these and a few other resources, about $5000 to start. </p>
<h2>What about free themes?</h2>
<p>If you can find a theme in the <a href="https://wordpress.org/themes/" target="_blank" rel="noopener">WordPress repository</a> that works for you out-of-the-box, awesome. Load it up and start writing.</p>
<p>Maybe you need to change the coloring, resize your company logo to fit the allotted space or add a spot to your homepage for a newsletter signup. These are all easy tasks for some but for the general public not so much. You will need to invest time and for some things, lots of it.</p>
<p>If I got a new car and then decided I wanted it to be black instead of blue, then decided I was going to do it myself&#8230; that would be a train-wreck. Where would I do it? What type of paint do I use? How do I get the paint onto the car? How much paint fumes can I breath in without getting too much brain damage? How much brain damage is too much?</p>
<p>A car might not be the best analogy but the point is it would take me hours to research all that and if I <em>value my time</em> there is a <em>cost</em> associated with that research.</p>
<p>What about the tools necessary for the task such as HTML editors and FTP. Granted if you are happy with the theme as is there&#8217;s no need for any of the more techie stuff. Also, WordPress does in fact provide a way to edit theme and plugin files but what about the languages used to make changes on a website such as HTML and CSS?</p>
<p>Thing is, if you have the tools and/or know the languages for editing WordPress themes, you probably aren&#8217;t looking for a free one, you are more than likely building one&#8230; which makes this article irrelevant! ( sorry, here&#8217;s a link to <a href="https://reactforbeginners.com/" target="_blank" rel="noopener">learn React</a>, let me know how it goes because I&#8217;ve been meaning to get there for a while now ).</p>
<p>Otherwise, you will need to either hire a developer or learn how to make the changes yourself.</p>
<p>Free theme that works out-of-the-box = free = awesome.<br />
Free theme that needs customization = tools + languages + experience/know-how = cost = not free.</p>
<h2>What about premium themes?</h2>
<p>$59 for a really nice looking theme that seems to do <em>everything</em>.  The best advice I have here is to make sure you are not responding to the gorgeous images being used on the demo.</p>
<p>There are a <strong>lot</strong> of premium themes out there. Many of these are excellent, some are not. Trouble is the only people who are in a position to judge whether or not a particular theme is right for you are future-you, after you&#8217;ve already bought it, and WordPress developers. And most WordPress developers are not buying themes, they&#8217;re building them.</p>
<p>Some themes tend to out-shine the others &ndash; big beautiful images, sliders, page builders, color options, and fancy animated stuff. WOW, they do everything and they look really good doing it. These are the big sellers.</p>
<p><strong>I&#8217;ve seen it many times.</strong><br />
A premium theme is purchased based on how good the demo looks. The theme gets loaded and WTF, it&#8217;s blank.  Or perhaps the theme has demo content that you can install and it looks great, just like the demo <strong>except</strong> the demo is for a dental practice and your site is for selling your new book. Nice images but they don&#8217;t work.</p>
<p>So you begin to look for images, and you need a ton of them for this theme. 4 for the slider and one for <em>every</em> post. That is, if you want the site to look like the demo. Finding a suitable image can be difficult, you have something in mind that relates to the content you just created so you begin your search by typing in some keywords in a search engine or at a photo site like Getty. </p>
<p>Many of the suitable images you find don&#8217;t work because they&#8217;re not the right size. They&#8217;e square or tall and you needed short and wide for the slider and featured images. Others don&#8217;t work or look ugly because they clash with the site coloring.</p>
<p>Then you realize the ones you really liked, the images that could actually work for the site cost $400 each. Youch.</p>
<p>So now you&#8217;re only looking for free images. After significant effort you come up with two or three, certainly not enough to get the theme looking like the demo but, you have to start somewhere I suppose &#8230;</p>
<blockquote><p>Why do I need all these images?  I can&#8217;t go through this every time I make a post.</p></blockquote>
<p>So you decide to go with no images, or maybe use the best one for the homepage instead of a slider, sliders are passé now anyways right?</p>
<p>The site doesn&#8217;t look like the demo anymore but hey, you made it, you paid for the theme, it is what it is.</p>
<p>That&#8217;s the images, <strong>same thing goes for the content!</strong></p>
<p>The theme demo has content blocks, they look great, some are in columns, or in a &#8220;Call Out&#8221; box, maybe some quotes with a parallax background image, &#8220;our team&#8221; photos, a map and a contact form, etc&#8230;  It was exciting to imagine your content filling up these areas. Now comes the time to actually come up with that content. You write, or you pull out that which you have written for your future website. You are happy with this content, you spent a lot of time fussing over it and feel satisfied that you have captured what you think needs to be said.</p>
<p>Now it&#8217;s time to fit that content into the blocks available on your premium theme. You soon realize that the amount of text in each of these areas is pretty important. Too much text in the some areas pushes everything too far down or it makes the section too tall or lop-sided. The original balance is lost. So now you have to choose between re-writing your content to accommodate the layout or living with the unbalance.</p>
<p>Despite the beautiful demos, even a premium theme can end up looking like crap.</p>
<h2>So, What Does a WordPress Website Cost?</h2>
<p>Depends.<br />
When do you want it?<br />
What do you want to end up with?<br />
How much of your own time are you willing to put in and what is your time worth?<br />
and finally&#8230;</p>
<h2>How much value should the website bring to the table?</h2>
<p>An e-commerce site, a brochure site that represents your business and/or your brand, a portfolio site that demonstrates your craft and enables prospective clients to contact you, are all examples of how a website can be valuable.</p>
<p>If your website&#8217;s purpose is inconsequential, a wedding announcement for your friends, a family photo album, meaningless rantings, then value isn&#8217;t really an issue. Load up TwentySixteen and go. </p>
<p>If your website serves a business purpose your needs will be different. The site now represents something of value; you, your business or service or a product so having a professional looking website can be pretty important. The compromises necessary for the free and premium themes mentioned above may not fly here. </p>
<p>Granted, some studies have shown that ugly sites can perform very well but I don&#8217;t think you would have read this far if that was your plan 🙂</p>
<p>Consider a website that is customized to display your original content in a balanced layout, has a customized backend tailored to be easy for you to edit, has a color scheme that matches your logo and looks great on desktops and handheld devices.</p>
<p>The value a website brings to you or your business should be represented by the amount you are willing to pay for it.</p>
<p>If the site is simple and you don&#8217;t need anything fancy or custom, then yeah, a website could be free. There are a LOT of great looking free themes and you can get hosting for free at wordpress.com. You&#8217;ll still need to put in a few hours to figure out contact forms or any other plugin type functionality, so, not totally free I guess but close.</p>
<p>If you are a D.I.Y. type you can get hosting for under $100 a yr., install WordPress using the host&#8217;s installer and get a nice free theme from the repository. With a little bit of research into plugins and how they work, you can even add some serious functionality to your site. A bit more of an investment if you consider your time.</p>
<p>On the other hand if your website needs go beyond what an out-of-the-box theme is capable of, if you do not want to spend the time necessary learning HTML and CSS and WordPress functions and hooks, if you need your site customized to your content needs, if you want your website to accommodate the amount of time your willing to spend searching for and resizing images, if you want your website to be easy to edit regardless of how customized the layouts are&#8230; That is a valuable business tool and will probably be priced as such.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://sheppco.com/how-much-does-a-wordpress-website-cost/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>WordPress Updates</title>
		<link>https://sheppco.com/wordpress-updates/</link>
		
		<dc:creator><![CDATA[Chip Sheppard]]></dc:creator>
		<pubDate>Thu, 02 Jun 2016 16:03:34 +0000</pubDate>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[WordPress]]></category>
		<guid isPermaLink="false">http://sheppco.com/?p=188</guid>

					<description><![CDATA[Like any great product or service, WordPress undergoes constant upgrades and improvements. It is Open Source [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" src="/wp-content/uploads/2016/06/maintenance.jpg" alt="maintenance" width="1024" height="360" class="alignnone size-full wp-image-250" srcset="https://sheppco.com/wp-content/uploads/2016/06/maintenance.jpg 1024w, https://sheppco.com/wp-content/uploads/2016/06/maintenance-400x141.jpg 400w, https://sheppco.com/wp-content/uploads/2016/06/maintenance-171x60.jpg 171w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /><br />
Like any great product or service, WordPress undergoes constant upgrades and improvements. It is Open Source software which translates into hundreds of developers world-wide working on it, making it faster, more secure, easier to use, prettier, etc&#8230;</p>
<p>The fact that WordPress keeps getting improved and updated doesn&#8217;t necessarily mean that <strong>your</strong> site is reaping the benefits of these improvements.</p>
<p>WordPress requires maintenance as do its Themes and Plugins. Good news is WordPress updates are easy.</p>
<p>Updates don&#8217;t necessarily mean that the previous version was bad &mdash; The core team behind WordPress is constantly improving the software. Also keep in mind that software is complex, technologies are constantly evolving and WordPress&#8217; huge market share makes it a high yield target for hacking.</p>
<p>Updates are an integral part of using any great piece of software or hardware. They are necessary in order to keep the software secure and to roll in improvements to the interface.</p>
<p>Bottom line &#8211; you have to keep WordPress, Themes and Plugins up to date.</p>
<p>Thing is, it&#8217;s a 2 minute second process. WordPress updates are not hard to do, remembering to actually do them might be a problem for some though.</p>
<h2>Red Dot With White Number &#8211; Time for WordPress Updates</h2>
<p>In the main admin menu, under Dashboard (the top link), you will see the link for Updates.</p>
<p>The big give-away is the red dot with the white number in it. That means there is an update available. If the white number is 3, then three updates are available.  The red dots will show up in other spots of the menu as well. It will appear next to themes or next to plugins if there is an update.</p>
<p>Click on Updates to go to the updates page.  Here we have three sections. The top section is for WordPress. Next section is for plugins and the next for themes. There will be plenty of messaging to let you know exactly what needs to be updated.</p>
<p>If there are multiple updates I usually do them in the order that they appear on the page, WP Core, Plugins the Themes.</p>
<p>Be sure to backup your database before doing updates, it&#8217;s just a good idea.</p>
<p><a href="/wp-content/uploads/2016/05/wp-maintenance-1.jpg"><img loading="lazy" decoding="async" src="/wp-content/uploads/2016/05/wp-maintenance-1.jpg" alt="WordPress Updates" width="786" height="624" class="aligncenter size-full wp-image-196" srcset="https://sheppco.com/wp-content/uploads/2016/05/wp-maintenance-1.jpg 786w, https://sheppco.com/wp-content/uploads/2016/05/wp-maintenance-1-400x318.jpg 400w, https://sheppco.com/wp-content/uploads/2016/05/wp-maintenance-1-76x60.jpg 76w" sizes="auto, (max-width: 786px) 100vw, 786px" /></a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to Manage Email in cPanel</title>
		<link>https://sheppco.com/how-to-manage-email-in-cpanel/</link>
		
		<dc:creator><![CDATA[Chip Sheppard]]></dc:creator>
		<pubDate>Tue, 29 Mar 2016 17:25:56 +0000</pubDate>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[email]]></category>
		<guid isPermaLink="false">http://sheppco.com/?p=69</guid>

					<description><![CDATA[Setting up email accounts is one of those tasks that tends to wait in the shadows [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" src="/wp-content/uploads/2016/03/managing-email.jpg" alt="a dog managing some mail" width="1024" height="360" class="alignnone size-full wp-image-228" srcset="https://sheppco.com/wp-content/uploads/2016/03/managing-email.jpg 1024w, https://sheppco.com/wp-content/uploads/2016/03/managing-email-400x141.jpg 400w, https://sheppco.com/wp-content/uploads/2016/03/managing-email-171x60.jpg 171w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>Setting up email accounts is one of those tasks that tends to wait in the shadows until the final stages of website development, or worse, a week after launch. You read how having an email account for your new site is really important and using a Gmail account just doesn&#8217;t look professional. So now its time to figure out how to manage email in cPanel.</p>
<p>Despite the hype, designing and developing a website is hard. Even if you are using WordPress with a pre-made theme with no modifications, there is still writing all the content, finding images, loading product shots and descriptions, etc&#8230; it takes time.</p>
<p>Even after your site is ready and everything is perfect, little details creep up on you. Site security, SEO and Analytics are a few of the extras that can be easy to forget while focusing on the bigger picture of your business and your website.</p>
<p>Email tends to have a few gotcha&#8217;s of its own. Setting up your local email program to send and receive using a newly created email account or getting the account to work with Gmail can be troublesome. Sometimes these steps go smoothly, other times not so much. If you know how to manage email in cPanel then you can probably move along. On the other hand, if you have no clue how to set up emails or configure your email client, read on.</p>
<p><a href="/wp-content/uploads/2016/03/cPanel-01.jpg"><img loading="lazy" decoding="async" class="alignright wp-image-75 size-medium" src="/wp-content/uploads/2016/03/cPanel-01-400x200.jpg" alt="manage email in cPanel 01" width="400" height="200" srcset="https://sheppco.com/wp-content/uploads/2016/03/cPanel-01-400x200.jpg 400w, https://sheppco.com/wp-content/uploads/2016/03/cPanel-01-120x60.jpg 120w, https://sheppco.com/wp-content/uploads/2016/03/cPanel-01.jpg 700w" sizes="auto, (max-width: 400px) 100vw, 400px" /></a></p>
<h2>Log in to manage email in cPanel</h2>
<p>Using Hostgator&#8217;s shared hosting cPanel for our example, here are the very simple steps to manage email in cPanel.</p>
<p>The first step is to go to your cPanel login page. cPanel is Control Panel of your hosting account. The URL for this page was in the purchase confirmation email you received right after signing up and paying for the hosting account. It will be something like&#8230; <code>https://gator987.hostgator.com:2345</code></p>
<p>At Hostgator you only have one main username. Choosing it was the first thing you did when signing up for your hosting account. Other hosting companies may require a different username for your control panel.</p>
<p>Once you are logged into your cPanel account you will see all the options available in an intuitive, simple interface. The obligatory up-sells and affiliate offers are… somewhat modest.</p>
<h2>Access your Email Accounts</h2>
<p><a href="/wp-content/uploads/2016/03/cPanel-02.jpg"><img loading="lazy" decoding="async" class="alignright wp-image-74 size-medium" src="/wp-content/uploads/2016/03/cPanel-02-400x392.jpg" alt="manage email in cPanel 02" width="400" height="392" srcset="https://sheppco.com/wp-content/uploads/2016/03/cPanel-02-400x392.jpg 400w, https://sheppco.com/wp-content/uploads/2016/03/cPanel-02-61x60.jpg 61w, https://sheppco.com/wp-content/uploads/2016/03/cPanel-02.jpg 1000w" sizes="auto, (max-width: 400px) 100vw, 400px" /></a></p>
<p>The forth section down on the main column is Mail. The first button, top/left, is Email Accounts. This is the icon to click for creating and editing emails. Click it.</p>
<p>On this page you will see a form to create a new email address. Below the form is a list of all your email accounts.</p>
<p>&nbsp;</p>
<h3>Create a New Email Account</h3>
<p><a href="/wp-content/uploads/2016/03/cPanel-03.jpg"><img loading="lazy" decoding="async" class="alignleft wp-image-73 size-medium" src="/wp-content/uploads/2016/03/cPanel-03-367x400.jpg" alt="manage email in cPanel 03" width="367" height="400" srcset="https://sheppco.com/wp-content/uploads/2016/03/cPanel-03-367x400.jpg 367w, https://sheppco.com/wp-content/uploads/2016/03/cPanel-03-55x60.jpg 55w, https://sheppco.com/wp-content/uploads/2016/03/cPanel-03.jpg 770w" sizes="auto, (max-width: 367px) 100vw, 367px" /></a></p>
<p>Just fill in whatever you want your email to be. If the email address is taken or if you entered a character that is not allowed cPanel will let you know.</p>
<p>Definitely use the password generator. Write it down on a piece of paper and tape it to the bottom of the desk drawer. Or put it in a file with a filename that has nothing to do with passwords or websites or the internet. Encrypt it then store it somewhere secure, preferably a computer that is not connected to the internet, no WiFi.</p>
<p><strong>Click the Create Account button and your done.</strong></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-72" src="/wp-content/uploads/2016/03/cPanel-04.jpg" alt="manage email in cPanel 04" width="715" height="235" srcset="https://sheppco.com/wp-content/uploads/2016/03/cPanel-04.jpg 715w, https://sheppco.com/wp-content/uploads/2016/03/cPanel-04-400x131.jpg 400w, https://sheppco.com/wp-content/uploads/2016/03/cPanel-04-183x60.jpg 183w" sizes="auto, (max-width: 715px) 100vw, 715px" /></p>
<h3>Configure Your Local Email Client</h3>
<p>The next step is to configure your email program to communicate with this account. This step can be a P.I.T.A. for sure, however your hosting account will always provide instructions and help is available in several different ways.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-71" src="/wp-content/uploads/2016/03/cPanel-05.jpg" alt="manage email in cPanel 05" width="713" height="185" srcset="https://sheppco.com/wp-content/uploads/2016/03/cPanel-05.jpg 713w, https://sheppco.com/wp-content/uploads/2016/03/cPanel-05-400x104.jpg 400w, https://sheppco.com/wp-content/uploads/2016/03/cPanel-05-231x60.jpg 231w" sizes="auto, (max-width: 713px) 100vw, 713px" /></p>
<p>If you click the More button you will see a couple options one of which is Configure Email Client. Here you will find all the information necessary to hook up your new email account. They even provide automated apps that will configure your email program for you.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-70" src="/wp-content/uploads/2016/03/cPanel-06.jpg" alt="manage email in cPanel 06" width="796" height="226" srcset="https://sheppco.com/wp-content/uploads/2016/03/cPanel-06.jpg 796w, https://sheppco.com/wp-content/uploads/2016/03/cPanel-06-400x114.jpg 400w, https://sheppco.com/wp-content/uploads/2016/03/cPanel-06-211x60.jpg 211w" sizes="auto, (max-width: 796px) 100vw, 796px" /></p>
<p>By now you’ve noticed the “Walk Me Through” tab at the bottom of your browser screen. Clicking this tag, making a few selections and following the step by step prompts will get you through any task you’d need to manage your hosting account including how to manage email in cPanel.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to Clear Your Browser Cache</title>
		<link>https://sheppco.com/how-to-clear-your-browser-cache/</link>
		
		<dc:creator><![CDATA[Chip Sheppard]]></dc:creator>
		<pubDate>Sun, 27 Mar 2016 17:15:01 +0000</pubDate>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[browsers]]></category>
		<guid isPermaLink="false">http://sheppco.com/?p=66</guid>

					<description><![CDATA[Photo by Jeremy Bishop on Unsplash You just had some changes made to your website. Developer [&#8230;]]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="1162" height="400" src="https://sheppco.com/wp-content/uploads/2016/03/clear-road.jpg" alt="" class="wp-image-925" srcset="https://sheppco.com/wp-content/uploads/2016/03/clear-road.jpg 1162w, https://sheppco.com/wp-content/uploads/2016/03/clear-road-400x138.jpg 400w, https://sheppco.com/wp-content/uploads/2016/03/clear-road-1024x352.jpg 1024w" sizes="auto, (max-width: 1162px) 100vw, 1162px" /></figure>



<p class="wp-block-paragraph">Photo by Jeremy Bishop on <a href="https://unsplash.com/photos/black-concrete-road-between-steppe-QHZn3-0bbEM?utm_content=creditCopyText&amp;utm_medium=referral&amp;utm_source=unsplash" target="_blank" rel="noreferrer noopener">Unsplash</a></p>



<p class="wp-block-paragraph">You just had some changes made to your website. Developer says he/she is done so you view your site but <em>none of the changes are there</em>. (!) You call your developer/designer and say &#8220;where are the changes?&#8221;.</p>



<p class="wp-block-paragraph">In most cases this can be resolved when you <strong>clear your browser cache!</strong>.</p>



<p class="wp-block-paragraph">The browser cache is a storage area in your browser that holds all the files of web pages you&#8217;ve visited. This conserves bandwidth because the next time you visit that page the trip to the web server is not necessary, files are already right there in your browser cache and the page loads that much quicker.</p>



<p class="wp-block-paragraph">When you change an image by replacing the old with a new that has the same filename as the old one, the old one can get stuck in the browser cache.</p>



<p class="wp-block-paragraph">Stylesheets will stick in a browser cache too.</p>



<p class="wp-block-paragraph">If you are having work done on your website, it is a good idea to learn how to clear your browser cache. There are ways to prevent stylesheets from sticking in the cache but these techniques can be tedious and many developers do not use them.</p>


<div class="wp-block-image">
<figure class="alignright"><a href="/wp-content/uploads/2016/03/browser-refresh-button.jpg"><img loading="lazy" decoding="async" width="400" height="394" src="/wp-content/uploads/2016/03/browser-refresh-button-400x394.jpg" alt="browser-refresh-button" class="wp-image-140" srcset="https://sheppco.com/wp-content/uploads/2016/03/browser-refresh-button-400x394.jpg 400w, https://sheppco.com/wp-content/uploads/2016/03/browser-refresh-button-61x60.jpg 61w, https://sheppco.com/wp-content/uploads/2016/03/browser-refresh-button.jpg 700w" sizes="auto, (max-width: 400px) 100vw, 400px" /></a></figure>
</div>


<p class="wp-block-paragraph">The easy way is to hold the shift key and hit the Refresh button on your Browser&#8217;s toolbar.</p>



<p class="wp-block-paragraph">Sometimes that just doesn&#8217;t cut it though so&#8230;</p>



<h2 class="wp-block-heading">Chrome</h2>



<p class="wp-block-paragraph">In the browser bar go to Chrome / Clear Browsing Data…<br>In the browser window that appears<br>select the time period from the dropdown,<br>be sure that the &#8220;Empty the cache&#8221; select box is checked<br>Click &#8220;Clear browsing data&#8221;</p>



<h2 class="wp-block-heading">Firefox</h2>



<p class="wp-block-paragraph">In the browser bar go to History / Clear Recent History…<br>In the popup box that appears<br>select the time range from the dropdown,<br>under details (Click the down arrow next to &#8220;Details&#8221;), be sure that the &#8220;Cache&#8221; select box is checked<br>Click &#8220;Clear Now&#8221;</p>



<h2 class="wp-block-heading">Safari</h2>



<p class="wp-block-paragraph">In the browser bar go to Safari / Empty Cache…<br>In the popup box that appears click &#8220;Empty&#8221;</p>



<h2 class="wp-block-heading">Internet Explorer 9 and 8</h2>



<p class="wp-block-paragraph">Click Tools, and select Delete Browsing History&#8230; .<br>Deselect Preserve Favorites website data, and select Temporary Internet files, Cookies, and History.<br>Click &#8220;Delete.&#8221;</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Intro to Domains and Hosting</title>
		<link>https://sheppco.com/intro-to-domains-and-hosting/</link>
		
		<dc:creator><![CDATA[Chip Sheppard]]></dc:creator>
		<pubDate>Sun, 27 Mar 2016 17:11:30 +0000</pubDate>
				<category><![CDATA[Basics]]></category>
		<category><![CDATA[hosting]]></category>
		<guid isPermaLink="false">http://sheppco.com/?p=62</guid>

					<description><![CDATA[Photo by Jordan Harrison on Unsplash New website? You need a domain name and a hosting [&#8230;]]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="1162" height="400" src="https://sheppco.com/wp-content/uploads/2016/03/web-server.jpg" alt="web server panel" class="wp-image-930" srcset="https://sheppco.com/wp-content/uploads/2016/03/web-server.jpg 1162w, https://sheppco.com/wp-content/uploads/2016/03/web-server-400x138.jpg 400w, https://sheppco.com/wp-content/uploads/2016/03/web-server-1024x352.jpg 1024w" sizes="auto, (max-width: 1162px) 100vw, 1162px" /></figure>



<p class="wp-block-paragraph">Photo by Jordan Harrison on <a href="https://unsplash.com/photos/blue-utp-cord-40XgDxBfYXM?utm_content=creditCopyText&amp;utm_medium=referral&amp;utm_source=unsplash" target="_blank" rel="noreferrer noopener">Unsplash</a></p>



<h2 class="wp-block-heading">New website?</h2>



<p class="wp-block-paragraph">You need a domain name and a hosting account. If you are not familiar with the process of setting up a new website, domains and hosting can be quit confusing. I will attempt to help but, actually going through the process is the best way to grasp how these two things relate.</p>



<h2 class="wp-block-heading">A Domain Name</h2>



<p class="wp-block-paragraph">is the word you type into your browser to get to a website.<br>It has two parts, the top level and the lower levels.</p>



<p class="wp-block-paragraph">A typical website URL (Universal Resource Locator) or website address looks something like this</p>



<pre class="wp-block-preformatted">http://www.sitename.com</pre>



<p class="wp-block-paragraph">The last part, the .com is the top-level of the domain name. The other parts to the left, separated by dots, are the lower levels of the domain name.</p>



<p class="wp-block-paragraph">Examples of different top level domains:<br>.com &#8211; Commercial<br>.net &#8211; Network<br>.gov &#8211; Government agencies<br>.edu &#8211; Educational institutions<br>.org &#8211; Organizations (nonprofit)<br>.mil &#8211; Military<br>.ca &#8211; Canada</p>



<p class="wp-block-paragraph">Dot com and dot net are generally the most popular.</p>



<p class="wp-block-paragraph">The part of the domain name next to the top level section (.com) is the part you will choose to represent your website. It can be representative of you, your business or nothing at all. yourname.com is a good choice if you intend to blog or if you are the sole contributor. If you intend to sell red widgets on your website then redwidgets.com (or .net) is probably a good choice. This can be anything you want as long as the word is available. It can be a word or not. It can represent your site&#8217;s content, or not. Amazon, Google and Zappos are all examples of a word that doesn&#8217;t necessarily represent the content of the website. Anything goes here.</p>



<p class="wp-block-paragraph">You can purchase a domain name from a domain name registry. There are a bazillion different places to do this, GoDaddy.com and NameCheap.com are two of the most popular.</p>



<h2 class="wp-block-heading">A Hosting Account</h2>



<p class="wp-block-paragraph">is what you need to have a website that can be found at the domain name you just purchased. A hosting account is basically renting space on a web server. A web server is a computer running the software necessary to serve website files to computers anywhere in the world. Like domain name registries, there are a bazillion hosting companies to choose from.</p>



<h2 class="wp-block-heading">DNS</h2>



<p class="wp-block-paragraph">DNS is short for Domain Name System. Web servers are accessed by their IP address. You may have seen an IP address, they are just a bunch of numbers and dots such as 123.45.67.89. Once you purchase a domain name it has to be mapped to the correct web server. This is where the Domain Name Server comes in (yup, same first letters but no, not the same). A Domain Name Server can be thought of as a big 2 column spreadsheet, domain names in one column, IP addresses in the other. When you click a link to view a webpage or type in a domain name such as copypastedeveloper.com the first stop is a Domain Name Server which directs your query to the correct IP address by looking it up in the 2 column spreadsheet.</p>



<p class="wp-block-paragraph">Keep in mind that a single web server may house many different websites so there is some internal trafficking going on there as well.</p>



<h2 class="wp-block-heading">Domain Mapping</h2>



<p class="wp-block-paragraph">This is the last step you&#8217;ll need to take and usually the most confusing. If you purchase your domain name and hosting account from the same company you may be lucky enough to be able to skip this last step. On the other hand if you purchase your domain name from namecheap.com and purchase hosting from another company like <a href="http://secure.hostgator.com/~affiliat/cgi-bin/affiliates/clickthru.cgi?id=nsheppard" target="_blank" rel="noopener">Hostgator</a> (&lt;- affiliate link), this step is unavoidable. The hosting company will provide you with 2 DNS addresses. These addresses then have to be entered somewhere at the domain name registry. This is how the domain name gets mapped to the IP address. All in all it is very easy, however finding where to enter these addresses at your registry can be frustrating depending on the interface the registry provides.</p>



<h2 class="wp-block-heading">Conclusion</h2>



<p class="wp-block-paragraph">Domains and hosting are integral parts of the website creation process. Thinking up a domain name can be fun, until you have to start compromising because your first choices are already taken. DNS and hosting is just plain confusing to those who don&#8217;t have to deal with them on a regular basis.</p>



<p class="wp-block-paragraph">To have a website you need a domain name and a hosting account. A domain name is purchased from a domain name registry, a hosting account is space on a web server purchased from a hosting provider. The domain name is a word, the web server&#8217;s address is a number (IP address). To map the name to the number you have to enter the DNS addresses provided by the hosting company into the provided space at the registry.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Hello world!</title>
		<link>https://sheppco.com/hello-world/</link>
		
		<dc:creator><![CDATA[Chip Sheppard]]></dc:creator>
		<pubDate>Sat, 26 Mar 2016 06:06:57 +0000</pubDate>
				<category><![CDATA[Uncategorizable]]></category>
		<category><![CDATA[blogging]]></category>
		<guid isPermaLink="false">http://sheppco.com/?p=1</guid>

					<description><![CDATA[Photo by Philipp Litvin on Unsplash That&#8217;s right, this is the default post that comes with [&#8230;]]]></description>
										<content:encoded><![CDATA[
<figure class="wp-block-image"><img loading="lazy" decoding="async" width="1024" height="360" src="/wp-content/uploads/2016/03/hello-world.jpg" alt="hello world" class="wp-image-232" srcset="https://sheppco.com/wp-content/uploads/2016/03/hello-world.jpg 1024w, https://sheppco.com/wp-content/uploads/2016/03/hello-world-400x141.jpg 400w, https://sheppco.com/wp-content/uploads/2016/03/hello-world-171x60.jpg 171w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p class="wp-block-paragraph">Photo by Philipp Litvin on <a href="https://unsplash.com/photos/person-standing-on-mountain-ledge-EYw8Da5SO_s?utm_content=creditCopyText&amp;utm_medium=referral&amp;utm_source=unsplash" target="_blank" rel="noreferrer noopener">Unsplash</a></p>



<p class="wp-block-paragraph">That&#8217;s right, this is the default post that comes with WordPress and I&#8217;m not going to change the title.</p>



<p class="wp-block-paragraph">This site has been around for 15 years and has gone through a few iterations. Unfortunately I am usually busy building sites for other folks so this one is always the last to get any love and I really want to change that. So I&#8217;m starting over. $post_id = 1.</p>



<p class="wp-block-paragraph">I saw <a href="https://chrislema.com/">Chris Lema</a> speak at a WordCamp a couple years ago and one of the (many) tidbits of wisdom he issued was &#8220;share everything you know with everyone&#8221;. His reasons for doing this made a LOT of sense and really struck a chord (G major I think) for me. So, despite my enormous affliction of &#8220;Impostor Syndrome&#8221;, my intent is to get over myself and try to do just that.</p>



<p class="wp-block-paragraph">In fact if it were not for Chris and a myriad of other bloggers who share their knowledge on a daily/weekly basis I would not be nearly the developer I am today. I mean, holy crap, how many times have I been stuck, plugged in my question at Google and found exactly what I needed. Sites like <a href="https://www.billerickson.net/">Bill Erickson</a>, <a href="https://www.wpbeginner.com/">WP Beginner</a>, <a href="https://tommcfarlin.com/">Tom McFarlin</a>, <a href="https://css-tricks.com/">Chris Coyier</a>, CodePen and many others that just give it away truly emulate the essence of open source. Very cool.</p>



<p class="wp-block-paragraph">So while I am no Lema or Erickson, there may be someone out there who could benefit from one of the zillions of problems I&#8217;ve had to solve over the years. One way to find out&#8230;</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
