<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:s="http://jadedpixel.com/-/spec/shopify" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">
  <id>http://vogue.myshopify.com/blogs/weblog.xml</id>
  <title>Vogue - Weblog</title>
  <author>
    <name>Vogue</name>
  </author>
  <link href="http://vogue.myshopify.com/blogs/weblog.xml" rel="self" />
  <link href="http://vogue.myshopify.com/blogs/weblog" rel="alternate" />
  <updated>2007-08-26 09:17:56 -0600</updated>
  <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><entry>
    <id>tag:db1@shopify.com,2007:articles/92941</id>
    <title>RSS 2.0 Feed for Collections</title>
    <summary type="html">&lt;p&gt;Providing your visitors with an &lt;span class="caps"&gt;RSS&lt;/span&gt; feed subscription is an excellent way to keep them updated with the latest products added to your store. Shopify automatically generates these for blogs, but not for collections. Bummer!&lt;/p&gt;


	&lt;p&gt;We can easily create an &lt;span class="caps"&gt;RSS 2&lt;/span&gt;.0 feed ourselves though with a couple simple steps. It&amp;#8217;s &lt;em&gt;rumored&lt;/em&gt; that Shopify may eventually automatically generate feeds for you, but until then we&amp;#8217;ll need to improvise. Let&amp;#8217;s get started.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Create a Page&lt;/strong&gt;&lt;br /&gt;First thing we need is a blank page. Login into your Shopify admin and follow the steps below&amp;#8230;&lt;/p&gt;


	&lt;ol&gt;
	&lt;li&gt;Click the &amp;#8220;Blogs &amp;#38; Pages&amp;#8221; tab&lt;/li&gt;
		&lt;li&gt;Press &amp;#8220;Create Blog or Page&amp;#8221; &lt;/li&gt;
		&lt;li&gt;Type &lt;strong&gt;RSS&lt;/strong&gt; in the form field&lt;/li&gt;
		&lt;li&gt;Submit the form (Create new Page)&lt;/li&gt;
		&lt;li&gt;Leave the description blank (Write your Page)&lt;/li&gt;
		&lt;li&gt;Submit the form (Post Page)&lt;/li&gt;
	&lt;/ol&gt;


	&lt;p&gt;You&amp;#8217;ve setup the page where the feed will be available, which will be located at &lt;code&gt;http://domain.com/pages/rss&lt;/code&gt;. Now let&amp;#8217;s make sure you have a collection with all your products.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;All Products Collection&lt;/strong&gt;&lt;br /&gt;If you don&amp;#8217;t already have a smart collection with all your products setup, we&amp;#8217;ll need that&amp;#8230;&lt;/p&gt;


	&lt;ol&gt;
	&lt;li&gt;Click the &amp;#8220;Collections&amp;#8221; tab&lt;/li&gt;
		&lt;li&gt;Press &amp;#8220;Create new Collection&amp;#8221; &lt;/li&gt;
		&lt;li&gt;Type &lt;strong&gt;All&lt;/strong&gt; in the title field&lt;/li&gt;
		&lt;li&gt;Click the &amp;#8220;Smart Collection&amp;#8221; radio button&lt;/li&gt;
		&lt;li&gt;Set conditions to &lt;em&gt;product price is greater than 0&lt;/em&gt;&lt;/li&gt;
		&lt;li&gt;Submit the form (Create Collection)&lt;/li&gt;
	&lt;/ol&gt;


	&lt;p&gt;You&amp;#8217;ve just setup a collection that will always contain &lt;strong&gt;all product&lt;/strong&gt; in your store that have a price greater than 0. Now let&amp;#8217;s create the actual feed&amp;#8230;&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Generate the Feed&lt;/strong&gt;&lt;br /&gt;This step is a simple copy and paste. Open &lt;code&gt;theme.liquid&lt;/code&gt; from the &lt;strong&gt;Look &amp;#38; Feel&lt;/strong&gt; tab and add the following block of code before the &lt;span class="caps"&gt;FIRST CHARACTER&lt;/span&gt; of the file&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;{% case page.handle %}{% when "rss" %}&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;rss version="2.0"&amp;gt;
    &amp;lt;channel&amp;gt;
        &amp;lt;title&amp;gt;{{ shop.name }}&amp;lt;/title&amp;gt;
        &amp;lt;link&amp;gt;{{ shop.url }}&amp;lt;/link&amp;gt;
        &amp;lt;description&amp;gt;TYPE A 25-30 WORD DESCRIPTION OF YOUR FEED!&amp;lt;/description&amp;gt;
        &amp;lt;language&amp;gt;en-us&amp;lt;/language&amp;gt;
        &amp;lt;copyright&amp;gt;Copyright {{ "now" | date: "%Y" }} {{ shop.name }}&amp;lt;/copyright&amp;gt;
        {% for product in collections.all.products %}&amp;lt;item&amp;gt;
            &amp;lt;title&amp;gt;{{ product.title }}&amp;lt;/title&amp;gt;
            &amp;lt;link&amp;gt;{{ shop.url }}{{ product.url }}&amp;lt;/link&amp;gt;
            &amp;lt;description&amp;gt;{% for image in product.images limit: 1 %}&amp;amp;lt;p&amp;amp;gt;
            &amp;amp;lt;img src="{{ image | product_img_url: 'medium' }}" 
            alt="{{ product.title }}" /&amp;amp;gt;&amp;amp;lt;/p&amp;amp;gt;{% endfor %}&amp;amp;lt;p&amp;amp;gt;
            &amp;amp;lt;a href="{{ shop.url }}{{ product.url }}"&amp;amp;gt;
            {{ product.title }}&amp;amp;lt;/a&amp;amp;gt;&amp;amp;lt;/p&amp;amp;gt;&amp;amp;lt;p&amp;amp;gt;&amp;amp;lt;strong&amp;amp;gt;
            {{ product.price_min | money }}{% if product.price_varies %} - 
            {{ product.price_max | money }}{% endif %}&amp;amp;lt;/strong&amp;amp;gt;
            &amp;amp;lt;/p&amp;amp;gt;&amp;amp;lt;p&amp;amp;gt;{{ product.description | strip_html | 
            truncate: 300 }}&amp;amp;lt;/p&amp;amp;gt;&amp;lt;/description&amp;gt;
        &amp;lt;/item&amp;gt;
    {% endfor %}&amp;lt;/channel&amp;gt;
