<?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>Krazier Designs &#187; Google</title>
	<atom:link href="http://blog.krazier.com/index.php/category/google/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.krazier.com</link>
	<description>Freelance Design Blog</description>
	<lastBuildDate>Mon, 03 May 2010 05:30:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Simple Google Map Embedding Tip</title>
		<link>http://blog.krazier.com/index.php/simple-google-map-embedding-tip/</link>
		<comments>http://blog.krazier.com/index.php/simple-google-map-embedding-tip/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 04:08:15 +0000</pubDate>
		<dc:creator>Zebb</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Address]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[Embed]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[Map]]></category>
		<category><![CDATA[Pop-up]]></category>
		<category><![CDATA[Popup]]></category>

		<guid isPermaLink="false">http://blog.krazier.com/index.php/simple-google-map-embedding-tip/</guid>
		<description><![CDATA[ 
As a web designer I am frequently required to embed a Google or possibly Bing map onto the contact page of a new website. Often times the client or the allotted area for the map can be fairly small making it hard to see the “Pop-up” window which contains the address information and such [...]]]></description>
			<content:encoded><![CDATA[<div class="headlinePhoto"><a title="Simple Google Map Embedding Tip" href="http://blog.krazier.com/index.php/simple-google-map-embedding-tip/"><img style="display: inline" title="Map" alt="Map" src="http://blog.krazier.com/wp-content/uploads/2010/04/Map.jpg" width="565" height="283" /></a> </div>
<p>As a web designer I am frequently required to embed a Google or possibly Bing map onto the contact page of a new website. Often times the client or the allotted area for the map can be fairly small making it hard to see the “Pop-up” window which contains the address information and such on the map. Frequently the window will get cut off on the top or it simply is aligned oddly for the size of the map.</p>
<p><strong>The issue:</strong></p>
<p><a href="http://blog.krazier.com/wp-content/uploads/2010/04/image.png"><img style="display: inline" title="image" alt="image" src="http://blog.krazier.com/wp-content/uploads/2010/04/image_thumb.png" width="402" height="302" /></a> </p>
<p>Notice how the window is cut off and you can’t really see much.</p>
<p><strong>How it should look:</strong></p>
<p><a href="http://blog.krazier.com/wp-content/uploads/2010/04/image1.png"><img style="display: inline" title="image" alt="image" src="http://blog.krazier.com/wp-content/uploads/2010/04/image_thumb1.png" width="402" height="302" /></a> </p>
<p>Now you can see the full Pop-up window, yet without having to change the allotted width and height of the map area.</p>
<p><strong>The Solution:</strong></p>
</p>
<p><strong>HTML:</strong>     <br />&lt;div class=&quot;mapContainer&quot;&gt;     <br />&lt;iframe width=&quot;400&quot; height=&quot;<strong>550</strong>&quot; src=&quot;”&gt;&lt;/div&gt;     <br />&lt;/div&gt;</p>
<p>*Note that most of the map code is removed for ease of reading.</p>
<p><strong>CSS:      <br /></strong>.mapContainer     <br />{     <br />width:400px;     <br />height: <strong>300</strong>px;     <br /><strong>overflow: hidden;</strong>     <br />}</p>
<p>If you look at the code above you will see a few key elements to make this work.</p>
<p>First, you need to wrap your iFrame in a simple div with a class or id attached to it, in this case it’s just a class called “mapContainer”.</p>
<p>Secondly, in the css code you need to define your height and width, specifically the height. As you will notice I have set the css height to only 300 pixels (my allotted space on my site), but the iFrame height is 550 pixels. (more on this in a bit)</p>
<p>Thirdly, you will notice I have a css attribute: overflow: hidden; – this is important as it allows us to hide anything that may fall outside of our div container.</p>
<p>Now back to the height settings, if you look at the iFrame you will notice it is set to 550px and not the 300px that we have in our css. What we are doing is making the map “extra tall” which in return pull our location marker and pop-up down further inside of the div, thus lining it up the way we want need it to be while not extending outside of our div container since we have the overflow: hidden value set. (You need to fiddle with the height values until you get the desired vertical placement)</p>
<p>And that is all there is to it, pretty simple but very effective.</p>
<p>I have never actually tried it, but I would expect you can have the same results if you need to adjust the horizontal placement as well, just set your iFrame width larger than the css width.</p>
<p>You will only be able to pull the pop-up down and/or right with this technique.</p>
<p>Has anyone else had a similar issue? How did you solve it? Is there a better way? Let me know your thoughts.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.krazier.com/index.php/simple-google-map-embedding-tip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Microsoft Search can gain Marketshare</title>
		<link>http://blog.krazier.com/index.php/how-microsoft-search-can-gain-marketshare/</link>
		<comments>http://blog.krazier.com/index.php/how-microsoft-search-can-gain-marketshare/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 02:56:39 +0000</pubDate>
		<dc:creator>Zebb</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Kumo]]></category>
		<category><![CDATA[Live Search]]></category>
		<category><![CDATA[MSN]]></category>

		<guid isPermaLink="false">http://blog.krazier.com/?p=3</guid>
		<description><![CDATA[For years now Google has completely dominated the search market and almost all other search providers have continued to lose market share despite numerous re branding, site updates, new features and other tactics. Microsoft has recieved a beating in the press about how they have been struggling to get Live Search higher in market share despite it&#8217;s dominance in other areas [...]]]></description>
			<content:encoded><![CDATA[<p>For years now Google has completely dominated the search market and almost all other search providers have continued to lose market share despite numerous re branding, site updates, new features and other tactics. Microsoft has recieved a beating in the press about how they have been struggling to get Live Search higher in market share despite it&#8217;s dominance in other areas like the browser and their Windows operating system.</p>
<p><a href="http://blog.krazier.com/wp-content/uploads/2009/04/msnhome.jpg" target="_blank"><img class="size-medium wp-image-9  " style="BORDER-BOTTOM: #cccccc 1px solid; BORDER-LEFT: #cccccc 1px solid; MARGIN: 10px; FLOAT: right; BORDER-TOP: #cccccc 1px solid; BORDER-RIGHT: #cccccc 1px solid" title="MSN.com Homepage" src="http://blog.krazier.com/wp-content/uploads/2009/04/msnhome-256x300.jpg" alt="Current look of MSN.com." width="222" height="253" /></a></p>
<p><strong>The question now is:<br />
</strong>What will it take for Microsoft to actually gain market share in search? Will it be another new re branding with their new Kumo name? Is it by doing more marketing and advertising? Or do they need to simply drop out of the search game?</p>
<p>I think Microsoft can significantly increase it&#8217;s market share by making one simple change. One simple change, is that really possible? Yes</p>
<p>Microsoft&#8217;s biggest advantage right now over Google is the fact that it has a huge OS market share around the world, their OS comes with their own browser installed called Internet Explorer which is still the dominating browser on the internet. When any person buys a new computer with Windows or does a clean install of Windows onto their computer then that person pretty much HAS to open up Internet Explorer to access the Internet, even if it means they are going to go download FireFox to set as your default browser.</p>
<p>This simple fact that IE is a users first access point to the internet is what Microsoft can use to its advantage to get Live Search to grab marketshare from Google. What is the first page that people see when they open IE for the first time? MSN.com, what else do they see? 50+ links to articles about, sports, news, weather, etc. etc. or links to ads and videos. What do people not see? The search box.</p>
<p><a href="http://blog.krazier.com/wp-content/uploads/2009/04/googlehompage.jpg" target="_blank"><img class="size-medium wp-image-10" style="margin: 10px; border: #cccccc 1px solid;float: left;" title="Google.com Homepage" src="http://blog.krazier.com/wp-content/uploads/2009/04/googlehompage-300x152.jpg" alt="Current look of Google.com" width="300" height="152" /></a></p>
<p>People by nature are going to read what is put in front of them, they will take the lazy route out and simply click on things that look interesting rather than having to hunt down and search for something. Sure it&#8217;s &#8220;easier&#8221; for the user to find news, however it simply kills the need for search. Once one article heading catches the eye of a user that user will click on that link, they will read the article, then find something else to do and never give search a second thought.</p>
<p>However, if you go to Google.com the main and single purpose of the site is Search. When a user is on Google.com their focus stays on search there is very little else to distract the user from doing exactly what Google wants them to do.</p>
<p><a href="http://blog.krazier.com/wp-content/uploads/2009/04/livesearchhomepage.jpg" target="_blank"><img class="size-medium wp-image-11" style="margin: 10px; border: #cccccc 1px solid;float: right;" title="Live Search Homepage" src="http://blog.krazier.com/wp-content/uploads/2009/04/livesearchhomepage-300x197.jpg" alt="Current look of Live.com" width="300" height="197" /></a></p>
<p>If Microsoft wants to gain market share and to get people actually using their search, all they have to do is set the default homepage in Internet Explorer to Live.com (or kumo if/when it comes out and assuming it&#8217;s as nice or better as the Live.com). I honestly believe it would be that simple to compete against Google.</p>
<p><strong>Why it would work:</strong></p>
<ol>
<li>It would look totally different and un-expected to every single person that opens up IE for the first time on a fresh install of windows. The user in return would give it at least a few extra seconds of attention and the user would probably be interested at least a little bit about the photo on the page.</li>
<li>The photo on Live.com in my opinion is the most appealing part of Live.com versus Google.com I enjoy great photography for one and also enjoy learning about new things that I normally would not have thought to look up. The image accomplishes both of these things, plus the boxes that you can click on about the photo returns Live Search Results not some random article like MSN.com would have brought up.</li>
<li>The focus of the user is now Search, there are no articles grabbing my attention and pulling me away from what Microsoft wants most &#8220;Search&#8221;</li>
<li>The interface is super clean and super easy to use. Live.com is minimalistic and has good design, whereas Google.com is simply minimalistic.</li>
<li>Windows 7, Microsoft&#8217;s next major OS. Over the last few months/year Windows 7 for the most part has gotten great reviews as being the best or nearly the best OS Microsoft has ever put out. With Vista having poor acceptance (despite the fact it really isn&#8217;t that bad) Windows 7 will be 100% more successful than Vista without a doubt. If Microsoft would set IE homepage to Live.com when it Windows 7 is released I think Microsoft will be able to get a new and fresh start with it Live Search and since people will find Windows 7 to be a really great operating system they will be happier with Microsoft which will give them confidence in Live Search which will increase market share.</li>
</ol>
<p><strong>Consequences:<br />
</strong>There are certainly a few side effects with changing the default homepage for IE. People may feel lost at first and miss seeing the new pushed in their face. Microsoft will lose significant traffic to MSN.com and all the articles and advertising which could be a big issue in the short term but would be better in the long run if Microsoft is more concerned about Live Search market share and staying competitive in the search market.</p>
<p>I could dig a lot deeper into my theory and provide more points of why it could work and go into futher detail, however this post is already plenty long and doing this writing thing is still quite new to me <img src='http://blog.krazier.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Some articles about Kumo:</strong></p>
<ul>
<li><a href="http://www.techcrunch.com/2008/11/23/microsoft-to-rebrand-search-will-it-be-kumo/">http://www.techcrunch.com/2008/11/23/microsoft-to-rebrand-search-will-it-be-kumo/</a></li>
<li><a href="http://blogs.zdnet.com/microsoft/?p=1736">http://blogs.zdnet.com/microsoft/?p=1736</a></li>
<li><a href="http://www.pcworld.com/article/154403/kumo_kmon.html">http://www.pcworld.com/article/154403/kumo_kmon.html</a></li>
</ul>
<p>I look forward to your comments and critiques of my ideas.<br />
zebb.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.krazier.com/index.php/how-microsoft-search-can-gain-marketshare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
