<?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>what I learned today...</title>
	<atom:link href="http://websitesbyjen.com/wordpress/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://websitesbyjen.com/wordpress</link>
	<description>about web design, internet technology, SEO, business, and life in general by Jen</description>
	<lastBuildDate>Thu, 16 Feb 2012 22:36:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Margin on NG Gallery slidesow</title>
		<link>http://websitesbyjen.com/wordpress/?p=166</link>
		<comments>http://websitesbyjen.com/wordpress/?p=166#comments</comments>
		<pubDate>Thu, 16 Feb 2012 22:36:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://websitesbyjen.com/wordpress/?p=166</guid>
		<description><![CDATA[The NG Gallery is one of my favorite WordPress plugins However, I&#8217;ve run into a formatting issue when I need my slideshow to be flush against an element of one of my designs. See the EnergyLogicAcademy.com website for an example. The plugins CSS contains an extra 10px margin that must be removed to fix this. [...]]]></description>
			<content:encoded><![CDATA[<h4>The NG Gallery is one of my favorite WordPress plugins</h4>
<p>However, I&#8217;ve run into a formatting issue when I need my slideshow to be flush against an element of one of my designs. See the EnergyLogicAcademy.com website for an example.</p>
<p>The plugins CSS contains an extra 10px margin that must be removed to fix this. When the Slideshow gallery plugin is activated, it requires a css adjsutment to the nggallery.css file to close the gap at the top of the slideshow.</p>
<div>
<p>Go to</p>
<p>/* ———– Gallery style ————-*/</p>
<p>.ngg-galleryoverview {<br />
overflow: hidden;<br />
margin-top: 10px;<br />
width: 100%;<br />
clear:both;<br />
display:block !important;<br />
}</p>
<p>Change margin-top to 0</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://websitesbyjen.com/wordpress/?feed=rss2&#038;p=166</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t forget your ul tags around widgets!</title>
		<link>http://websitesbyjen.com/wordpress/?p=151</link>
		<comments>http://websitesbyjen.com/wordpress/?p=151#comments</comments>
		<pubDate>Wed, 06 Jul 2011 20:59:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://websitesbyjen.com/wordpress/?p=151</guid>
		<description><![CDATA[Did you know that WordPress widgets are always, always, list items? Widgets in WordPress are wrapped in list-item tags in the file includes/widgets.php   &#8211; around line 550:  $defaults = array(   'name' =&#62; sprintf(__('Sidebar %d'), $i ),   'id' =&#62; "sidebar-$i",   'description' =&#62; '',   'before_widget' =&#62; '&#60;li id="%1$s" class="widget %2$s"&#62;',   'after_widget' =&#62; "&#60;/li&#62;\n",   'before_title' =&#62; '&#60;h2 class="widgettitle"&#62;',   'after_title' [...]]]></description>
			<content:encoded><![CDATA[<p>Did you know that WordPress widgets are always, always, list items?</p>
<p>Widgets in WordPress are wrapped in list-item tags in the file includes/widgets.php   &#8211; around line 550:</p>
<pre> $defaults = array(
  'name' =&gt; sprintf(__('Sidebar %d'), $i ),
  'id' =&gt; "sidebar-$i",
  'description' =&gt; '',
  'before_widget' =&gt; '&lt;li id="%1$s" class="widget %2$s"&gt;',
  'after_widget' =&gt; "&lt;/li&gt;\n",
  'before_title' =&gt; '&lt;h2 class="widgettitle"&gt;',
  'after_title' =&gt; "&lt;/h2&gt;\n",
 );</pre>
<p>However, you&#8217;ll notice that the code does not include the &lt;ul&gt; &lt;/ul&gt; tags.</p>
<p>In your theme template, when including widgets, you might use something like this: <br />
&lt;div id=&#8221;sidebar&#8221;&gt;&lt;?php  /*<br />
Widgetized sidebar, if you have the plugin installed. */<br />
  if ( !function_exists(&#8216;dynamic_sidebar&#8217;) || !dynamic_sidebar(&#8216;widget area name&#8217;) ) : ?&gt; <br />
&lt;?php endif; ?&gt;&lt;/div&gt;&lt;!&#8211;close sidebar&#8211;&gt;</p>
<p>When implementing a text widget, the resulting code will end up looking something like this &#8211; note the missing UL tags:</p>
<p>&lt;div id=&#8221;sidebar&#8221;&gt;&lt;li id=&#8221;text-3&#8243; class=&#8221;widget widget_text&#8221;&gt; &lt;h2 class=&#8221;widgettitle&#8221;&gt;<br />
test<br />
&lt; /h2&gt; &lt;div class=&#8221;textwidget&#8221;&gt;<br />
test<br />
&lt;/div&gt; &lt;/li&gt; &lt;/div&gt; &lt;!&#8211;close sidebar&#8211;&gt;</p>
<p>This may not seem like such a big deal, but the missing &lt;ul&gt; tags can cause havoc in formatting your sidebars in css, and will also return the following W3C validation errors in  your site:</p>
<blockquote><p>document type does not allow element &#8220;li&#8221; here; missing one of &#8220;ul&#8221;, &#8220;ol&#8221;, &#8220;menu&#8221;, &#8220;dir&#8221; start-tag</p></blockquote>
<p>To avoid these issues, simply enclose the widget code in a &lt;ul&gt;:</p>
<p>&lt;div id=&#8221;sidebar&#8221;&gt;&lt;ul&gt;&lt;?php  /* Widgetized sidebar, if you have the plugin installed. */<br />
  if ( !function_exists(&#8216;dynamic_sidebar&#8217;) || !dynamic_sidebar(&#8216;widget area name&#8217;) ) : ?&gt; <br />
&lt;?php endif; ?&gt;&lt;/ul&gt;&lt;/div&gt;&lt;!&#8211;close sidebar&#8211;&gt;</p>
<p>And use the following style if you don&#8217;t want your sidebars to look like bullet lists:</p>
<p>#sidebar ul<br />
{<br />
 margin: 0;<br />
 padding: 0;<br />
 list-style:none;}</p>
]]></content:encoded>
			<wfw:commentRss>http://websitesbyjen.com/wordpress/?feed=rss2&#038;p=151</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Style for removing widget bullet</title>
		<link>http://websitesbyjen.com/wordpress/?p=147</link>
		<comments>http://websitesbyjen.com/wordpress/?p=147#comments</comments>
		<pubDate>Tue, 21 Sep 2010 20:50:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://websitesbyjen.com/wordpress/?p=147</guid>
		<description><![CDATA[All widgets are automatically surrounded by a &#60;li&#62;tag in the code. For example &#8211; a Recent Posts widget appears like this in the source code: &#60;!&#8211;recent posts&#8211;&#62;  &#60;li&#62; &#60;h2&#62;Recent Posts&#60;/h2&#62; &#60;ul&#62;  &#60;li&#62;&#60;a title=&#8221;Keeping the tab “on”&#8221; href=&#8221;http://websitesbyjen.com/wordpress/?p=139&#8243;&#62;Keeping the tab “on”&#60;/a&#62;&#60;/li&#62; &#60;/ul&#62; &#60;/li&#62; And would typically display like this: Recent Posts Keeping the tab “on” If [...]]]></description>
			<content:encoded><![CDATA[<p>All widgets are automatically surrounded by a<br />
&lt;li&gt;tag in the code.<br />
For example &#8211; a Recent Posts widget appears like this in the source code:<br />
&lt;!&#8211;recent posts&#8211;&gt;<br />
 &lt;li&gt;<br />
&lt;h2&gt;Recent Posts&lt;/h2&gt;<br />
&lt;ul&gt;<br />
 &lt;li&gt;&lt;a title=&#8221;Keeping the tab “on”&#8221; href=&#8221;<a href="http://websitesbyjen.com/wordpress/?p=139&quot;&gt;Keeping">http://websitesbyjen.com/wordpress/?p=139&#8243;&gt;Keeping</a> the tab “on”&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/li&gt;<br />
And would typically display like this:</p>
<li><strong>Recent Posts</strong>
<ul>
<li>Keeping the tab “on”</li>
</ul>
</li>
<p>If you don&#8217;t want to have a bullet in front of your widget title (it doesn&#8217;t work well with many template styles), add the following to your CSS:</p>
<p>li.widget<br />
{list-style:none;}</p>
<p>So simple, a caveman could do it.</p>
]]></content:encoded>
			<wfw:commentRss>http://websitesbyjen.com/wordpress/?feed=rss2&#038;p=147</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keeping the tab &#8220;on&#8221;</title>
		<link>http://websitesbyjen.com/wordpress/?p=139</link>
		<comments>http://websitesbyjen.com/wordpress/?p=139#comments</comments>
		<pubDate>Fri, 20 Nov 2009 00:00:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://websitesbyjen.com/wordpress/?p=139</guid>
		<description><![CDATA[This is the syntax for styling a background tab in WordPress dropdown menus. This will keep the top tab &#8220;on&#8221; for all sub-pages. .menu ul li a.current_parent { color: #2e4a81; background-color: #2e4a81; background-image:url(./images/tabbg.jpg); background-position: top right; background-repeat: no-repeat; }]]></description>
			<content:encoded><![CDATA[<p>This is the syntax for styling a background tab in WordPress dropdown menus. This will keep the top tab &#8220;on&#8221; for all sub-pages.</p>
<p>.menu ul li a.current_parent<br />
{<br />
color: #2e4a81;<br />
background-color: #2e4a81;<br />
background-image:url(./images/tabbg.jpg);<br />
background-position: top right;<br />
background-repeat: no-repeat;<br />
}</p>
]]></content:encoded>
			<wfw:commentRss>http://websitesbyjen.com/wordpress/?feed=rss2&#038;p=139</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Cub Scout Promise</title>
		<link>http://websitesbyjen.com/wordpress/?p=132</link>
		<comments>http://websitesbyjen.com/wordpress/?p=132#comments</comments>
		<pubDate>Wed, 14 Oct 2009 19:17:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://websitesbyjen.com/wordpress/?p=132</guid>
		<description><![CDATA[My son, Tyler, is a new cub scout and I just attended my first-ever cub scout meeting with him. He&#8217;s been to a few meetings with his Dad, but I&#8217;ve tried to stay out of all that &#8220;boy stuff&#8221;. Last night my husband had to attend an extremely important meeting (fishing club), so I had [...]]]></description>
			<content:encoded><![CDATA[<p>My son, Tyler, is a new cub scout and I just attended my first-ever cub scout meeting with him. He&#8217;s been to a few meetings with his Dad, but I&#8217;ve tried to stay out of all that &#8220;boy stuff&#8221;. Last night my husband had to attend an <em>extremely</em> important meeting (fishing club), so I had to pitch in and be the parent-partner at his Cub Scout meeting. This was an important one because the boys got to practice driving a rickety wooden cart down a steep hill. </p>
<p>Having your mom at a cub scout meeting is definitely a liablility from my son&#8217;s perspective. I kept doing embarrasing things like making him wear a coat, adjusting his helmet, cheering too loudly when he used the brake to slow down, and hugging him when I realized he survived the 50 yard plummet. It was also bad from my perspective because every vessel of mom-blood in my veins was screaming &#8220;noooooooo!&#8221; when the scout leader shoved the go-cart carrying my precious child down the hill and let go.</p>
<p>Thankfully the cub scouts all survived with their limbs intact, and we went inside for cookies &#038; business. Before the close of the meeting, the Scout Leader tested each of the bouncing, wriggling, cookie &#038; juice-filled boys on the Cub Scout Promise, which they are supposed commit to memory and recite on command. I&#8217;m sure I&#8217;ve heard the promise before, maybe 35 years ago when my brother was a cub scout, but I&#8217;ve never heard my son or husband mention it, and they certainly haven&#8217;t been practicing. With prompting, Ty could start out with &#8220;I, Tyler&#8221;&#8230;&#8221; an it would fade to an untelligible mumble from there. </p>
<p>Aha &#8211; something I could help with that doesn&#8217;t involve door-to-door sales or potential broken bones! We practiced the promise in the car all the way home. It goes like this:</p>
<p>&#8220;I, Tyler, promise to do my best<br />
to do my duty<br />
to God and my Country<br />
to help other people<br />
and obey the law of the pack.&#8221;</p>
<p>Maybe Mom&#8217;s should have their own promise. Something like:<br />
&#8220;I, Tyler&#8217;s Mom Jen, promise to do my best<br />
to let my son be brave and daring,<br />
to help without embarassing him,<br />
and to not eat all the cookies of the pack.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://websitesbyjen.com/wordpress/?feed=rss2&#038;p=132</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Followup to Redirect on Contact Form 7</title>
		<link>http://websitesbyjen.com/wordpress/?p=129</link>
		<comments>http://websitesbyjen.com/wordpress/?p=129#comments</comments>
		<pubDate>Mon, 12 Oct 2009 21:13:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://websitesbyjen.com/wordpress/?p=129</guid>
		<description><![CDATA[There have been a couple of updates to the Contact Form 7 plugin for wordpress since my original post: Adding a redirect to Contact Form 7. Important! Don&#8217;t forget to go back and re-add that redirect back in if you upgrade your plugin. I hate doing things twice, so I&#8217;m recommending to the Contact Form [...]]]></description>
			<content:encoded><![CDATA[<p>There have been a couple of updates to the Contact Form 7 plugin for wordpress since my original post: <a href="http://websitesbyjen.com/wordpress/?p=106">Adding a redirect to Contact Form 7</a>. </p>
<p>Important! Don&#8217;t forget to go back and re-add that redirect back in if you upgrade your plugin. I hate doing things twice, so I&#8217;m recommending to the Contact Form 7 developers that they add this option to the admin tool.</p>
]]></content:encoded>
			<wfw:commentRss>http://websitesbyjen.com/wordpress/?feed=rss2&#038;p=129</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I should order a photo book</title>
		<link>http://websitesbyjen.com/wordpress/?p=127</link>
		<comments>http://websitesbyjen.com/wordpress/?p=127#comments</comments>
		<pubDate>Sun, 11 Oct 2009 20:26:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Shoulds]]></category>

		<guid isPermaLink="false">http://websitesbyjen.com/wordpress/?p=127</guid>
		<description><![CDATA[I&#8217;ve been invited to a scrapbooking club with my best friend&#8217;s mom. She goes every week and makes beautiful memory books for her kids &#038; grandkids. I think this is something that I&#8217;d actually enjoy. Sure, its a Sunday afternoon with a bunch of old ladies, but hey &#8211; is it worse than working on [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been invited to a scrapbooking club with my best friend&#8217;s mom. She goes every week and makes beautiful memory books for her kids &#038; grandkids. I think this is something that I&#8217;d actually enjoy. Sure, its a Sunday afternoon with a bunch of old ladies, but hey &#8211; is it worse than working on the computer on a Sunday afternoon (like I&#8217;m doing right now)? I don&#8217;t think so!</p>
<p>I have discs &#038; discs full of pictures, tons of memorabilia of all kinds. I&#8217;m a bit of a packrat, and hang on to all kinds of weird stuff in shoe boxes and desk drawers. I also need a push to work on something like a scrapbook. I&#8217;m too busy &#038; distracted to work on it at home, plus, I would have way too much help from my kids to actually accomplish anything.</p>
<p>So, on Friday I ran into my Volunteer Life Coach and she asked what I was doing this weekend. Typically I wouldn&#8217;t tell her much because she always suggests ways that I can improve my experience.  However, this time, I thought &#8220;Aha! I&#8217;m doing something fun and creative this weekend. She won&#8217;t be able to &#8220;should&#8221; me this time! Perhaps she&#8217;d even say,  she even say somthing like  &#8220;Gee, that sounds like fun. Have a good time.&#8221; </p>
<p>Of course, my VLC always has something surprising to offer. I braced myself, ready to hear what kind of snack to bring to scrapbooking, what kind of book I should make, what materials would be needed and where to by them. And she said&#8230;</p>
<p>&#8220;Oh, I wouldn&#8217;t do that. You should just upload your pictures to kodak and order a photobook.&#8221;</p>
<p>(I can&#8217;t wait for scrapbooking now! I&#8217;ll have to find out if cocktails are allowed.) </p>
]]></content:encoded>
			<wfw:commentRss>http://websitesbyjen.com/wordpress/?feed=rss2&#038;p=127</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I should chaperone the 1st grade field trip</title>
		<link>http://websitesbyjen.com/wordpress/?p=123</link>
		<comments>http://websitesbyjen.com/wordpress/?p=123#comments</comments>
		<pubDate>Wed, 07 Oct 2009 16:09:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Shoulds]]></category>

		<guid isPermaLink="false">http://websitesbyjen.com/wordpress/?p=123</guid>
		<description><![CDATA[VLC (volunteer life coach) &#8211; &#8220;Are you going on the field trip next week? Jen &#8211; &#8220;No, I really don&#8217;t have time.&#8221; VLC &#8211; &#8220;Really? You should try to clear your schedule because you really should go on the field trip.&#8221; Jen &#8211; &#8220;Oh look, there&#8217;s a squirrel.&#8221; Points to a nearby tree and then [...]]]></description>
			<content:encoded><![CDATA[<p>VLC (volunteer life coach) &#8211; &#8220;Are you going on the field trip next week?<br />
Jen &#8211; &#8220;No, I really don&#8217;t have time.&#8221;<br />
VLC &#8211; &#8220;Really? You should try to clear your schedule because you really should go on the field trip.&#8221;<br />
Jen &#8211; &#8220;Oh look, there&#8217;s a squirrel.&#8221; Points to a nearby tree and then runs away when VLC turns her head.</p>
]]></content:encoded>
			<wfw:commentRss>http://websitesbyjen.com/wordpress/?feed=rss2&#038;p=123</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I should smile at the camera</title>
		<link>http://websitesbyjen.com/wordpress/?p=121</link>
		<comments>http://websitesbyjen.com/wordpress/?p=121#comments</comments>
		<pubDate>Wed, 07 Oct 2009 16:06:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Shoulds]]></category>

		<guid isPermaLink="false">http://websitesbyjen.com/wordpress/?p=121</guid>
		<description><![CDATA[The back of my head was in a recent 9 News piece on Berthoud water quality. While I&#8217;m sure that the cameraman did film my smiling face at least once, the very brief news clip showed my friend Dorian speaking, and the camera was positioned behind me as I listened to her. My hair looked [...]]]></description>
			<content:encoded><![CDATA[<p>The back of my head was in a recent 9 News piece on Berthoud water quality. While I&#8217;m sure that the cameraman did film my smiling face at least once, the very brief news clip showed my friend Dorian speaking, and the camera was positioned behind me as I listened to her. My hair looked great. However, my volunteer life coach really thought that I should have turned around at that moment and given the camera a big cheesy grin.</p>
]]></content:encoded>
			<wfw:commentRss>http://websitesbyjen.com/wordpress/?feed=rss2&#038;p=121</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xcel &#8211; making a random list</title>
		<link>http://websitesbyjen.com/wordpress/?p=119</link>
		<comments>http://websitesbyjen.com/wordpress/?p=119#comments</comments>
		<pubDate>Wed, 30 Sep 2009 23:33:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://websitesbyjen.com/wordpress/?p=119</guid>
		<description><![CDATA[Say you have a list of 100 words in alphabetical order, and you need them in random order. This is how you do it&#8230; Add a column next to your list and put this in those cells: =Rand() This will put random numbers next to your list. Then you can select both columns and sort [...]]]></description>
			<content:encoded><![CDATA[<p>Say you have a list of 100 words in alphabetical order, and you need them in random order. </p>
<p>This is how you do it&#8230;</p>
<p>Add a column next to your list and put this in those cells:<br />
=Rand()</p>
<p>This will put random numbers next to your list. Then you can select both columns and sort in descending or ascending order on the cells with the random numbers. Everytime you do the sort, it should change the order because the numbers change on every new calculation in the sheet.</p>
<p>Why would you need this? For a first grade reading test of course!</p>
]]></content:encoded>
			<wfw:commentRss>http://websitesbyjen.com/wordpress/?feed=rss2&#038;p=119</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