&amp;lt;/rss&amp;gt;{% else %}&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Do &lt;span class="caps"&gt;NOT&lt;/span&gt; move the page content down before pasting the code in. Just paste it and leave the rest trailing your new code. Be sure to replace the capitalized section in the code above with &lt;span class="caps"&gt;YOUR&lt;/span&gt; feed description. Finally, go to the very end of &lt;code&gt;theme.liquid&lt;/code&gt; and add the following closing tag immediately after the &lt;span class="caps"&gt;LAST CHARACTER&lt;/span&gt;&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;{% endcase %}&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Open your browser and type &lt;code&gt;http://domain.com/pages/rss&lt;/code&gt; in the &lt;span class="caps"&gt;URL&lt;/span&gt; and you should see a fully functional &lt;span class="caps"&gt;RSS 2&lt;/span&gt;.0 feed! Here&amp;#8217;s the &lt;a href="/pages/rss"&gt;sample Vogue feed&lt;/a&gt;. While you could be completely finished right now, I prefer to use &lt;a href="http://feedburner.com"&gt;Feed Burner&lt;/a&gt; to track statistics and enhance the feed with their tools.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Feed Burner&lt;/strong&gt;&lt;br /&gt;If you choose to use &lt;a href="http://feedburner.com"&gt;Feed Burner&lt;/a&gt;, simply sign up for an account and use &lt;code&gt;http://domain.com/pages/rss&lt;/code&gt; as the &lt;span class="caps"&gt;URL&lt;/span&gt; they request. You will then be given the opportunity to create your new &lt;span class="caps"&gt;URL&lt;/span&gt;, which will look something like &lt;code&gt;http://feeds.feedburner/your-feed&lt;/code&gt;. Once you have the &lt;span class="caps"&gt;URL&lt;/span&gt; assigned, place it as a hyperlink somewhere on your site.&lt;/p&gt;


	&lt;p&gt;If you&amp;#8217;re using &lt;a href="http://feedburner.com"&gt;Feed Burner&lt;/a&gt;, paste the following link in any/all of your liquid templates&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;&amp;lt;a href="http://feeds.feedburner.com/your-feed"&amp;gt;Subscribe&amp;lt;/a&amp;gt;&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Alternatively, you could use the feed we created&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;&amp;lt;a href="/pages/rss"&amp;gt;Subscribe&amp;lt;/a&amp;gt;&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;&lt;strong&gt;Complete&lt;/strong&gt;&lt;br /&gt;That&amp;#8217;s it! Now you have a fully functional, stat tracking &lt;span class="caps"&gt;RSS 2&lt;/span&gt;.0 feed for all your products!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/vogue/~4/ZRDlms98owM" height="1" width="1"/&gt;</summary>
    <updated>2007-08-26 09:17:56 -0600</updated>
    <published>2007-08-26 09:17:56 -0600</published>
    <author>
      <name>Jared Burns</name>
    </author>
    <link href="http://feedproxy.google.com/~r/vogue/~3/ZRDlms98owM/92941-rss-2-0-feed-for-collections" rel="alternate" />
  <feedburner:origLink>http://vogue.myshopify.com/blogs/weblog/92941-rss-2-0-feed-for-collections</feedburner:origLink></entry>
  <entry>
    <id>tag:db1@shopify.com,2007:articles/91391</id>
    <title>Intelligent Tabbed Navigation</title>
    <summary type="html">&lt;p&gt;Making sure your visitors don&amp;#8217;t get lost in your site is an important role of a web publisher such as yourself. Any site on the web that pays attention to usability uses some variation of &lt;a href="http://en.wikipedia.org/wiki/Breadcrumb_%28navigation%29"&gt;breadcrumbs&lt;/a&gt; or tabbed navigation. These are great ways to give your visitors a way back to dry land if they get discombobulated.&lt;/p&gt;


	&lt;p&gt;&lt;img src="http://static0.jadedpixel.com/s/files/1/0001/8021/assets/tabber.png" title="Tabbed Navigation" alt="Tabbed Navigation" /&gt;&lt;/p&gt;


	&lt;p&gt;Though you may not know it, &lt;strong&gt;Vogue&lt;/strong&gt; is already setup for tabbed navigation. You won&amp;#8217;t need to write any &lt;span class="caps"&gt;CSS&lt;/span&gt; or &lt;span class="caps"&gt;XHTML&lt;/span&gt;, just some Liquid logic to light the tags up. By the way, this tutorial assumes you&amp;#8217;re using the version of &lt;strong&gt;Vogue&lt;/strong&gt; downloaded from this site. Also, the navigation tabs are displayed from your &lt;em&gt;main-menu&lt;/em&gt; linklist.&lt;/p&gt;


	&lt;p&gt;So, here we go. Open &lt;code&gt;theme.liquid&lt;/code&gt; and locate the following block of code&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;&amp;lt;div id="navigation"&amp;gt;
    &amp;lt;ul id="navigate"&amp;gt;{% for link in linklists.main-menu.links %}
        &amp;lt;li&amp;gt;&amp;lt;a href="{{ link.url }}"&amp;gt;{{ link.title }}&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;{% endfor %}
    &amp;lt;/ul&amp;gt;
