<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-1268147986433733818</id><updated>2024-11-05T19:05:28.190-08:00</updated><category term="CSS"/><category term="canada"/><category term="email"/><category term="fixed div"/><category term="law"/><category term="spam"/><category term="wallpaper"/><category term="z-index"/><title type='text'>andypatrickdesign</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://andy-p151.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1268147986433733818/posts/default'/><link rel='alternate' type='text/html' href='http://andy-p151.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>andy patrick</name><uri>http://www.blogger.com/profile/11247928353967378342</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='31' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2bz31paDn_Wa3c2h4LMr35ttDoi-WTdgEXbVyxVGOXvinCHfDYFcDZPon4zQr31XOwB3rfs-cL2cGjAxiWfHKC2chkiHfGbUn68U95_UEkc7gyr_0qFNPFYymcv5Kug/s220/head3.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1268147986433733818.post-7780406446306765878</id><published>2012-04-28T11:22:00.001-07:00</published><updated>2012-04-28T11:33:05.023-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="CSS"/><category scheme="http://www.blogger.com/atom/ns#" term="fixed div"/><category scheme="http://www.blogger.com/atom/ns#" term="z-index"/><title type='text'>Get ready for take off with fixed position divs</title><content type='html'>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhK7N2g3MRIeO3g4hpE2pTwzCtW3G6trP9HHrjrX2iSZZqGQgS30EYhL7mqh1eyM6Kvz5s1Jd9MuCtOzyJ8km94lPF45dtGG9YAJigoSppGL74YSzC3Adrm_8LzAFydcMo6okI8QuNyqtfP/s1600/Screen+shot+2012-04-28+at+2.01.42+PM.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhK7N2g3MRIeO3g4hpE2pTwzCtW3G6trP9HHrjrX2iSZZqGQgS30EYhL7mqh1eyM6Kvz5s1Jd9MuCtOzyJ8km94lPF45dtGG9YAJigoSppGL74YSzC3Adrm_8LzAFydcMo6okI8QuNyqtfP/s1600/Screen+shot+2012-04-28+at+2.01.42+PM.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;h3&gt;

The fixed position div&lt;/h3&gt;
&lt;br /&gt;
The fixed position div (position:fixed) is a div that will stay in the same position in the browser window. If you are masochistic enough to support IE6 this is&lt;span style=&quot;color: black;&quot;&gt; not supported,&lt;/span&gt; but it is by IE7 and up and by all the other browsers like Firefox, Opera and Safari. An example of the code would look like this:&lt;br /&gt;
&lt;br /&gt;
&lt;h4&gt;




&lt;span class=&quot;code&quot;&gt;CSS &lt;/span&gt;&lt;/h4&gt;
&lt;span class=&quot;code&quot;&gt;#MrFixit{&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;code&quot;&gt;position: fixed;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;code&quot;&gt;top: 200px;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;code&quot;&gt;left: 20px;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;code&quot;&gt;width: 100px;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;code&quot;&gt;height: 20px;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;code&quot;&gt;background-color: #FFF;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;code&quot;&gt;}&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;h4&gt;






&lt;span class=&quot;code&quot;&gt;The Result&lt;/span&gt;&lt;/h4&gt;
&lt;span class=&quot;code&quot;&gt;&lt;br /&gt;What would happen with the above code would be a white box 100x20px, which is positioned 200px from the top of the page and 20px from the left. This box will stay there as you scroll... as if by magic!&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;








