<?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>Todd Santoro Designs</title>
	<atom:link href="https://toddsantoro.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://toddsantoro.com/</link>
	<description>Web, Logo, Identity, Branding, Website Design in Key West, Florida and Columbus, Ohio</description>
	<lastBuildDate>Sun, 02 Dec 2018 21:35:56 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Fixing Bootstrap&#8217;s irregular column stacking</title>
		<link>https://toddsantoro.com/blog/fixing-bootstrap-column-stacking/</link>
					<comments>https://toddsantoro.com/blog/fixing-bootstrap-column-stacking/#respond</comments>
		
		<dc:creator><![CDATA[Todd Santoro]]></dc:creator>
		<pubDate>Wed, 13 Apr 2016 18:20:43 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<guid isPermaLink="false">https://toddsantoro.com/?p=1455</guid>

					<description><![CDATA[<p>I had a problem when displaying an unspecified number of logos on a site I was building using Bootstrap. The issue was on a smaller responsive screen I couldn&#8217;t use rows to clear the float and because some logos were taller than others sometimes there would be a &#8220;stair&#8221; effect going on. See in row two there are only two &#8230; <a class="link" href="https://toddsantoro.com/blog/fixing-bootstrap-column-stacking/">Continued</a></p>
<p>The post <a href="https://toddsantoro.com/blog/fixing-bootstrap-column-stacking/">Fixing Bootstrap&#8217;s irregular column stacking</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img fetchpriority="high" decoding="async" class="alignright wp-image-1457 size-medium" src="https://toddsantoro.com/media/Screenshot-2016-04-13-14.05.06-300x179.png" alt="Bootstrap column stacking" width="300" height="179" srcset="https://toddsantoro.com/media/Screenshot-2016-04-13-14.05.06-300x179.png 300w, https://toddsantoro.com/media/Screenshot-2016-04-13-14.05.06-768x459.png 768w, https://toddsantoro.com/media/Screenshot-2016-04-13-14.05.06.png 950w" sizes="(max-width: 300px) 100vw, 300px" />I had a problem when displaying an unspecified number of logos on a site I was building using Bootstrap. The issue was on a smaller responsive screen I couldn&#8217;t use rows to clear the float and because some logos were taller than others sometimes there would be a &#8220;stair&#8221; effect going on. See in row two there are only two logos? This is caused because the first logo in row one is taller than the other two in that row.</p>
<h2>The Bootstrap Fix</h2>
<p>I thought for a minute and decided to add a &lt;div&gt; tag to every 3rd element on small screens and every 4th element on larger screens with the Bootstrap .clearfix class. I then added .visable-xs and .visable-sm, .visable-md and .visable-lg on the respective &lt;div&gt; tags to make them appear and disappear depending on the media query.</p>
<p>Check out the <a href="http://jsfiddle.net/toddsantoro/tazow0x2/">JSFiddle</a></p>
<p>SHould you have another solution or a way to make this solution better please leave a comment below.</p>
<p>The post <a href="https://toddsantoro.com/blog/fixing-bootstrap-column-stacking/">Fixing Bootstrap&#8217;s irregular column stacking</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://toddsantoro.com/blog/fixing-bootstrap-column-stacking/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>A new codepen.io snippet to create an abstract CSS3 background</title>
		<link>https://toddsantoro.com/blog/a-new-codepen-io-snippet-to-create-an-abstract-css3-background/</link>
					<comments>https://toddsantoro.com/blog/a-new-codepen-io-snippet-to-create-an-abstract-css3-background/#respond</comments>
		
		<dc:creator><![CDATA[Todd Santoro]]></dc:creator>
		<pubDate>Tue, 10 Nov 2015 14:29:14 +0000</pubDate>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Tutorials]]></category>
		<guid isPermaLink="false">https://toddsantoro.com/?p=1440</guid>

					<description><![CDATA[<p>I recently needed a seamless abstract background for a client project. I searched high and low to find something for my needs. I came across a CSS3 background site that gave me some inspiration. After some tinkering I became an expert in CSS3 background-image gradients so I will share with you my abstract CSS3 gradient background on codepen. I hope &#8230; <a class="link" href="https://toddsantoro.com/blog/a-new-codepen-io-snippet-to-create-an-abstract-css3-background/">Continued</a></p>
<p>The post <a href="https://toddsantoro.com/blog/a-new-codepen-io-snippet-to-create-an-abstract-css3-background/">A new codepen.io snippet to create an abstract CSS3 background</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I recently needed a seamless abstract background for a client project. I searched high and low to find something for my needs. I came across a <a href="http://lea.verou.me/css3patterns/" target="_blank">CSS3 background site</a> that gave me some inspiration. After some tinkering I became an expert in CSS3 background-image gradients so I will share with you my abstract CSS3 gradient background on <a href="http://codepen.io/toddsantoro/pen/vNQyRm" target="_blank">codepen</a>.</p>
<p>I hope this helps someone with their project because it saved me a ton of bandwidth and an HTTP call:)</p>
<p>Here is the CSS3</p>
<pre>.abstract {
  background-color: #8ac8d5;
  background-image:
  radial-gradient(rgba(76,139,152,1), rgba(138,201,214,.05) 200px, transparent 400px),
  radial-gradient(rgba(76,139,152,1), rgba(255,255,255,.1) 300px, transparent 400px),
  radial-gradient(rgba(76,139,152,1), rgba(138,201,214,.1) 400px, transparent 400px);
  background-size: 1000px 500px, 700px 500px, 700px 500px; 
  background-position: 0 -200px, 300px -100px, 700px -200px;
  height: 500px;
}
</pre>
<p>And the HTML</p>
<pre>&lt;div class="abstract"&gt;&lt;/div&gt;</pre>
<p>The post <a href="https://toddsantoro.com/blog/a-new-codepen-io-snippet-to-create-an-abstract-css3-background/">A new codepen.io snippet to create an abstract CSS3 background</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://toddsantoro.com/blog/a-new-codepen-io-snippet-to-create-an-abstract-css3-background/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Dribbble Shots From ToddSantoro.com Designs</title>
		<link>https://toddsantoro.com/blog/dribbble-shots-from-todd-santoro-designs/</link>
					<comments>https://toddsantoro.com/blog/dribbble-shots-from-todd-santoro-designs/#respond</comments>
		
		<dc:creator><![CDATA[Todd Santoro]]></dc:creator>
		<pubDate>Mon, 13 Apr 2015 15:23:36 +0000</pubDate>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Dribbble]]></category>
		<category><![CDATA[Logo Design]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[dribbble]]></category>
		<category><![CDATA[logo]]></category>
		<guid isPermaLink="false">https://toddsantoro.com/?p=1338</guid>

					<description><![CDATA[<p>I recently was drafted as a player on Dribbble and have uploaded several shots. As a web designer it was important for me to be part of this community to showcase my talents. Should you find yourself in need of a Dribbble invite please make a comment on this post with a link to your portfolio and follow me on &#8230; <a class="link" href="https://toddsantoro.com/blog/dribbble-shots-from-todd-santoro-designs/">Continued</a></p>
<p>The post <a href="https://toddsantoro.com/blog/dribbble-shots-from-todd-santoro-designs/">Dribbble Shots From ToddSantoro.com Designs</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></description>
										<content:encoded><![CDATA[
	<div id="" class="" style="float: right; max-width: 550px; padding: 0 0 20px 20px;"><img decoding="async" src="https://toddsantoro.com/media/lower-keys-limo-dribbble-300x225.jpg" alt="Lower Keys Limo Dribbble Shot" width="300" height="225" class="alignright size-medium wp-image-1404" srcset="https://toddsantoro.com/media/lower-keys-limo-dribbble-300x225.jpg 300w, https://toddsantoro.com/media/lower-keys-limo-dribbble.jpg 800w" sizes="(max-width: 300px) 100vw, 300px" /></div>
	I recently was drafted as a player on <a href="https://dribbble.com/toddsantoro" class="link" title="ToddSantoro.com Designs Dribbble account">Dribbble</a> and have uploaded several shots. As a web designer it was important for me to be part of this community to showcase my talents. Should you find yourself in need of a <a href="https://dribbble.com" class="link" title="Dribbble">Dribbble</a> invite please make a comment on this post with a link to your portfolio and follow me on Dribble.</p>
<p>Here are a few of my <a href="https://dribbble.com/toddsantoro" class="link" title="Todd Santoro on Dribbble">shots</a> that I think you will like. One of my favorite&#8217;s is &#8220;Cayo Heuso&#8221; for the <a href="https://dribbble.com/shots/1972551-Key-West-Tourism" class="link" title="Key West Tourism">Key West Tourism Board</a>. Cayo Heuso translates to bone island and better known as Key West, Florida in the Florida Keys.</p>
<p>The post <a href="https://toddsantoro.com/blog/dribbble-shots-from-todd-santoro-designs/">Dribbble Shots From ToddSantoro.com Designs</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://toddsantoro.com/blog/dribbble-shots-from-todd-santoro-designs/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Mobile-friendly sites and Google SEO</title>
		<link>https://toddsantoro.com/blog/mobile-friendly-sites-and-google-seo/</link>
					<comments>https://toddsantoro.com/blog/mobile-friendly-sites-and-google-seo/#respond</comments>
		
		<dc:creator><![CDATA[Todd Santoro]]></dc:creator>
		<pubDate>Wed, 25 Mar 2015 17:03:09 +0000</pubDate>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[mobile friendly]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://toddsantoro.com/?p=1375</guid>

					<description><![CDATA[<p>Get ready web site owners, on April 21st, 2015 Google will start favoring mobile-friendly sites much more. In this post by Google concerning mobile-friendly search results Takaki Makino, Chaesang Jung, and Doantam Phan explain that mobile user&#8217;s search results will be ranked by how mobile-friendly a site is. You can view the guide to mobile friendly sites and how to &#8230; <a class="link" href="https://toddsantoro.com/blog/mobile-friendly-sites-and-google-seo/">Continued</a></p>
<p>The post <a href="https://toddsantoro.com/blog/mobile-friendly-sites-and-google-seo/">Mobile-friendly sites and Google SEO</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></description>
										<content:encoded><![CDATA[
	<div id="" class="" style="float: right; max-width: 550px; padding: 0 0 20px 20px;"><img decoding="async" src="https://toddsantoro.com/media/mobile-friendly-web-design.svg" alt="mobile-friendly-web-design" class="alignright size-full wp-image-1381" style="max-width: 350px; padding: 0 0 0 20px;"/></div>
	Get ready web site owners, on April 21st, 2015 Google will start favoring mobile-friendly sites much more. In this <a title="Finding more mobile-friendly search results" href="http://googlewebmastercentral.blogspot.nl/2015/02/finding-more-mobile-friendly-search.html" target="_blank">post by Google concerning mobile-friendly search results</a> Takaki Makino, Chaesang Jung, and Doantam Phan explain that mobile user&#8217;s search results will be ranked by how mobile-friendly a site is. You can view the <a title="Mobile-Friendly Websites Guide" href="https://developers.google.com/webmasters/mobile-sites/get-started/" target="_blank">guide to mobile friendly sites and how to get your SEO in order</a>.</p>
<p>While getting my sites in order I found this tool in <a title="Mobile-Friendly Test Tool" href="https://www.google.com/webmasters/tools/mobile-friendly/" target="_blank">Webmaster Tools</a> to be very handy. It allows you to see if a page is mobile device friendly and what it looks like to Google. You can also get a <a href="https://www.google.com/webmasters/tools/mobile-usability" title="Mobile report" target="_blank">full mobile report inside Webmaster Tools</a>.</p>
<p>Make sure to make your web site responsive and use the tools inside Webmaster Tools so you can optimize and get better organic SEO results. Should you need help with this in Key West to Columbus and beyond please contact ToddSantoro.com Designs at <span><a title="ToddSantoro.com Designs phone number" href="tel:6504166285" class="footer-link">650.416.6285</a></span></p>
<p>The post <a href="https://toddsantoro.com/blog/mobile-friendly-sites-and-google-seo/">Mobile-friendly sites and Google SEO</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://toddsantoro.com/blog/mobile-friendly-sites-and-google-seo/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Responsive Web Design sketchbook</title>
		<link>https://toddsantoro.com/blog/responsive-web-design-sketchbook/</link>
					<comments>https://toddsantoro.com/blog/responsive-web-design-sketchbook/#respond</comments>
		
		<dc:creator><![CDATA[Todd Santoro]]></dc:creator>
		<pubDate>Fri, 18 Apr 2014 16:28:11 +0000</pubDate>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[UX]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[mockup]]></category>
		<category><![CDATA[sketch]]></category>
		<category><![CDATA[sketchbook]]></category>
		<guid isPermaLink="false">https://toddsantoro.com/?p=1284</guid>

					<description><![CDATA[<p>ToddSantoro.com Designs has released a Responsive Web Design Sketchbook under the Creative Commons License for web designers to use or improve. Leave us a message or tweet out the link if you find it useful. Download your free copy of Responsive Web Site Design Sketchbook by ToddSantoro.com Designs. Tweet</p>
<p>The post <a href="https://toddsantoro.com/blog/responsive-web-design-sketchbook/">Responsive Web Design sketchbook</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></description>
										<content:encoded><![CDATA[
	<div id="" class="" style="float: right; max-width: 550px; padding: 0 0 20px 20px;"><a title="Responsive Web Site Design Sketchbook" href="https://toddsantoro.com/media/responsive-web-site-design-sketchbook-by-toddsantoro-com-designs.zip"><img decoding="async" class="alignright size-full wp-image-1291" src="https://toddsantoro.com/media/responsive-web-design-sketchbook.jpg" alt="responsive-web-design-sketchbook" width="500" height="280" srcset="https://toddsantoro.com/media/responsive-web-design-sketchbook.jpg 500w, https://toddsantoro.com/media/responsive-web-design-sketchbook-300x168.jpg 300w" sizes="(max-width: 500px) 100vw, 500px" /></a></div>
	<a class="link" href="https://toddsantoro.com/">ToddSantoro.com Designs</a> has released a Responsive Web Design Sketchbook under the <a class="link" title="Creative Commons License" href="http://creativecommons.org/licenses/by/3.0/legalcode" target="_blank">Creative Commons License</a> for web designers to use or improve. Leave us a message or tweet out the link if you find it useful.</p>
<p><a class="link" title="Responsive Web Site Design Sketchbook" href="https://toddsantoro.com/media/responsive-web-site-design-sketchbook-by-toddsantoro-com-designs.zip">Download</a> your free copy of <span class="link">Responsive Web Site Design Sketchbook by ToddSantoro.com Designs.</span></p>
<p><a href="https://twitter.com/share" class="twitter-share-button" data-hashtags="responsive , webdesign, sketchbook" data-url="https://toddsantoro.com/blog/responsive-web-design-sketchbook/" data-via="toddsantoro" data-lang="en">Tweet</a><br />
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script></p>
<p>The post <a href="https://toddsantoro.com/blog/responsive-web-design-sketchbook/">Responsive Web Design sketchbook</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://toddsantoro.com/blog/responsive-web-design-sketchbook/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>An SVG fallback for your HTML5 and CSS3 responsive web site designs using Modernizer</title>
		<link>https://toddsantoro.com/blog/an-svg-fallback-html5-css3-responsive-web-site-designs-using-modernizer/</link>
					<comments>https://toddsantoro.com/blog/an-svg-fallback-html5-css3-responsive-web-site-designs-using-modernizer/#respond</comments>
		
		<dc:creator><![CDATA[Todd Santoro]]></dc:creator>
		<pubDate>Wed, 18 Dec 2013 19:31:27 +0000</pubDate>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Tutorials]]></category>
		<category><![CDATA[fallback]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[modernizer]]></category>
		<category><![CDATA[png]]></category>
		<category><![CDATA[svg]]></category>
		<guid isPermaLink="false">https://toddsantoro.com/?p=1216</guid>

					<description><![CDATA[<p>There are still some browsers out in the wild that do not support the .svg file format. Some browsers will support in-line images and not in a CSS background image. Some browser versions support them but display them a bit pixelated when scaled. Have a look at this chart to see what browser versions are partially supported using CSS and &#8230; <a class="link" href="https://toddsantoro.com/blog/an-svg-fallback-html5-css3-responsive-web-site-designs-using-modernizer/">Continued</a></p>
<p>The post <a href="https://toddsantoro.com/blog/an-svg-fallback-html5-css3-responsive-web-site-designs-using-modernizer/">An SVG fallback for your HTML5 and CSS3 responsive web site designs using Modernizer</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></description>
										<content:encoded><![CDATA[
	<div id="" class="" style="float: right; max-width: 550px; padding: 0 0 20px 20px;"><img loading="lazy" decoding="async" src="https://toddsantoro.com/media/modernizer-jquery-html5-css3-logo.jpg" alt="Modernizer logo web design" width="550" height="200" class="alignnone size-full wp-image-1237 responsive-img" srcset="https://toddsantoro.com/media/modernizer-jquery-html5-css3-logo.jpg 550w, https://toddsantoro.com/media/modernizer-jquery-html5-css3-logo-300x109.jpg 300w" sizes="auto, (max-width: 550px) 100vw, 550px" /></div>
	There are still some browsers out in the wild that do not support the <a class="link" title="Wikipedia article on Scalable Vector Graphics or SVG" href="http://en.wikipedia.org/wiki/Scalable_Vector_Graphics" target="_blank">.svg</a> file format. Some browsers will support in-line images and not in a CSS background image.</p>
<div class="symple-column symple-one-half symple-column-first ">
Browsers that do not support in-line .svg images are:</p>
<ul>
<li>ie6 &#8211; ie8</li>
<li>Android 2.1 &#8211; 2.3</li>
<li>Safari 3.1</li>
<li>Firefox 2.0</li>
</ul>
</div>
<div class="symple-column symple-one-half symple-column-last ">
Browsers that do not support .svg CSS background images:</p>
<ul>
<li>ie6 &#8211; ie8</li>
<li>Android 2.1 &#8211; 2.3</li>
<li>Safari 3.1</li>
<li>Firefox 2.0 &#8211; 3.6</li>
<li>Opera 9.0</li>
</ul>
</div>
Some browser versions support them but display them a bit pixelated when scaled. Have a look at this <a class="link" title="Browser SVG compatibility using CSS" href="http://caniuse.com/svg-css" target="_blank">chart</a> to see what browser versions are partially supported using CSS and this <a class="link" title="Browser SVG compatibility using in-line images" href="http://caniuse.com/svg" target="_blank">chart</a> for in-line images.</p>
<p>So we need a fallback to make sure every user gets the same UX &#8211; User Experience. We will be relying on <a class="link" title="Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user’s browser." href="http://modernizr.com/" target="_blank">Modernizer.js</a> to help us out. You can follow these <a class="link" title="Installing Modernizer" href="http://modernizr.com/docs/#installing" target="_blank">instructions</a> on how to install modernizer and get started.</p>
<p>Once you get Modernizer installed you can add the following jQuery snippet to change all of your inline .svg images to .pdf images in browsers that do not support .svg.</p>
<pre>$( document ).ready(function() {
	$(function() {
		/*SVG to PNG if browser does not support it*/
		if(!Modernizr.svg) {
			$('img[src*="svg"]').attr('src', function() {
				return $(this).attr('src').replace('.svg', '.png');
			});
		}
		/*eof SVG to PNG*/
	});

});</pre>
<p>Next we will tackle the CSS background images. This one is simple because you only have to make a no-svg class for your background image.</p>
<pre>.image { background:url(img/some-image.svg) center center no-repeat; }
.no-svg .image { background:url(img/some-image.png) center center no-repeat; }</pre>
<p>When Modernizer runs on the page it adds a bunch of classes to the &lt;HTML&gt; tag and one of those classes is either svg or no-svg so all we have to do is target the no-svg class like I did above in the CSS and display the .png image. give it a try!</p>
<p>The post <a href="https://toddsantoro.com/blog/an-svg-fallback-html5-css3-responsive-web-site-designs-using-modernizer/">An SVG fallback for your HTML5 and CSS3 responsive web site designs using Modernizer</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://toddsantoro.com/blog/an-svg-fallback-html5-css3-responsive-web-site-designs-using-modernizer/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Key West Lorem Ipsum Generator</title>
		<link>https://toddsantoro.com/blog/key-west-lorem-ipsum-generator/</link>
		
		<dc:creator><![CDATA[Todd Santoro]]></dc:creator>
		<pubDate>Thu, 12 Dec 2013 20:31:27 +0000</pubDate>
				<category><![CDATA[API]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[copy writing]]></category>
		<category><![CDATA[key west]]></category>
		<category><![CDATA[lorum ipsum]]></category>
		<category><![CDATA[Web Design]]></category>
		<guid isPermaLink="false">https://toddsantoro.com/?p=1151</guid>

					<description><![CDATA[<p>Key West lorem ipsum ocean conch beach sun, beer conch fritters&#8230; Introducing Key West Lorem Ipsum Generator As a web designer I was sick and tired of using the standard lorem ipsum. Then I came across Bacon Ipsum. I was amused enough to develop a Key West Lorem Ipsum version of the project for web designers and copy writers to &#8230; <a class="link" href="https://toddsantoro.com/blog/key-west-lorem-ipsum-generator/">Continued</a></p>
<p>The post <a href="https://toddsantoro.com/blog/key-west-lorem-ipsum-generator/">Key West Lorem Ipsum Generator</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></description>
										<content:encoded><![CDATA[
	<div id="" class="" style="float: right; max-width: 550px; padding: 0 0 20px 20px;"><a href="https://toddsantoro.com/key-west-lorem-ipsum-generator/" title="Key West Lorum Ipsum Generator Application" alt="Key West Copy Generator"><img loading="lazy" decoding="async" class="size-full wp-image-1210 alignright responsive-img" alt="Key West Lorem Ipsum Generator for Web Designers and Copy Writers" src="https://toddsantoro.com/media/key-west-lorem-ipsum-generator.png" width="550" height="200" srcset="https://toddsantoro.com/media/key-west-lorem-ipsum-generator.png 550w, https://toddsantoro.com/media/key-west-lorem-ipsum-generator-300x109.png 300w" sizes="auto, (max-width: 550px) 100vw, 550px" /></a></div>
	Key West lorem ipsum ocean conch beach sun, beer conch fritters&#8230;</p>
<p>Introducing <a class="link" title="Key West Lorem Ipsum Generator" href="https://toddsantoro.com/key-west-lorem-ipsum-generator/" title="Key West Lorum Ipsum Generator">Key West Lorem Ipsum Generator</a></p>
<p>As a web designer I was sick and tired of using the standard lorem ipsum. Then I came across <a class="link" title="Bacon Ipsum lorem ipsum generator" href="http://baconipsum.com/">Bacon Ipsum</a>. I was amused enough to develop a Key West Lorem Ipsum version of the project for web designers and copy writers to use. I created mine from scratch in WordPress and using a database table to house my data. As of this writing there are 161 Key West words used to create the Lorem Ipsum paragraphs.</p>
<p>I have also built a RESTful JSON API for everyone to use. Once I get the documentation together I will make another post and link it here with all of the parameters that you can use.</p>
<p>Here are all of the words that comprise Key West Lorem Ipsum Generator:</p>
<p>fish, dolphin, palm tree, Duval street, Jimmy Buffet, margarita, boat, star fish, southernmost city, cuba, 90 miles, Fort Zachary, Fort Jefferson, Sloppy Joe&#8217;s, Captain Tony, Captain Eric, laid back, hammock, sand, Thomas Edison, Lou Gehrig, Harry Truman, and Tennessee Williams, Ernest Hemingway, Henry Flagler, Over-Sea Railroad, Florida Keys, island, snorkel, dive, sun tan, sunset, Key West, bicycle, fishing, sailfish, Blue Heaven, Green Parrot, gay, lesbian, one human family, cuban, cigar, old town, bahama village, new town, harbor, bight, dingy, eco-tourism, shrimp, lobster, watersports, dry tortugas, schooner wharf, higgs beach, west martillo, east martillo, golf, mallory square, rest beach, smathers beach, glass beach, mel fisher, turtle, kayak, eagle, osprey, reef, mangroves, channel, port, bow, starboard, stern, cleat, Key West Pink Shrimp, yellow tail, sharks, sailing, treasure, power boat races, fantasy fest, conch republic, queen conch, US 1, Over-Seas Highway, ocean, conch, beach, sun, beer, conch fritters, key deer, gecko, mosquitos, florida straights, ship wreck, western union schooner, art, coast guard, navy, cayo hueso, hurricane, Spanish galleon Santa Margarita, atocha, stock island, tank island, fleming key, dredgers key, sunset key, tank island, christmas tree island, mooring, mile zero, little white house, bone cay, Matthew C. Perry, Truman Annex, wisteria island, cuban chug, square grouper, gulf of mexico, cow key, sub-tropical, buoy, parrot heads, simonton, sand key, western dry rocks, eastern dry rocks, snuba, cafe con leche, cuban mix, swim, sightsee, slosh ball, boca grand, key lime, lighthouse, custom house, shipwreck, salvage, chickens, roosters, music, civil war, cuban missile crisis, homeless, coconut trees, banana trees, sunset celebration</p>
<p>The post <a href="https://toddsantoro.com/blog/key-west-lorem-ipsum-generator/">Key West Lorem Ipsum Generator</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>jQuery + WordPress 3.3 may = problems</title>
		<link>https://toddsantoro.com/blog/jquery-wordpress-3-3-may-problems/</link>
					<comments>https://toddsantoro.com/blog/jquery-wordpress-3-3-may-problems/#respond</comments>
		
		<dc:creator><![CDATA[Todd Santoro]]></dc:creator>
		<pubDate>Mon, 30 Jan 2012 05:42:55 +0000</pubDate>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Tutorials]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[Word Press]]></category>
		<category><![CDATA[WP]]></category>
		<guid isPermaLink="false">https://toddsantoro.com/?p=1131</guid>

					<description><![CDATA[<p>If you have recently upgraded WordPress and found your theme a bit under the weather then you may have been a victim of &#8220;jQuery update&#8221;. This is what I am calling it. The simple solution it to look for all of the &#8220;$&#8221; DOLLAR signs within the&#60;script&#62; tags and replace them with &#8220;jQuery&#8221; (For all of the novices reading this &#8230; <a class="link" href="https://toddsantoro.com/blog/jquery-wordpress-3-3-may-problems/">Continued</a></p>
<p>The post <a href="https://toddsantoro.com/blog/jquery-wordpress-3-3-may-problems/">jQuery + WordPress 3.3 may = problems</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If you have recently upgraded WordPress and found your theme a bit under the weather then you may have been a victim of &#8220;jQuery update&#8221;. This is what I am calling it. The simple solution it to look for all of the &#8220;$&#8221; DOLLAR signs within the<script type="text/javascript"></script>&lt;script&gt; tags and replace them with &#8220;jQuery&#8221; (For all of the novices reading this please do not use or acknowledge DOUBLE QUOTES like this &#8220;. Only use what is inside the DOUBLE QUOTES.) This is a safety feature WP uses called no-conflict. You can read more about it here: http://codex.wordpress.org/Function_Reference/wp_enqueue_script.</p>
<p>Just about all jQuery / JavaScript issues can be eliminated by checking your code for &#8220;$&#8221; and changing it to &#8220;jQuery&#8221;.</p>
<p>Happy code hunting:)</p>
<p>The post <a href="https://toddsantoro.com/blog/jquery-wordpress-3-3-may-problems/">jQuery + WordPress 3.3 may = problems</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://toddsantoro.com/blog/jquery-wordpress-3-3-may-problems/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WordCamp Columbus was awesome</title>
		<link>https://toddsantoro.com/blog/wordcamp-columbus-was-awesome/</link>
					<comments>https://toddsantoro.com/blog/wordcamp-columbus-was-awesome/#respond</comments>
		
		<dc:creator><![CDATA[Todd Santoro]]></dc:creator>
		<pubDate>Mon, 21 Jun 2010 03:07:04 +0000</pubDate>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress WordCamp]]></category>
		<guid isPermaLink="false">https://toddsantoro.com/?p=1121</guid>

					<description><![CDATA[<p>WordCamp Columbus was the first time I have ever attended a WordCamp and my first time speaking at the event. I met some great people doing some incredible things like John Cook of iqace.com who has developed a WP plug-in that provides video support for the back-end of WordPress right on the screen. My clients will love this! I can&#8217;t &#8230; <a class="link" href="https://toddsantoro.com/blog/wordcamp-columbus-was-awesome/">Continued</a></p>
<p>The post <a href="https://toddsantoro.com/blog/wordcamp-columbus-was-awesome/">WordCamp Columbus was awesome</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="http://wordcampcolumbus.com">WordCamp Columbus</a> was the first time I have ever attended a <a href="http://central.wordcamp.org/">WordCamp</a> and my first time speaking at the event. I met some great people doing some incredible things like John Cook of <a href="http://www.iqace.com">iqace.com </a>who has developed a WP plug-in that provides video support for the back-end of WordPress right on the screen. My clients will love this!</p>
<p>I can&#8217;t wait to attend the next WordCamp somewhere in the US or beyond.</p>
<p>If you would like to view my presentation on designing a killer WordPress theme you can <a href="https://toddsantoro.com/wordcamp_columbus_2010.zip">download it here</a>.</p>
<p>The post <a href="https://toddsantoro.com/blog/wordcamp-columbus-was-awesome/">WordCamp Columbus was awesome</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://toddsantoro.com/blog/wordcamp-columbus-was-awesome/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WordCamp Columbus&#8230; here I come!</title>
		<link>https://toddsantoro.com/blog/wordcamp-columbus-here-i-come/</link>
					<comments>https://toddsantoro.com/blog/wordcamp-columbus-here-i-come/#respond</comments>
		
		<dc:creator><![CDATA[Todd Santoro]]></dc:creator>
		<pubDate>Mon, 10 May 2010 14:32:31 +0000</pubDate>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Speaking]]></category>
		<category><![CDATA[WordCamp]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://toddsantoro.com/wordcamp-columbus-here-i-come/</guid>

					<description><![CDATA[<p>I submitted a request to speak at WordCamp Columbus last week and just got word that I Will be speaking on June 19th, 2010. I will be speaking about designing and developing a killer theme in WordPress. The talk will also include some WP3.0 tips and tricks. If you are in the Columbus, Ohio region on June 19th stop on &#8230; <a class="link" href="https://toddsantoro.com/blog/wordcamp-columbus-here-i-come/">Continued</a></p>
<p>The post <a href="https://toddsantoro.com/blog/wordcamp-columbus-here-i-come/">WordCamp Columbus&#8230; here I come!</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I submitted a request to speak at WordCamp Columbus last week and just got word that I Will be speaking on June 19th, 2010.</p>
<p>I will be speaking about designing and developing a killer theme in WordPress. The talk will also include some WP3.0 tips and tricks.</p>
<p>If you are in the Columbus, Ohio region on June 19th stop on by WordCamp Columbus @ The Ohio State University http://wordcampcolumbus.com, it&#8217;s FREE!</p>
<p>The post <a href="https://toddsantoro.com/blog/wordcamp-columbus-here-i-come/">WordCamp Columbus&#8230; here I come!</a> appeared first on <a href="https://toddsantoro.com">Todd Santoro Designs</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://toddsantoro.com/blog/wordcamp-columbus-here-i-come/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!-- plugin=object-cache-pro client=phpredis metric#hits=1619 metric#misses=3 metric#hit-ratio=99.8 metric#bytes=854778 metric#prefetches=122 metric#store-reads=21 metric#store-writes=3 metric#store-hits=133 metric#store-misses=0 metric#sql-queries=12 metric#ms-total=400.83 metric#ms-cache=13.15 metric#ms-cache-avg=0.5718 metric#ms-cache-ratio=3.3 sample#redis-hits=4828773 sample#redis-misses=1404945 sample#redis-hit-ratio=77.5 sample#redis-ops-per-sec=13 sample#redis-evicted-keys=0 sample#redis-used-memory=164544816 sample#redis-used-memory-rss=84619264 sample#redis-memory-fragmentation-ratio=0.5 sample#redis-connected-clients=1 sample#redis-tracking-clients=0 sample#redis-rejected-connections=0 sample#redis-keys=1425 -->