&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;&lt;strong&gt;The code to insert is not displaying properly here, possibly due to textile, so you&amp;#8217;ll need to retype the code from the following screenshot&amp;#8230;&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://static1.jadedpixel.com/s/files/1/0001/8021/assets/tabbed-big.png" rel="lightbox[tabbed]"&gt;&lt;img src="http://static1.jadedpixel.com/s/files/1/0001/8021/assets/tabbed.png" alt="Tabbed Navigation Code" /&gt;&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;Each time Shopify iterates through the forloop, our logic checks to see if the next link to be displayed is equal to the page we&amp;#8217;re currently on. If that&amp;#8217;s the case, we add &lt;code&gt;class="current"&lt;/code&gt; to the link tag. I&amp;#8217;ve already prepared the styling in the &lt;span class="caps"&gt;CSS&lt;/span&gt; documents.&lt;/p&gt;


	&lt;p&gt;This set of logic covers most all cases &amp;#8211; index, collections, pages, blogs, cart and search. For the blog links, make sure you title the link with the exact name of the blog. All the other pages check &lt;span class="caps"&gt;URL&lt;/span&gt;&amp;#8217;s so the links can have different names than the page title, collection title, etc.&lt;/p&gt;


	&lt;p&gt;That&amp;#8217;s all! Watch those tab&amp;#8217;s tell you where you are.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/vogue/~4/8u1_NRJLvmE" height="1" width="1"/&gt;</summary>
    <updated>2007-08-22 22:53:31 -0600</updated>
    <published>2007-08-22 22:53:31 -0600</published>
    <author>
      <name>Jared Burns</name>
    </author>
    <link href="http://feedproxy.google.com/~r/vogue/~3/8u1_NRJLvmE/91391-intelligent-tabbed-navigation" rel="alternate" />
  <feedburner:origLink>http://vogue.myshopify.com/blogs/weblog/91391-intelligent-tabbed-navigation</feedburner:origLink></entry>
  <entry>
    <id>tag:db1@shopify.com,2007:articles/91381</id>
    <title>Product Tags</title>
    <summary type="html">&lt;p&gt;Displaying tags on the collection page is a piece of cake, but showing them on the product page always tends to baffle people. Thank goodness for the flexibility of &lt;a href="http://liquidmarkup.org"&gt;Liquid&lt;/a&gt; though, which makes this quite an easy task.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;All Products Collection&lt;/strong&gt;&lt;br /&gt;Before getting into the actual code, we need to create a collection that holds &lt;strong&gt;all&lt;/strong&gt; the products. We can accomplish this by creating a &lt;em&gt;smart collection&lt;/em&gt; titled &lt;strong&gt;All&lt;/strong&gt; with conditions set to &lt;em&gt;product price is greater than 0&lt;/em&gt;. Go ahead and do this now by clicking the &amp;#8220;Collections&amp;#8221; tab, then create a new smart collection.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;The Tags&lt;/strong&gt;&lt;br /&gt;Now that we have a way to iterate through all the products, we can easily grab the tags for each product and dynamically show all products containing the specified tag(s) when clicked. Open &lt;code&gt;product.liquid&lt;/code&gt; and locate the following code towards the end of the page&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;Browse more {{ product.type | link_to_type }} or additional 
{{ product.vendor | link_to_vendor }} products.&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;This would be an ideal place to add the tags, so go ahead an replace the previous code with the following&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;Browse more {{ product.type | link_to_type }}, additional 
{{ product.vendor | link_to_vendor }} products, or items tagged 
{% for tag in product.tags %}
&amp;lt;a href="/collections/all/{{ tag }}"&amp;gt;{{ tag }}&amp;lt;/a&amp;gt;{% unless forloop.last %}, 
{% endunless %}{% endfor %}.&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Save and test it out. That&amp;#8217;s it!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/vogue/~4/uxpMdrp2ySo" height="1" width="1"/&gt;</summary>
    <updated>2007-08-22 22:01:55 -0600</updated>
    <published>2007-08-22 22:01:55 -0600</published>
    <author>
      <name>Jared Burns</name>
    </author>
    <link href="http://feedproxy.google.com/~r/vogue/~3/uxpMdrp2ySo/91381-product-tags" rel="alternate" />
  <feedburner:origLink>http://vogue.myshopify.com/blogs/weblog/91381-product-tags</feedburner:origLink></entry>
  <entry>
    <id>tag:db1@shopify.com,2007:articles/91361</id>
    <title>Continue Shopping...</title>
    <summary type="html">&lt;p&gt;While it&amp;#8217;s great to add an item to the cart, then automatically go to the cart to see what you&amp;#8217;ve put in it, sometimes you&amp;#8217;d prefer to stay at the current product. Essentially, add the product and encourage the customer to continue shopping.&lt;/p&gt;


	&lt;p&gt;This post is not a full fledged tutorial about this topic as you can do all kinds of cool stuff with &lt;em&gt;Javascript (AJAX)&lt;/em&gt;, this article is intended to give you a quick and easy way to &lt;em&gt;stay put&lt;/em&gt; after adding a product to the cart. Plus, it doesn&amp;#8217;t rely on &lt;em&gt;Javascript&lt;/em&gt;.&lt;/p&gt;


	&lt;p&gt;All we&amp;#8217;re going to do is add a single line of code &lt;span class="caps"&gt;INSIDE&lt;/span&gt; the cart form in &lt;code&gt;product.liquid&lt;/code&gt;. So, open &lt;code&gt;product.liquid&lt;/code&gt; and locate the opening form tag&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;&amp;lt;form action="/cart/add" method="post"&amp;gt;&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;and add the following line immediately beneath it&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;&amp;lt;input type="hidden" name="return_to" value="back" /&amp;gt;&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Save. If you watch the &lt;span class="caps"&gt;URL&lt;/span&gt; while adding the product to the cart, you&amp;#8217;ll see it quickly add the product then return to the current product &lt;span class="caps"&gt;URL&lt;/span&gt;. Obviously, to really make this effective you&amp;#8217;d want to notify the user that the product has been added and encourage them to continue shopping, but this is a start.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/vogue/~4/3eMvdWPeCJQ" height="1" width="1"/&gt;</summary>
    <updated>2007-08-22 21:38:52 -0600</updated>
    <published>2007-08-22 21:38:52 -0600</published>
    <author>
      <name>Jared Burns</name>
    </author>
    <link href="http://feedproxy.google.com/~r/vogue/~3/3eMvdWPeCJQ/91361-continue-shopping" rel="alternate" />
  <feedburner:origLink>http://vogue.myshopify.com/blogs/weblog/91361-continue-shopping</feedburner:origLink></entry>
  <entry>
    <id>tag:db1@shopify.com,2007:articles/91351</id>
    <title>Min-Width Quirk</title>
    <summary type="html">&lt;p&gt;For those of you who applied &lt;strong&gt;Vogue&lt;/strong&gt; from the Shopify admin, the is a quirk that you&amp;#8217;ll &lt;span class="caps"&gt;DEFINITELY&lt;/span&gt; want to fix. If you downloaded &lt;strong&gt;Vogue&lt;/strong&gt; from this site, the issue has already been resolved. At any rate, take a look at this horrid screenshot&amp;#8230;&lt;/p&gt;


	&lt;p&gt;&lt;img src="http://static0.jadedpixel.com/s/files/1/0001/8021/assets/min-width.png" title="Min-Width" alt="Min-Width" /&gt; &lt;img src="http://static0.jadedpixel.com/s/files/1/0001/8021/assets/min-width-bug.png" title="Min-Width Quirk" alt="Min-Width Quirk" /&gt;&lt;/p&gt;


	&lt;p&gt;You&amp;#8217;ll notice the backgrounds of the inner divisions don&amp;#8217;t span the width of the browser when it&amp;#8217;s less than the width of the container, which is 875 pixels. This is definitely not a good thing, but I believe it&amp;#8217;s limited to Safari and Firefox. Fortunately, we can quickly fix this.&lt;/p&gt;


	&lt;p&gt;We simply need to add &lt;strong&gt;min-width: 875px;&lt;/strong&gt; to #header, #mini-header, #layout and #footer in stylesheet.css, sea.css, and caramel.css&amp;#8230;&lt;/p&gt;


	&lt;p&gt;Here&amp;#8217;s an example of the header id in stylesheet.css&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;#header {
    color: #fff;
    background: #9b0103 url(header.png) repeat-x center top;
    min-width: 875px;
}&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Repeat that for each of the id&amp;#8217;s mentioned above in all three stylesheets, if you intend to use either of the others at some point. Well, were good to go again. Sheesh!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/vogue/~4/NY6SABdXA9s" height="1" width="1"/&gt;</summary>
    <updated>2007-08-22 21:15:26 -0600</updated>
    <published>2007-08-22 21:15:26 -0600</published>
    <author>
      <name>Jared Burns</name>
    </author>
    <link href="http://feedproxy.google.com/~r/vogue/~3/NY6SABdXA9s/91351-min-width-quirk" rel="alternate" />
  <feedburner:origLink>http://vogue.myshopify.com/blogs/weblog/91351-min-width-quirk</feedburner:origLink></entry>
  <entry>
    <id>tag:db1@shopify.com,2007:articles/91301</id>
    <title>Removing the Sidebar Indents</title>
    <summary type="html">&lt;p&gt;If you downloaded &lt;strong&gt;Vogue&lt;/strong&gt; from this site, this article doesn&amp;#8217;t apply to you. However, if you applied &lt;strong&gt;Vogue&lt;/strong&gt; from within the Shopify admin, you may choose to make this simple modification.&lt;/p&gt;


	&lt;p&gt;I&amp;#8217;ve had several &lt;a href="http://forums.shopify.com/categories/3/posts/10889#comment-12594"&gt;questions&lt;/a&gt; about removing the indent of the lists in the sidebar. Fortunately, this is an easy modification.&lt;/p&gt;


	&lt;p&gt;&lt;img src="http://static0.jadedpixel.com/s/files/1/0001/8021/assets/indent.png" title="Sidebar with Indent" alt="Sidebar with Indent" /&gt; &lt;img src="http://static0.jadedpixel.com/s/files/1/0001/8021/assets/indent-no.png" title="Sidebar without Indent" alt="Sidebar without Indent" /&gt;&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Navigation &amp;#38; Blog Entries&lt;/strong&gt;&lt;br /&gt;Open your stylesheet (&lt;code&gt;stylesheet.css&lt;/code&gt;, &lt;code&gt;caramel.css&lt;/code&gt; and/or &lt;code&gt;sea.css&lt;/code&gt;), locate the section called &lt;em&gt;@group Global Styles&lt;/em&gt;, then highlight the following section&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;ul, ol {
    margin-bottom: 10px;
}

ul li {
    margin-left: 25px;
    padding: 1px 0;
    list-style-type: disc;
    list-style-position: outside;
}

ol li {
    margin-left: 25px;
    padding: 1px 0;
    list-style-type: decimal;
    list-style-position: outside;
}&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;and replace with&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;ul, ol {
    margin-bottom: 15px;
}