As with everything start with WHY?&lt;/h3&gt;
&lt;br /&gt;
So why would you want an element to be positioned in one place as the user scrolls? There&#39;s many common reasons that you&#39;ll notice on websites like a fixed navigation bar that follows the user down the page (something I&#39;m considering as an update to my site) or a &#39;top&#39; button for long pages. But then there&#39;s always the possibility of coming up with something different, if you look at my personal site (pictured below) you&#39;ll notice that I&#39;ve utilized this with the &#39;Top&#39; button that appears but if you look to the right of the page you&#39;ll notice that there is a little plane that &quot;flies&quot; from Scotland to Canada, pretty fun huh?&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEipIN_kyyU1P1cgSqEVkIJaaOrnbKd8GROXRUJplvMJ6CwrsHiBrpO8aNPGoiN3mpE8soRJ2wLpz39X22YyTk13Rx7eyR3j0R9d0Ejzvin0A-qF3LXrUABzyoApBlUtGyZg_0P-g-ocseu-/s1600/Screen+shot+2012-04-28+at+1.56.38+PM.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEipIN_kyyU1P1cgSqEVkIJaaOrnbKd8GROXRUJplvMJ6CwrsHiBrpO8aNPGoiN3mpE8soRJ2wLpz39X22YyTk13Rx7eyR3j0R9d0Ejzvin0A-qF3LXrUABzyoApBlUtGyZg_0P-g-ocseu-/s1600/Screen+shot+2012-04-28+at+1.56.38+PM.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;/div&gt;
&lt;br /&gt;
Now the thing that I&#39;ve been asked about that seems to have people stumped is how I got the plane to &quot;appear&quot; and &quot;disappear&quot; over and under objects on the site. This is down to some smart positioning of absolute divs and the ever useful &#39;z-index&#39; property! by positioning semi transparent images over it I got the effect of &quot;clouds&quot; and by using solid backgrounds the plane passes right under them.&lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;








The HTML and CSS &lt;/h3&gt;
&lt;br /&gt;
Here is the CSS I used for the plane:&lt;br /&gt;
&lt;br /&gt;
#plane{&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; position:fixed;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; top:-1870px;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; margin-left:808px;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; width:50px;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; height:2370px;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; z-index:100;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
Now you&#39;ll notice that the z-index is set to 100. This means anything set with a higher z-index that is an &quot;absolute&quot; positioned div will sit on top of the plane. For example to get the plane to &quot;take off&quot; I had to position a div over it at the top of the page. Here is the CSS for the navigation:&lt;br /&gt;
&lt;br /&gt;
#menu{&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; width:872px;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; height:171px;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; position:absolute;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; z-index:200;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; background:url(../images/navBG.png) top left no-repeat;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; margin-left:113px;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; padding-top:105px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
Using this code you should be able to replicate what I&#39;ve done in my site! &lt;br /&gt;
&lt;br /&gt;
&lt;h3&gt;








