<?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>smugblog: Web Tricks &#187; UI</title>
	<atom:link href="http://blogs.smugmug.com/web-tricks/category/ui/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.smugmug.com/web-tricks</link>
	<description>what, you don't like the way it works already?</description>
	<lastBuildDate>Mon, 14 Jul 2008 21:42:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9-rare</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Subtle UI Problems:  Large Headers</title>
		<link>http://blogs.smugmug.com/web-tricks/2005/07/19/subtle-ui-problems-large-headers/</link>
		<comments>http://blogs.smugmug.com/web-tricks/2005/07/19/subtle-ui-problems-large-headers/#comments</comments>
		<pubDate>Tue, 19 Jul 2005 19:14:32 +0000</pubDate>
		<dc:creator>onethumb</dc:creator>
				<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://blogs.smugmug.com/web-tricks/?p=7</guid>
		<description><![CDATA[This is particularly true of Pros using smugmug, but anyone doing customization can benefit from thinking about this a little bit more.
People come to your galleries to view your photos (and for Pros, to buy!).  It&#8217;s great to have your brand/studio/company name prominently displayed, but let&#8217;s face it, they&#8217;re really there to ooh and [...]]]></description>
			<content:encoded><![CDATA[<p>This is particularly true of <a href="http://www.smugmug.com/pro/">Pros</a> using smugmug, but anyone doing customization can benefit from thinking about this a little bit more.</p>
<p>People come to your galleries to view your photos (and for Pros, to buy!).  It&#8217;s great to have your brand/studio/company name prominently displayed, but let&#8217;s face it, they&#8217;re really there to ooh and aah over your photos (and buy them!).</p>
<p>It turns out that people are allergic to scrolling, particularly to see photos.  They don&#8217;t want to click, scroll, click, scroll, click, scroll.  Yet many people customizing their smugmug pages put enormously large headers on their photos which cause their viewers to scroll their pages.  Many leave in disgust, not having seen (or bought!) most of them.</p>
<p>So, here&#8217;s smugmug&#8217;s internal guidelines for making sure your customers are happy and able to see your photos, not to mention buy them.  <img src='http://blogs.smugmug.com/web-tricks/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<li>At <strong>1024&#215;768</strong> screen resolution, using Internet Explorer 6 on a Windows PC with the browser maximized and default toolbars, there should be no scrolling vertically or horizontally in the <strong>Elegant</strong> style.</li>
<li>At <strong>800&#215;600</strong> screen resolution, using Internet Explorer 6 on a Windows PC with the browser maximized and default toolbars, there should be no scrolling vertically or horizontally in the <strong>Elegant Small</strong> style.</li>
<li>Make your images <strong>lightweight</strong> (as in bytes).  If they&#8217;re large, your page will load very slowly and no-one will stick around to see your photos. No multi-megabyte header images!</li>
<p>That&#8217;s the main reason smugmug&#8217;s logo is so small&#8230; it&#8217;s not because we&#8217;re not proud of our brand (we are!) but because we know people are there to view photos, not ogle our cute logo.  </p>
<p>Might want to give your own headers a little re-thinking and possibly re-tooling.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.smugmug.com/web-tricks/2005/07/19/subtle-ui-problems-large-headers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Putting RSS/Atom feeds back</title>
		<link>http://blogs.smugmug.com/web-tricks/2005/06/23/putting-rssatom-feeds-back/</link>
		<comments>http://blogs.smugmug.com/web-tricks/2005/06/23/putting-rssatom-feeds-back/#comments</comments>
		<pubDate>Thu, 23 Jun 2005 15:26:03 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://blogs.smugmug.net/web-tricks/?p=4</guid>
		<description><![CDATA[UPDATED: This is almost pointless now as we have added the feed buttons to both the real footer and mini-footer  
If you want to remove the feeds use this code in your CSS:

#feeds {
     display: none;
}

When a pro adds a custom footer, the links to the RSS and Atom feeds [...]]]></description>
			<content:encoded><![CDATA[<p>UPDATED: This is almost pointless now as we have added the feed buttons to both the real footer and mini-footer <img src='http://blogs.smugmug.com/web-tricks/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you want to remove the feeds use this code in your CSS:</p>
<pre class="codebox"><code>
#feeds {
     display: none;
}
</code></pre>
<p>When a pro adds a custom footer, the links to the RSS and Atom feeds are also nuked. I came up with some javascript that will put them back wherever they want them to be.</p>
<p>First, add the following code to the Javascript section of your customizing page:</p>
<pre class="codebox"><code>
function findFeed(feedType, feedImage) {
  linkTags = document.getElementsByTagName(&quot;link&quot;);
  for (i = 0; i &lt; linkTags.length; i++) {
    if (linkTags[i].type == feedType) {
      document.write('&lt;a href=&quot;'+linkTags[i].href+'&quot;&gt;&lt;img src=&quot;http://www.smugmug.com/img/'+feedImage+'.gif&quot; border=&quot;0&quot;/&gt;&lt; /a&gt;');
    }
  }
}
</code></pre>
<p>Then, in any of your HTML sections, add this code and the buttons will appear:</p>
<pre class="codebox"><code>
&lt;script type=&quot;text/javascript&quot;&gt;
  findFeed(&quot;application/atom+xml&quot;,&quot;atom&quot;);
  findFeed(&quot;application/rss+xml&quot;,&quot;rss&quot;);
&lt;/script&gt;
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://blogs.smugmug.com/web-tricks/2005/06/23/putting-rssatom-feeds-back/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Creating your own webpage on smugmug</title>
		<link>http://blogs.smugmug.com/web-tricks/2005/06/21/creating-your-own-webpage-on-smugmug/</link>
		<comments>http://blogs.smugmug.com/web-tricks/2005/06/21/creating-your-own-webpage-on-smugmug/#comments</comments>
		<pubDate>Tue, 21 Jun 2005 20:36:08 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
				<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">/?p=1</guid>
		<description><![CDATA[Every once in a while we get users that want to add their own webpage and put on it whatever they want; extended bio, pricing, contact info, etc. While smugmug does not officially offer a method of doing so, I came up with a method that involves using style sheets to achieve the effect. Better [...]]]></description>
			<content:encoded><![CDATA[<p>Every once in a while we get users that want to add their own webpage and put on it whatever they want; extended bio, pricing, contact info, etc. While smugmug does not officially offer a method of doing so, I came up with a method that involves using style sheets to achieve the effect. Better yet, this method will work for all user levels!</p>
<p>First step is to create an empty gallery, we are going to hide the &#8220;This gallery is empty&#8221; warning using style sheets. We can then place the HTML you want on that page inside the gallery description. Pros can either add the style sheet code to their customizing section for CSS, or they can put it inline like everyone else. Here is some example code that shows a description on your homepage, but hides that description once you get to the gallery page itself. Remember to add enough space between the description and page code iteself so that neither will be cut off.</p>
<pre class="codebox"><code>
&lt;div class=&quot;opening&quot;&gt;A list of prices for various sizes.&lt;/div&gt;
&lt;div style=&quot;font-size: 14px; color: #ffffff;
  font-weight: normal&quot;&gt;Welcome to my pricing page.&lt;/div&gt;
&lt;style type=&quot;text/css&quot;&gt;
  .nophotos { display: none; }
  .opening { display: none; }
&lt;/style&gt;
</code></pre>
<p>You can also feature and image for this gallery, but you should force the gallery to style to be All Thumbs (sorry non-pros). Go ahead and upload a single image; then in your style sheets section add:</p>
<pre class="codebox"><code>img[width=&quot;100&quot;][height=&quot;80&quot;] { display: none; }</code></pre>
<p>But change the width and height to match the exact width and height of the uploaded photo as it appears on the gallery page.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.smugmug.com/web-tricks/2005/06/21/creating-your-own-webpage-on-smugmug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