ul li {
    padding: 2px 0 2px 15px;
    list-style-type: disc;
    list-style-position: inside;
}

ol li {
    padding: 2px 0 2px 15px;
    list-style-type: decimal;
    list-style-position: inside;
}&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Save. While we just took care of the navigation list and weblog entries, we still need to shift the &lt;em&gt;Featured Product&lt;/em&gt; list to the left as well.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Featured Products&lt;/strong&gt;&lt;br /&gt;Still in your stylesheet, locate the following block of code&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;ul#featuring li {
    padding: 4px 20px;
    list-style-type: none;
    list-style-position: outside;
    margin: 0;
}&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;and change to&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;ul#featuring li {
    padding: 4px 0;
    list-style-type: none;
    list-style-position: outside;
}&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Save your stylesheet once again to update your theme with the new changes.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Complete&lt;/strong&gt;&lt;br /&gt;That should do it. Head over to your shop and if you did everything correctly, the sidebar contents should all be left aligned.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/vogue/~4/DjCznIA9b2M" height="1" width="1"/&gt;</summary>
    <updated>2007-08-22 20:22:12 -0600</updated>
    <published>2007-08-22 20:22:12 -0600</published>
    <author>
      <name>Jared Burns</name>
    </author>
    <link href="http://feedproxy.google.com/~r/vogue/~3/DjCznIA9b2M/91301-removing-the-sidebar-indents" rel="alternate" />
  <feedburner:origLink>http://vogue.myshopify.com/blogs/weblog/91301-removing-the-sidebar-indents</feedburner:origLink></entry>
  <entry>
    <id>tag:db1@shopify.com,2007:articles/91281</id>
    <title>Grab the Feed</title>
    <summary type="html">&lt;p&gt;Up until now visitors have been subscribing to the &lt;span class="caps"&gt;XML&lt;/span&gt; feed that Shopify generates for this blog. For any blog in any Shopify store, by simply adding .xml to the blog name in the &lt;span class="caps"&gt;URL&lt;/span&gt;, an &lt;span class="caps"&gt;RSS&lt;/span&gt; feed is available (i.e. &lt;code&gt;http://vogue.sofamade.com/blogs/weblog.xml&lt;/code&gt;).&lt;/p&gt;


	&lt;p&gt;I&amp;#8217;ve switched this blog over to &lt;a href="http://feedburner.com"&gt;Feed Burner&lt;/a&gt;, so please update your feed reader to the &lt;a href="http://feeds.feedburner.com/vogue"&gt;new address&lt;/a&gt;...&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://feeds.feedburner.com/vogue"&gt;&lt;img src="http://static0.jadedpixel.com/s/files/1/0001/8021/assets/subscribe.png" title="All things Vogue, Shopify and Liquid..." alt="All things Vogue, Shopify and Liquid..." /&gt;&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;Grab the feed while it&amp;#8217;s hot! I&amp;#8217;ll be posting several tutorials very soon.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/vogue/~4/A_G-lgLSado" height="1" width="1"/&gt;</summary>
    <updated>2007-08-22 18:31:30 -0600</updated>
    <published>2007-08-22 18:31:30 -0600</published>
    <author>
      <name>Jared Burns</name>
    </author>
    <link href="http://feedproxy.google.com/~r/vogue/~3/A_G-lgLSado/91281-grab-the-feed" rel="alternate" />
  <feedburner:origLink>http://vogue.myshopify.com/blogs/weblog/91281-grab-the-feed</feedburner:origLink></entry>
  <entry>
    <id>tag:db1@shopify.com,2007:articles/91001</id>
    <title>Vogue Gets Easier!</title>
    <summary type="html">&lt;p&gt;As with any Shopify theme, you currently have to log into your account and apply it before being able to dive into the code. Well, I&amp;#8217;ve just added a &lt;a href="/pages/download"&gt;new section&lt;/a&gt; to this site where you can download &lt;strong&gt;Vogue&lt;/strong&gt; without applying it to your shop.&lt;/p&gt;


	&lt;p&gt;Now, the downloadable version has some noticeable differences from &lt;strong&gt;Vogue&lt;/strong&gt; in your admin. Why is this? Well, there are several customizations (custom image sizes, etc.) that prove to be a challenge with the version available directly from Shopify. After completing &lt;strong&gt;Vogue&lt;/strong&gt;, the Shopify guys made a few changes to the &lt;span class="caps"&gt;XHTML&lt;/span&gt;/CSS to improve &lt;strong&gt;Vogue&amp;#8217;s&lt;/strong&gt; performance on Shopify. While the changes are excellent, some of them limit &lt;strong&gt;Vogue&amp;#8217;s&lt;/strong&gt; flexibility.&lt;/p&gt;


	&lt;p&gt;So, I since blended the code and am excited to announce &lt;strong&gt;Vogue 1.1&lt;/strong&gt;. As previously mentioned, simply head to the &lt;a href="/pages/download"&gt;download&lt;/a&gt; page to get your hands on the latest version. Once you&amp;#8217;ve downloaded it, you can upload the &lt;span class="caps"&gt;ZIP&lt;/span&gt; file into your admin.&lt;/p&gt;


	&lt;p&gt;It&amp;#8217;s important to note that this latest release does &lt;strong&gt;NOT&lt;/strong&gt; include any customizations such as image logo, custom image sizes, color schemes, etc. You will need to make those changes &lt;span class="caps"&gt;AFTER&lt;/span&gt; you download the latest version, but they will be a breeze as all the tutorials on this site will guide you through the process.&lt;/p&gt;


	&lt;p&gt;As always, send an email to &lt;strong&gt;vogue [at] sofamade [dot] com&lt;/strong&gt; to inform us of any issues. &lt;strong&gt;Vogue&lt;/strong&gt; is provided free of charge, but also free of support. I try to answer as many questions as I can, but my time is limited. Refer to the &lt;a href="http://forums.shopify.com"&gt;Shopify Forums&lt;/a&gt; for general support. Thanks!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/vogue/~4/BaNiQJ9y0W8" height="1" width="1"/&gt;</summary>
    <updated>2007-08-22 12:49:42 -0600</updated>
    <published>2007-08-22 12:49:42 -0600</published>
    <author>
      <name>Jared Burns</name>
    </author>
    <link href="http://feedproxy.google.com/~r/vogue/~3/BaNiQJ9y0W8/91001-vogue-gets-easier" rel="alternate" />
  <feedburner:origLink>http://vogue.myshopify.com/blogs/weblog/91001-vogue-gets-easier</feedburner:origLink></entry>
  <entry>
    <id>tag:db1@shopify.com,2007:articles/84151</id>
    <title>Javascript Disabled?</title>
    <summary type="html">&lt;p&gt;One thing that&amp;#8217;s always kinda bugged me about the standard Shopify themes is the fact that they rely on a user having Javascript turned on. Well, at least the cart does.&lt;/p&gt;


	&lt;p&gt;While it&amp;#8217;s true that the majority of users have &lt;a href="http://www.w3schools.com/browsers/browsers_stats.asp"&gt;Javascript enabled&lt;/a&gt;, I believe it&amp;#8217;s designers/developers duty to make sure websites function properly if a user chooses to disable it. There are exceptions, but I strive to make the page work for everybody, then add the dynamic and interactive Javascript features later.&lt;/p&gt;


	&lt;p&gt;All that said, all the standard Shopify themes (including &lt;strong&gt;Vogue&lt;/strong&gt;) use Javascript to remove a product from the cart. It&amp;#8217;s bothered me, but I&amp;#8217;ve never spent the time to figure out how to remove an item without it. Fortunately, &lt;a href="http://shopify.com"&gt;Daniel of Shopify&lt;/a&gt; did!&lt;/p&gt;


	&lt;p&gt;While perusing through Daniel&amp;#8217;s &lt;strong&gt;Showroom theme&lt;/strong&gt;, I stumbled across his solution to remove a product from the cart with Javascript if it&amp;#8217;s enabled and a standard &lt;span class="caps"&gt;XHTML LINK&lt;/span&gt; tag if it&amp;#8217;s not. This is fantastic because we can easily apply this method to the &lt;strong&gt;Vogue&lt;/strong&gt; theme and make it 100% accessible! Let&amp;#8217;s do it&amp;#8230;&lt;/p&gt;


	&lt;p&gt;First, login to your admin, click &amp;#8220;Look &amp;#38; Feel&amp;#8221;, then click &lt;code&gt;cart.liquid&lt;/code&gt;. Once you&amp;#8217;ve opened the cart template, locate the following block of code towards the bottom&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;&amp;lt;a href="#" onclick="remove_item({{ item.variant.id }}); return false;"&amp;gt;Remove&amp;lt;/a&amp;gt;&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;And replace it with&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;&amp;lt;a href="/cart/change/{{ item.variant.id }}?quantity=0" 
onclick="remove_item({{item.variant.id}}); return false;"&amp;gt;&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;This little piece of code was the only thing holding &lt;strong&gt;Vogue&lt;/strong&gt; back from accessibility to everybody. There is now NO dependence on Javascript, but still takes advantage of it if enabled!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/vogue/~4/YHcsPmTuQwg" height="1" width="1"/&gt;</summary>
    <updated>2007-08-10 17:42:56 -0600</updated>
    <published>2007-08-10 17:42:56 -0600</published>
    <author>
      <name>Jared Burns</name>
    </author>
    <link href="http://feedproxy.google.com/~r/vogue/~3/YHcsPmTuQwg/84151-javascript-disabled" rel="alternate" />
  <feedburner:origLink>http://vogue.myshopify.com/blogs/weblog/84151-javascript-disabled</feedburner:origLink></entry>
  <entry>
    <id>tag:db1@shopify.com,2007:articles/75341</id>
    <title>Custom Image Sizes</title>
    <summary type="html">&lt;p&gt;The most common question I receive is, &amp;#8220;How do I make my product images the same size as the &lt;strong&gt;Vogue&lt;/strong&gt; demo site?&amp;#8221; Fortunately, your shop can look just like this with a little creativity.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;For these modifications to work correctly, you must be using Vogue &lt;a href="/pages/download"&gt;downloaded&lt;/a&gt; from this site. When using Vogue applied from your Shopify admin, you will experience issues with the product page.&lt;/strong&gt;&lt;/p&gt;


	&lt;p&gt;Before we get into the tutorial, it&amp;#8217;s important to understand how &lt;strong&gt;Shopify&lt;/strong&gt; handles product images. After an image is uploaded through the shop admin, Shopify stores it on a separate image server, which can then be accessed using &lt;a href="http://liquidmarkup.org"&gt;Liquid&lt;/a&gt; within the theme templates. A few default sizes are available using a &lt;a href="http://help.shopify.com/design/show/product_img_url"&gt;Liquid Filter&lt;/a&gt; for product images.&lt;/p&gt;


	&lt;p&gt;After some begging and pleading (not really), Tobi recently added &lt;strong&gt;original&lt;/strong&gt; as a variant of the &lt;a href="http://help.shopify.com/design/show/product_img_url"&gt;product_img_url&lt;/a&gt; filter. This variant is what makes &lt;em&gt;custom image sizes&lt;/em&gt; possible, but does require a slight work-around. So, let&amp;#8217;s do it already&amp;#8230;&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Product Images&lt;/strong&gt;&lt;br /&gt;We&amp;#8217;ll need to create an image to act as your &lt;em&gt;custom image&lt;/em&gt; that will display on &lt;code&gt;index.liquid&lt;/code&gt; and &lt;code&gt;collection.liquid&lt;/code&gt;. We&amp;#8217;ll also create a custom &lt;span class="caps"&gt;AND&lt;/span&gt; full size image to display on &lt;code&gt;product.liquid&lt;/code&gt;.&lt;/p&gt;


	&lt;p&gt;Using &lt;a href="http://www.adobe.com/products/photoshop"&gt;Photoshop&lt;/a&gt; or another photo editing tool, open your product image and&amp;#8230;&lt;/p&gt;


	&lt;ol&gt;
	&lt;li&gt;Resize/Crop to 175&amp;#215;130 pixels, then save as &lt;em&gt;title-feature.jpg&lt;/em&gt;.&lt;/li&gt;
		&lt;li&gt;Re-open original and resize/crop to 356&amp;#215;265 pixels, then save as &lt;em&gt;title-product.jpg&lt;/em&gt;&lt;/li&gt;
		&lt;li&gt;Re-open original and resize/crop to 480&amp;#215;360 pixels, then save as &lt;em&gt;title.jpg&lt;/em&gt;.&lt;/li&gt;
	&lt;/ol&gt;


	&lt;p&gt;After these images have been created, upload them to your product images. Make sure &lt;em&gt;title-feature.jpg&lt;/em&gt; is in the first position and &lt;em&gt;title-product.jpg&lt;/em&gt; is in the second position. Any product in the third position or greater should be sized like &lt;em&gt;title.jpg&lt;/em&gt; and the quantity is unlimited. Do this for all of your products.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Edit the Templates&lt;/strong&gt;&lt;br /&gt;Now that you have uploaded the appropriate product images, we need to edit a bit of code in the theme templates. First, open &lt;code&gt;index.liquid&lt;/code&gt; and locate&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;&amp;lt;img src="{{ product.images.first | product_img_url: 'small' }}" 
alt="{{ product.title }}" /&amp;gt;&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;and change to&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;&amp;lt;img src="{{ product.images.first | product_img_url: 'original' }}" 
alt="{{ product.title }}" /&amp;gt;&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Save, then open &lt;code&gt;collection.liquid&lt;/code&gt; and make the same changes as above. Next, open &lt;code&gt;product.liquid&lt;/code&gt; and locate&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;{% for image in product.images %}{% if forloop.first %}
&amp;lt;div id="product-image"&amp;gt;
    &amp;lt;a href="{{ image | product_img_url: 'original' }}" rel="lightbox[images]" 
    title="{{ product.title }}"&amp;gt;&amp;lt;img src="{{ image | product_img_url: 'medium' }}" 
    alt="{{ product.title }}" /&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;and replace with&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;{% for image in product.images offset: 1 %}{% if forloop.first %}
&amp;lt;div id="product-image"&amp;gt;
    &amp;lt;a href="{{ image | product_img_url: 'original' }}" rel="lightbox[images]" 
    title="{{ product.title }}"&amp;gt;&amp;lt;img src="{{ image | product_img_url: 'original' }}" 
    alt="{{ product.title }}" /&amp;gt;&amp;lt;/a&amp;gt;
&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;&lt;strong&gt;Complete&lt;/strong&gt;&lt;br /&gt;Go to your homepage and it should now look like this &lt;strong&gt;Vogue&lt;/strong&gt; demo site. All done!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/vogue/~4/dBjkX3JpC1g" height="1" width="1"/&gt;</summary>
    <updated>2007-07-29 21:56:44 -0600</updated>
    <published>2007-07-29 21:56:44 -0600</published>
    <author>
      <name>Jared Burns</name>
    </author>
    <link href="http://feedproxy.google.com/~r/vogue/~3/dBjkX3JpC1g/75341-custom-image-sizes" rel="alternate" />
  <feedburner:origLink>http://vogue.myshopify.com/blogs/weblog/75341-custom-image-sizes</feedburner:origLink></entry>
  <entry>
    <id>tag:db1@shopify.com,2007:articles/35281</id>
    <title>Upcoming Articles</title>
    <summary type="html">&lt;p&gt;Well, &lt;strong&gt;Vogue&lt;/strong&gt; has been out for almost 2 weeks and the response has been terrific. Thank you all for the emails of praise!&lt;/p&gt;


	&lt;p&gt;As with any theme, you probably want to customize it and make it your own, right? Well, I&amp;#8217;ve already shown you how to &lt;a href="/blogs/weblog/25151-adding-a-logo"&gt;add a logo&lt;/a&gt; and &lt;a href="/blogs/weblog/24750-switching-color-palettes"&gt;switch the color palette&lt;/a&gt; of &lt;strong&gt;Vogue&lt;/strong&gt;, but I&amp;#8217;m sure you want more. &lt;strong&gt;Vogue&lt;/strong&gt; is flexible and has the ability to be tweaked to your liking, so I&amp;#8217;ll be posting some more tutorials in the upcoming weeks and months. Here&amp;#8217;s some topics I&amp;#8217;ll be covering&amp;#8230;&lt;/p&gt;


	&lt;ul&gt;
	&lt;li&gt;Adding a &lt;span class="caps"&gt;RSS 2&lt;/span&gt;.0 feed for products &amp;#38; integrating &lt;a href="http://feedburner.com"&gt;FeedBurner&lt;/a&gt;&lt;/li&gt;
		&lt;li&gt;Adjust product image sizes without using &lt;span class="caps"&gt;XHTML&lt;/span&gt;/CSS&lt;/li&gt;
		&lt;li&gt;Understanding how to loop through product images&lt;/li&gt;
		&lt;li&gt;Highlight the &amp;#8220;current&amp;#8221; navigation tab (like this demo)&lt;/li&gt;
		&lt;li&gt;Removing indent of the sidebar lists&lt;/li&gt;
		&lt;li&gt;Adding a secondary navigation linklist to the sidebar&lt;/li&gt;
		&lt;li&gt;Adding &amp;#8220;Related Products&amp;#8221; to the products page&lt;/li&gt;
		&lt;li&gt;Including &amp;#8220;Tags&amp;#8221; on the products page&lt;/li&gt;
		&lt;li&gt;Create a &amp;#8220;Best Sellers&amp;#8221; collection and display in sidebar&lt;/li&gt;
		&lt;li&gt;Adding a &lt;a href="http://www.formspring.com"&gt;Formspring&lt;/a&gt; contact form to your site&lt;/li&gt;
		&lt;li&gt;Integrating &lt;a href="http://mojohelpdesk.com"&gt;Mojo Helpdesk&lt;/a&gt; to handle support requests&lt;/li&gt;
	&lt;/ul&gt;


	&lt;p&gt;If there are other topics you&amp;#8217;d like to see covered, please drop us an email to &lt;strong&gt;vogue [at] sofamade [dot] com&lt;/strong&gt;. We are also about to launch a product that the Shopify community will be sure to love. Stay tuned for more details.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/vogue/~4/Dqq1snB2adY" height="1" width="1"/&gt;</summary>
    <updated>2007-06-15 13:36:57 -0600</updated>
    <published>2007-06-15 13:36:57 -0600</published>
    <author>
      <name>Jared Burns</name>
    </author>
    <link href="http://feedproxy.google.com/~r/vogue/~3/Dqq1snB2adY/35281-upcoming-articles" rel="alternate" />
  <feedburner:origLink>http://vogue.myshopify.com/blogs/weblog/35281-upcoming-articles</feedburner:origLink></entry>
  <entry>
    <id>tag:db1@shopify.com,2007:articles/25151</id>
    <title>Adding a Logo</title>
    <summary type="html">&lt;p&gt;So, you want to give &lt;strong&gt;Vogue&lt;/strong&gt; a personal look by adding your logo. Well, that&amp;#8217;s not a difficult thing to do with a couple minor modifications. Let&amp;#8217;s get started&amp;#8230;&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Step I &amp;#8211; Create the Logo&lt;/strong&gt;&lt;br /&gt;Before we begin hacking away in the code, let&amp;#8217;s make sure your logo is the proper dimensions and will properly align in the header. Right-click one of the following images that matches the color scheme you&amp;#8217;re using, then save it to your desktop.&lt;/p&gt;


	&lt;p&gt;&lt;img src="http://static2.jadedpixel.com/s/files/1/0001/8021/assets/logo.png" title="Vogue Logo" alt="Vogue Logo" /&gt; &lt;img src="http://static2.jadedpixel.com/s/files/1/0001/8021/assets/logo-flat.png" title="Vogue Logo" alt="Vogue Logo" /&gt;&lt;/p&gt;


	&lt;p&gt;&lt;img src="http://static2.jadedpixel.com/s/files/1/0001/8021/assets/logo-caramel.png" title="Vogue Logo" alt="Vogue Logo" /&gt; &lt;img src="http://static2.jadedpixel.com/s/files/1/0001/8021/assets/logo-caramel-flat.png" title="Vogue Logo" alt="Vogue Logo" /&gt;&lt;/p&gt;


	&lt;p&gt;&lt;img src="http://static2.jadedpixel.com/s/files/1/0001/8021/assets/logo-sea.png" title="Vogue Logo" alt="Vogue Logo" /&gt; &lt;img src="http://static2.jadedpixel.com/s/files/1/0001/8021/assets/logo-sea-flat.png" title="Vogue Logo" alt="Vogue Logo" /&gt;&lt;/p&gt;


	&lt;p&gt;Once, you&amp;#8217;ve downloaded the background image, open it with Photoshop or another image editing application. Add your logo over the background and save it in .png format, then upload it to your assets. Your logo should not be any larger than 240&amp;#215;65 pixels to avoid distortion to the header. Now, you&amp;#8217;ll need to modify a bit of code.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Step &lt;span class="caps"&gt;II &lt;/span&gt;- Insert the Image&lt;/strong&gt;&lt;br /&gt;In your shop admin, click the &amp;#8220;Look &amp;#38; Feel&amp;#8221; tab from the main navigation. Then choose &lt;code&gt;theme.liquid&lt;/code&gt; from the list of templates in the right column. Locate the following section of code&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;&amp;lt;h1&amp;gt;&amp;lt;a href="/" title="{{ shop.name }}"&amp;gt;{{ shop.name }}&amp;lt;/a&amp;gt;&amp;lt;/h1&amp;gt;&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;and replace it with&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;&amp;lt;a href="/" title="{{ shop.name }}"&amp;gt;
    {{ 'logo.png' | asset_url | img_tag: 'Shop Name' }}
&amp;lt;/a&amp;gt;&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Press the &amp;#8220;Save Changes&amp;#8221; button to apply the modifications you&amp;#8217;ve made to &lt;code&gt;theme.liquid&lt;/code&gt;. We&amp;#8217;re almost finished, but there&amp;#8217;s one last piece of code that needs updating.&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;Step &lt;span class="caps"&gt;III &lt;/span&gt;- Modify the Stylesheet&lt;/strong&gt;&lt;br /&gt;From the &amp;#8220;Look &amp;#38; Feel&amp;#8221; tab, choose &lt;code&gt;stylesheet.css&lt;/code&gt;, &lt;code&gt;caramel.css&lt;/code&gt;, or &lt;code&gt;sea.css&lt;/code&gt; depending on which color scheme you&amp;#8217;re using. Locate the following section of code&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;#logo {
    line-height: 28px;
    width: 240px;
    padding-top: 24px;
    float: left;
}&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;and replace it with&amp;#8230;&lt;/p&gt;