So what now?&lt;/h3&gt;
&lt;br /&gt;
Something that helps me enormously is a great tool called &quot;firebug&quot; you can get this in add-ons for firefox. This tool allows you to look into what other designers have done to get the effects! My buddy Arley wrote a great post about it here:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://sixrevisions.com/tools/firebug-guide-web-designers/&quot;&gt;http://sixrevisions.com/tools/firebug-guide-web-designers/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
So now the challenge for you is the reason to use this. There are plenty of reasons to have a fixed div for navigational purposes but with a bit of thought it could be something more than that! Like a flying superhero, a character running down a street seen from above or a mole burrowing into the ground. The possibilities are endless, have fun with it!&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhD5fGljLYJ-lxkoJGcY8kjC-yinPW0IukIp6rbEaxDfP-1QRcwgnpWUpewJ4V6BrqzUK71NpYl4x65gnFpZMTE70I9FgG7BSAgFJRTN_s-cfhhnxN9bhq-kqVTJIfaqGkxPEs3WCVsohzg/s1600/Screen+shot+2012-04-28+at+2.10.06+PM.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhD5fGljLYJ-lxkoJGcY8kjC-yinPW0IukIp6rbEaxDfP-1QRcwgnpWUpewJ4V6BrqzUK71NpYl4x65gnFpZMTE70I9FgG7BSAgFJRTN_s-cfhhnxN9bhq-kqVTJIfaqGkxPEs3WCVsohzg/s1600/Screen+shot+2012-04-28+at+2.10.06+PM.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;</content><link rel='replies' type='application/atom+xml' href='http://andy-p151.blogspot.com/feeds/7780406446306765878/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://andy-p151.blogspot.com/2012/04/get-ready-for-take-off-with-fixed.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1268147986433733818/posts/default/7780406446306765878'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1268147986433733818/posts/default/7780406446306765878'/><link rel='alternate' type='text/html' href='http://andy-p151.blogspot.com/2012/04/get-ready-for-take-off-with-fixed.html' title='Get ready for take off with fixed position divs'/><author><name>andy patrick</name><uri>http://www.blogger.com/profile/11247928353967378342</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='31' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2bz31paDn_Wa3c2h4LMr35ttDoi-WTdgEXbVyxVGOXvinCHfDYFcDZPon4zQr31XOwB3rfs-cL2cGjAxiWfHKC2chkiHfGbUn68U95_UEkc7gyr_0qFNPFYymcv5Kug/s220/head3.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhK7N2g3MRIeO3g4hpE2pTwzCtW3G6trP9HHrjrX2iSZZqGQgS30EYhL7mqh1eyM6Kvz5s1Jd9MuCtOzyJ8km94lPF45dtGG9YAJigoSppGL74YSzC3Adrm_8LzAFydcMo6okI8QuNyqtfP/s72-c/Screen+shot+2012-04-28+at+2.01.42+PM.png" height="72" width="72"/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1268147986433733818.post-1270440506018699967</id><published>2012-02-11T21:32:00.000-08:00</published><updated>2012-02-11T22:00:59.940-08:00</updated><title type='text'>Feedburner</title><content type='html'>&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpO6cYBlGQ2HlVGW478hFAJGrWEVe5BmFgaIwyaV3vo663KpxE3QNdlQEgQuJx3B9Cm7PLl8-B5hbcdyKmM4WCZHyHJsxpnNMJJKCo0ofizGcpih_9J0qZkyLzRObgFBSWAg42UhTfnacf/s1600/Screen+shot+2012-02-12+at+12.34.48+AM.png&quot;&gt;&lt;img style=&quot;display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 349px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpO6cYBlGQ2HlVGW478hFAJGrWEVe5BmFgaIwyaV3vo663KpxE3QNdlQEgQuJx3B9Cm7PLl8-B5hbcdyKmM4WCZHyHJsxpnNMJJKCo0ofizGcpih_9J0qZkyLzRObgFBSWAg42UhTfnacf/s400/Screen+shot+2012-02-12+at+12.34.48+AM.png&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5708118876256358930&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;A handy tool that I&#39;ve come to love is google&#39;s feedburner. This wonderful freebie allows you to pull a feed from anything with an RSS feed. This includes anything from a blog, to your facebook page or twitter timeline. It&#39;s also incredibly easy to style. If you are reading this on my website you&#39;ll see that I&#39;ve styled it very easily to fit with my site design. It&#39;s fairly simple, all you need to do is enter the address of the page you want to feed from, select your options to set it up and hey presto! You&#39;re good to go. To get the code you need to post this onto your site simply hit the &quot;publicize&quot; tab. This will give you an option to select &quot;BuzzBoost&quot; in here you&#39;ll find everything you need to personalize the feed and grab the code!&lt;br /&gt;&lt;br /&gt;Check it out here &lt;a href=&quot;http://feedburner.google.com&quot;&gt;http://feedburner.google.com&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://andy-p151.blogspot.com/feeds/1270440506018699967/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://andy-p151.blogspot.com/2012/02/feedburner.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1268147986433733818/posts/default/1270440506018699967'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1268147986433733818/posts/default/1270440506018699967'/><link rel='alternate' type='text/html' href='http://andy-p151.blogspot.com/2012/02/feedburner.html' title='Feedburner'/><author><name>andy patrick</name><uri>http://www.blogger.com/profile/11247928353967378342</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='31' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2bz31paDn_Wa3c2h4LMr35ttDoi-WTdgEXbVyxVGOXvinCHfDYFcDZPon4zQr31XOwB3rfs-cL2cGjAxiWfHKC2chkiHfGbUn68U95_UEkc7gyr_0qFNPFYymcv5Kug/s220/head3.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpO6cYBlGQ2HlVGW478hFAJGrWEVe5BmFgaIwyaV3vo663KpxE3QNdlQEgQuJx3B9Cm7PLl8-B5hbcdyKmM4WCZHyHJsxpnNMJJKCo0ofizGcpih_9J0qZkyLzRObgFBSWAg42UhTfnacf/s72-c/Screen+shot+2012-02-12+at+12.34.48+AM.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1268147986433733818.post-4466455942299678122</id><published>2012-02-11T19:03:00.000-08:00</published><updated>2012-02-11T19:10:21.326-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="wallpaper"/><title type='text'>Smashing Mag wallpaper</title><content type='html'>&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEikRw2aQtQLw6xt5EQkmiDEdkK-2WuxGrUwA0XKUPrBekhhsw_wS0W_hPP40qcYMHQMG8XCbQbUbX1wst16lQCsE8VjOx9StrOFaY8KmjXhX7rTm075BB8Vji6jC16k8KO6Z-iiDLSzsBWg/s1600/Screen+shot+2012-02-11+at+10.00.11+PM.jpg&quot;&gt;&lt;img style=&quot;display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 400px; height: 214px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEikRw2aQtQLw6xt5EQkmiDEdkK-2WuxGrUwA0XKUPrBekhhsw_wS0W_hPP40qcYMHQMG8XCbQbUbX1wst16lQCsE8VjOx9StrOFaY8KmjXhX7rTm075BB8Vji6jC16k8KO6Z-iiDLSzsBWg/s400/Screen+shot+2012-02-11+at+10.00.11+PM.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5708081184180304082&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I&#39;ve recently completed a little fun project to enter into Smashing mags monthly wallpapers. It&#39;s the time of year where things get a little flat, your resolutions are starting to fall by the way side (my not drinking one lasted 2 days) and generally you just need a little pick me up. What better way than a nice wallpaper to pick you up every day you look at your computer? If anyone&#39;s in a hurry and can&#39;t wait to see if it gets picked for smashing mag please contact me I&#39;ll send it over to you :)</content><link rel='replies' type='application/atom+xml' href='http://andy-p151.blogspot.com/feeds/4466455942299678122/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://andy-p151.blogspot.com/2012/02/smashing-mag-wallpaper.html#comment-form' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1268147986433733818/posts/default/4466455942299678122'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1268147986433733818/posts/default/4466455942299678122'/><link rel='alternate' type='text/html' href='http://andy-p151.blogspot.com/2012/02/smashing-mag-wallpaper.html' title='Smashing Mag wallpaper'/><author><name>andy patrick</name><uri>http://www.blogger.com/profile/11247928353967378342</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='31' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2bz31paDn_Wa3c2h4LMr35ttDoi-WTdgEXbVyxVGOXvinCHfDYFcDZPon4zQr31XOwB3rfs-cL2cGjAxiWfHKC2chkiHfGbUn68U95_UEkc7gyr_0qFNPFYymcv5Kug/s220/head3.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEikRw2aQtQLw6xt5EQkmiDEdkK-2WuxGrUwA0XKUPrBekhhsw_wS0W_hPP40qcYMHQMG8XCbQbUbX1wst16lQCsE8VjOx9StrOFaY8KmjXhX7rTm075BB8Vji6jC16k8KO6Z-iiDLSzsBWg/s72-c/Screen+shot+2012-02-11+at+10.00.11+PM.jpg" height="72" width="72"/><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1268147986433733818.post-2503830904451584610</id><published>2011-09-13T11:07:00.000-07:00</published><updated>2011-12-03T21:36:44.167-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="canada"/><category scheme="http://www.blogger.com/atom/ns#" term="email"/><category scheme="http://www.blogger.com/atom/ns#" term="law"/><category scheme="http://www.blogger.com/atom/ns#" term="spam"/><title type='text'>Can the spam!</title><content type='html'>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqr2VggFAj4gc70z6_0qTgGz4guJxGt3IwVOz3G307_BU3OXkzmyGx5FLXH6G7hyUZuoujQumUk4DKjrvxz0on8N-DalHZWUJYW9DaUNHNrODL6azqcn8Cl3dx1k88qU2ICYjv6Uhf3EFH/s1600/1559606_340_1116081430036-spam.jpg&quot;&gt;&lt;img style=&quot;float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 320px; height: 320px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqr2VggFAj4gc70z6_0qTgGz4guJxGt3IwVOz3G307_BU3OXkzmyGx5FLXH6G7hyUZuoujQumUk4DKjrvxz0on8N-DalHZWUJYW9DaUNHNrODL6azqcn8Cl3dx1k88qU2ICYjv6Uhf3EFH/s320/1559606_340_1116081430036-spam.jpg&quot; border=&quot;0&quot; alt=&quot;&quot;id=&quot;BLOGGER_PHOTO_ID_5651907692988690466&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;It&#39;s about time it happened I&#39;ve always said that personal email addresses shouldn&#39;t be open to people sending them whatever the hell they want. If you think about your own mail box and what you receive in it, how do you feel when you get a whole bunch of junk mail that you think &quot;where the hell did that come from?&quot;&lt;br /&gt;&lt;br /&gt;So under the new spam laws the Canadian law levies a $200 fee per spam message sent, and the recipient doesn’t have to prove damages. “The scary part of it is it’s not true hard-core spammers that will be affected by this. It is going to be the big companies that didn’t really care about the law,” Charles Lupien, an attorney with Montreal-based Fasken Martineau DuMoulin who focuses on intellectual property and e-commerce says. “They may send messages that are legitimate under CAN-SPAM but that don’t follow Canada’s law and open the door to big class action suits.”&lt;br /&gt;&lt;br /&gt;But to me the biggest offenders actually ARE the big companies. If you really want to block your typical &quot;grow your member&#39; emails or &#39;get 10 tons of viagra for 10 bucks&#39; you can just up your spam filter. But the problem comes when to use a website you have to provide your email address to have access, you then receive a confirmation email from this company (which goes to your spam folder) you mark it as safe and then that&#39;s the door open for the spam from that company to flow!&lt;br /&gt;&lt;br /&gt;I&#39;m all for it that these companies maybe will now think twice about sending crappy emails to people&#39;s PRIVATE email accounts and clogging up our inboxes with &quot;GREAT NEW PRODUCTS&quot; or &quot;GREAT NEW PROMOTIONS&quot;</content><link rel='replies' type='application/atom+xml' href='http://andy-p151.blogspot.com/feeds/2503830904451584610/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://andy-p151.blogspot.com/2011/09/can-spam.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1268147986433733818/posts/default/2503830904451584610'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1268147986433733818/posts/default/2503830904451584610'/><link rel='alternate' type='text/html' href='http://andy-p151.blogspot.com/2011/09/can-spam.html' title='Can the spam!'/><author><name>andy patrick</name><uri>http://www.blogger.com/profile/11247928353967378342</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='31' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg2bz31paDn_Wa3c2h4LMr35ttDoi-WTdgEXbVyxVGOXvinCHfDYFcDZPon4zQr31XOwB3rfs-cL2cGjAxiWfHKC2chkiHfGbUn68U95_UEkc7gyr_0qFNPFYymcv5Kug/s220/head3.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqr2VggFAj4gc70z6_0qTgGz4guJxGt3IwVOz3G307_BU3OXkzmyGx5FLXH6G7hyUZuoujQumUk4DKjrvxz0on8N-DalHZWUJYW9DaUNHNrODL6azqcn8Cl3dx1k88qU2ICYjv6Uhf3EFH/s72-c/1559606_340_1116081430036-spam.jpg" height="72" width="72"/><thr:total>0</thr:total></entry></feed>