&lt;pre&gt;&lt;code&gt;#logo {
    line-height: 28px;
    width: 240px;
    float: left;
}&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;Press the &amp;#8220;Save Changes&amp;#8221; button to apply the modifications you&amp;#8217;ve made to the stylesheet. There you have it, a beautiful image logo in the header!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/vogue/~4/ln7bODy7PYc" height="1" width="1"/&gt;</summary>
    <updated>2007-04-10 15:36:04 -0600</updated>
    <published>2007-04-10 15:36:04 -0600</published>
    <author>
      <name>Jared Burns</name>
    </author>
    <link href="http://feedproxy.google.com/~r/vogue/~3/ln7bODy7PYc/25151-adding-a-logo" rel="alternate" />
  <feedburner:origLink>http://vogue.myshopify.com/blogs/weblog/25151-adding-a-logo</feedburner:origLink></entry>
  <entry>
    <id>tag:db1@shopify.com,2007:articles/24750</id>
    <title>Switching Color Palettes</title>
    <summary type="html">&lt;p&gt;You may not know this, but &lt;strong&gt;Vogue&lt;/strong&gt; has been packaged with three unique color schemes. Obviously, the red version you&amp;#8217;re currently viewing, but there&amp;#8217;s two more beauties that are waiting to be unleashed! Switching to either of the additional color schemes is quite easy to do.&lt;/p&gt;


	&lt;p&gt;&lt;img src="http://vogue.sofamade.com/files/1/0001/8021/files/colors.png" title="Vogue Color Schemes" alt="Vogue Color Schemes" /&gt;&lt;/p&gt;


	&lt;p&gt;If you&amp;#8217;re a lover of &lt;em&gt;chocolate, caramel, and red wine&lt;/em&gt;, maybe the color scheme &lt;strong&gt;Caramel&lt;/strong&gt; is for you. Let&amp;#8217;s go over the steps to load &lt;strong&gt;Caramel&lt;/strong&gt; into Vogue.&lt;/p&gt;


	&lt;ol&gt;
	&lt;li&gt;Sign-in to your admin then press the &amp;#8220;Look &amp;#38; Feel&amp;#8221; tab.&lt;/li&gt;
		&lt;li&gt;Choose the &lt;code&gt;theme.liquid&lt;/code&gt; file in the sidebar.&lt;/li&gt;
		&lt;li&gt;Locate &lt;code&gt;{{ 'stylesheet.css' | asset_url | stylesheet_tag }}&lt;/code&gt; near the top.&lt;/li&gt;
		&lt;li&gt;Change to &lt;code&gt;{{ 'caramel.css' | asset_url | stylesheet_tag }}&lt;/code&gt;.&lt;/li&gt;
		&lt;li&gt;Locate &lt;code&gt;{{ 'seek.png' | asset_url }}&lt;/code&gt; further down the page.&lt;/li&gt;
		&lt;li&gt;Change to &lt;code&gt;{{ 'seek-caramel.png' | asset_url }}&lt;/code&gt;.&lt;/li&gt;
		&lt;li&gt;Press the &amp;#8220;Save Changes&amp;#8221; button at the bottom of the page.&lt;/li&gt;
		&lt;li&gt;Choose the &lt;code&gt;product.liquid&lt;/code&gt; file in the sidebar.&lt;/li&gt;
		&lt;li&gt;Locate &lt;code&gt;{{ 'purchase.png' | asset_url }}&lt;/code&gt; near the bottom.&lt;/li&gt;
		&lt;li&gt;Change to &lt;code&gt;{{ 'purchase-caramel.png' | asset_url }}&lt;/code&gt;.&lt;/li&gt;
		&lt;li&gt;Locate &lt;code&gt;{{ 'checkout.png' | asset_url | img_tag: 'Checkout' }}&lt;/code&gt; below.&lt;/li&gt;
		&lt;li&gt;Change to &lt;code&gt;{{ 'checkout-caramel.png' | asset_url | img_tag: 'Checkout' }}&lt;/code&gt;.&lt;/li&gt;
		&lt;li&gt;Press the &amp;#8220;Save Changes&amp;#8221; button at the bottom of the page.&lt;/li&gt;
		&lt;li&gt;Choose the &lt;code&gt;cart.liquid&lt;/code&gt; file in the sidebar.&lt;/li&gt;
		&lt;li&gt;Locate &lt;code&gt;{{ 'update.png' | asset_url }}&lt;/code&gt; near the bottom.&lt;/li&gt;
		&lt;li&gt;Change to &lt;code&gt;{{ 'update-caramel.png' | asset_url }}&lt;/code&gt;.&lt;/li&gt;
		&lt;li&gt;Locate &lt;code&gt;{{ 'checkout.png' | asset_url }}&lt;/code&gt; below.&lt;/li&gt;
		&lt;li&gt;Change to &lt;code&gt;{{ 'checkout-caramel.png' | asset_url }}&lt;/code&gt;&lt;/li&gt;
		&lt;li&gt;Press the &amp;#8220;Save Changes&amp;#8221; button at the bottom of the page.&lt;/li&gt;
	&lt;/ol&gt;


	&lt;p&gt;You&amp;#8217;ll notice you simply changed the primary stylesheet and a few images. Now, go to your shop domain and check it out. Perhaps &lt;strong&gt;Caramel&lt;/strong&gt; is not your thing, but &lt;strong&gt;Deep Sea&lt;/strong&gt; is. Again, you&amp;#8217;ll switch the stylesheet and a few images to load the new look into &lt;strong&gt;Vogue&lt;/strong&gt;.&lt;/p&gt;


	&lt;ol&gt;
	&lt;li&gt;Sign-in to your admin then press the &amp;#8220;Look &amp;#38; Feel&amp;#8221; tab.&lt;/li&gt;
		&lt;li&gt;Choose the &lt;code&gt;theme.liquid&lt;/code&gt; file in the sidebar.&lt;/li&gt;
		&lt;li&gt;Locate &lt;code&gt;{{ 'stylesheet.css' | asset_url | stylesheet_tag }}&lt;/code&gt; near the top.&lt;/li&gt;
		&lt;li&gt;Change to &lt;code&gt;{{ 'sea.css' | asset_url | stylesheet_tag }}&lt;/code&gt;.&lt;/li&gt;
		&lt;li&gt;Locate &lt;code&gt;{{ 'seek.png' | asset_url }}&lt;/code&gt; further down the page.&lt;/li&gt;
		&lt;li&gt;Change to &lt;code&gt;{{ 'seek-sea.png' | asset_url }}&lt;/code&gt;.&lt;/li&gt;
		&lt;li&gt;Locate &lt;code&gt;{{ 'feed.png' | asset_url }}&lt;/code&gt; below.&lt;/li&gt;
		&lt;li&gt;Change to &lt;code&gt;{{ 'feed-sea.png' | asset_url }}&lt;/code&gt;.&lt;/li&gt;
		&lt;li&gt;Press the &amp;#8220;Save Changes&amp;#8221; button at the bottom of the page.&lt;/li&gt;
		&lt;li&gt;Choose the &lt;code&gt;product.liquid&lt;/code&gt; file in the sidebar.&lt;/li&gt;
		&lt;li&gt;Locate &lt;code&gt;{{ 'purchase.png' | asset_url }}&lt;/code&gt; near the bottom.&lt;/li&gt;
		&lt;li&gt;Change to &lt;code&gt;{{ 'purchase-sea.png' | asset_url }}&lt;/code&gt;.&lt;/li&gt;
		&lt;li&gt;Locate &lt;code&gt;{{ 'checkout.png' | asset_url | img_tag: 'Checkout' }}&lt;/code&gt; below.&lt;/li&gt;
		&lt;li&gt;Change to &lt;code&gt;{{ 'checkout-sea.png' | asset_url | img_tag: 'Checkout' }}&lt;/code&gt;.&lt;/li&gt;
		&lt;li&gt;Press the &amp;#8220;Save Changes&amp;#8221; button at the bottom of the page.&lt;/li&gt;
		&lt;li&gt;Choose the &lt;code&gt;cart.liquid&lt;/code&gt; file in the sidebar.&lt;/li&gt;
		&lt;li&gt;Locate &lt;code&gt;{{ 'update.png' | asset_url }}&lt;/code&gt; near the bottom.&lt;/li&gt;
		&lt;li&gt;Change to &lt;code&gt;{{ 'update-sea.png' | asset_url }}&lt;/code&gt;.&lt;/li&gt;
		&lt;li&gt;Locate &lt;code&gt;{{ 'checkout.png' | asset_url }}&lt;/code&gt; below.&lt;/li&gt;
		&lt;li&gt;Change to &lt;code&gt;{{ 'checkout-sea.png' | asset_url }}&lt;/code&gt;&lt;/li&gt;
		&lt;li&gt;Press the &amp;#8220;Save Changes&amp;#8221; button at the bottom of the page.&lt;/li&gt;
		&lt;li&gt;Choose the &lt;code&gt;blog.liquid&lt;/code&gt; file in the sidebar.&lt;/li&gt;
		&lt;li&gt;Locate &lt;code&gt;{{ 'feed.png' | asset_url }}&lt;/code&gt; half way down.&lt;/li&gt;
		&lt;li&gt;Change to &lt;code&gt;{{ 'feed-sea.png' | asset_url }}&lt;/code&gt;.&lt;/li&gt;
		&lt;li&gt;Press the &amp;#8220;Save Changes&amp;#8221; button at the bottom of the page.&lt;/li&gt;
		&lt;li&gt;Choose the &lt;code&gt;index.liquid&lt;/code&gt; file in the sidebar.&lt;/li&gt;
		&lt;li&gt;Locate &lt;code&gt;{{ 'feed.png' | asset_url }}&lt;/code&gt; half way down.&lt;/li&gt;
		&lt;li&gt;Change to &lt;code&gt;{{ 'feed-sea.png' | asset_url }}&lt;/code&gt;.&lt;/li&gt;
		&lt;li&gt;Press the &amp;#8220;Save Changes&amp;#8221; button at the bottom of the page.&lt;/li&gt;
		&lt;li&gt;Choose the &lt;code&gt;page.liquid&lt;/code&gt; file in the sidebar.&lt;/li&gt;
		&lt;li&gt;Locate &lt;code&gt;{{ 'feed.png' | asset_url }}&lt;/code&gt; half way down.&lt;/li&gt;
		&lt;li&gt;Change to &lt;code&gt;{{ 'feed-sea.png' | asset_url }}&lt;/code&gt;.&lt;/li&gt;
		&lt;li&gt;Press the &amp;#8220;Save Changes&amp;#8221; button at the bottom of the page.&lt;/li&gt;
	&lt;/ol&gt;


	&lt;p&gt;Just like in the previous color switch, you simply replaced the stylesheet and a few images. Go to your store and refresh the browser window to check out &lt;strong&gt;Deep Sea&lt;/strong&gt;. That&amp;#8217;s all there is to switching the look within a few minutes. There&amp;#8217;s one additional change that can be made as well.&lt;/p&gt;


	&lt;p&gt;If you would prefer a solid header as opposed to the diagonal stripes, images have been provided with your theme to make this quite easy. Depending on what color scheme your using, choose the primary stylesheet (stylesheet.css, caramel.css, or sea.css) from the sidebar. Locate the group titled &amp;#8221;@group Header&amp;#8221; and add &amp;#8221;-flat&amp;#8221; to the filename. It will look like this:&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;stylesheet.css:&lt;/strong&gt;&lt;br /&gt;&lt;code&gt;background: #9b0103 url(header-flat.png) repeat-x center top;&lt;/code&gt;&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;caramel.css:&lt;/strong&gt;&lt;br /&gt;&lt;code&gt;background: #984201 url(header-caramel-flat.png) repeat-x center top;&lt;/code&gt;&lt;/p&gt;


	&lt;p&gt;&lt;strong&gt;sea.css:&lt;/strong&gt;&lt;br /&gt;&lt;code&gt;background: #42849b url(header-sea-flat.png) repeat-x center top;&lt;/code&gt;&lt;/p&gt;


	&lt;p&gt;And there you have it. Another easy customization to your shop! Perhaps I&amp;#8217;ll add some other color schemes in the future&amp;#8230;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/vogue/~4/k3xxInApnmI" height="1" width="1"/&gt;</summary>
    <updated>2007-04-04 19:18:39 -0600</updated>
    <published>2007-04-04 19:18:39 -0600</published>
    <author>
      <name>Jared Burns</name>
    </author>
    <link href="http://feedproxy.google.com/~r/vogue/~3/k3xxInApnmI/24750-switching-color-palettes" rel="alternate" />
  <feedburner:origLink>http://vogue.myshopify.com/blogs/weblog/24750-switching-color-palettes</feedburner:origLink></entry>
  <entry>
    <id>tag:db1@shopify.com,2007:articles/24580</id>
    <title>Vogue 1.0 for Shopify</title>
    <summary type="html">&lt;p&gt;So here it is, a brand spanking new theme for Shopify! &lt;strong&gt;Vogue&lt;/strong&gt;. With its engaging color palettes, well displayed product images, and ease-of-use navigation, Vogue is sure to offer the professionalism your shop is screaming for.&lt;/p&gt;


	&lt;p&gt;If you haven&amp;#8217;t already done so, you might check out the &lt;a href="/pages/about"&gt;about page&lt;/a&gt; to learn more about this theme, what else is in store, and who made it. If you choose to use Vogue as your shops interface, I&amp;#8217;d love to hear about it. Send an email with your web address to &lt;strong&gt;vogue [at] sofamade [dot] com&lt;/strong&gt; and I will add you to the list of sites wearing Vogue, which will be displayed on this site.&lt;/p&gt;


	&lt;p&gt;I&amp;#8217;ve had &lt;span class="caps"&gt;YOU&lt;/span&gt; in mind as I designed this theme, please enjoy!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/vogue/~4/IVWdB7MO24o" height="1" width="1"/&gt;</summary>
    <updated>2007-04-02 21:34:33 -0600</updated>
    <published>2007-04-02 21:34:33 -0600</published>
    <author>
      <name>Jared Burns</name>
    </author>
    <link href="http://feedproxy.google.com/~r/vogue/~3/IVWdB7MO24o/24580-vogue-1-0-for-shopify" rel="alternate" />
  <feedburner:origLink>http://vogue.myshopify.com/blogs/weblog/24580-vogue-1-0-for-shopify</feedburner:origLink></entry>
</feed>
