<?xml version="1.0" encoding="utf-8"?>
<!-- If you are running a bot please visit this policy page outlining rules you must respect. http://www.livejournal.com/bots/ -->
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:lj="http://www.livejournal.com">
  <id>urn:lj:livejournal.com:atom1:s2howto</id>
  <title>The S2 HowTo Journal</title>
  <subtitle>Tips, Tricks, and Tutorials for Basic S2 Customization</subtitle>
  <author>
    <name>The S2 HowTo Journal</name>
  </author>
  <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/"/>
  <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom"/>
  <updated>2008-07-10T04:05:14Z</updated>
  <lj:journal username="s2howto" type="community"/>
  <link rel="service.feed" type="application/x.atom+xml" href="http://community.livejournal.com/s2howto/data/atom" title="The S2 HowTo Journal"/>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:52738</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/52738.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=52738"/>
    <title>[paidaccount] Displaying comment count in words instead of numerals</title>
    <published>2008-07-10T04:03:30Z</published>
    <updated>2008-07-10T04:05:14Z</updated>
    <category term="comment links"/>
    <category term="paid accounts only"/>
    <content type="html">&lt;div style="background-color: #ff0000; color: #ffffff;"&gt;&lt;center style="font-weight: bold;"&gt;Paid Accounts Only&lt;/center&gt;
The following tutorial requires creating and editing a custom style, which in turn requires a paid, permanent, or early adopter account.  Please read &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=131"&gt;What are the paid account benefits?&lt;/a&gt; and &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=21"&gt;How do I buy a paid account?&lt;/a&gt; to learn about the paid account benefits and how to buy a paid account.&lt;/div&gt;

&lt;p&gt;This function will change the display of your comment count from numerals to number (e.g. "12 comments" becomes "Twelve comments"). This will work up to a comment count of 99, after which the count will be displayed in numerals. &lt;/p&gt;

&lt;p&gt;You will need to copy the following code into your theme layer, making sure to include everything:&lt;/p&gt;

&lt;pre style="background-color:wheat"&gt;function CommentInfo::print_readlink {  
      var Page p = get_page();  
    
    var string[] ones = ["Zero","One","Two","Three","Four","Five","Six","Seven","Eight","Nine"];   
    var string[] teen = ["Ten","Eleven","Twelve","Thirteen","Fourteen","Fifteen","Sixteen","Seventeen","Eighteen","Nineteen"];   
    var string[] tenths = ["","","Twenty","Thirty","Forty","Fifty","Sixty","Seventy","Eighty","Ninety"];   
    var string text;   
    var int rest;  
    var int elevens; 
        
    if($.count&amp;gt;99)    
    {   
     $text = "" + $.count;  
    }   
    else   
    {   
     $rest = $.count / 10;   
     $elevens = $.count % 10;   
     if($rest&amp;gt;0)   
     {   
      if($rest==1)   
      {    
       $text = $teen[$elevens];   
      }   
      else   
      {   
       $text = $tenths[$rest] + ($elevens&amp;gt;0 ? "-" + $ones[$elevens] : "");   
      }    
     }   
     else    
     {   
      $text = $ones[$elevens];   
     }     
    }   

    if($.count==1) { $text = $text + " &lt;span style="background-color:orange"&gt;singular comment text&lt;/span&gt;"; }
 else { $text = $text + " &lt;span style="background-color:orange"&gt;plural comment text&lt;/span&gt;"; }
    print safe "&amp;lt;a href=\"$.read_url\"&amp;gt;"+ $text+"&amp;lt;/a&amp;gt;";  
    } &lt;/pre&gt;

&lt;p&gt;Compile your layer, and it's ready to use. You will need to apply your theme layer via the &lt;a href="http://www.livejournal.com/customize/"&gt;Customize&lt;/a&gt; interface in order for your changes to take effect.&lt;/p&gt;

&lt;div style="background-color: darkgray; color: #000000;"&gt;&lt;center style="font-weight: bold;"&gt;Additional References&lt;/center&gt;
&lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=176"&gt;What are the different S2 layer types?&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.livejournal.com/community/s2howto/530.html"&gt;S2 View Types&lt;/a&gt;&lt;/div&gt;

&lt;p&gt;Originally written by &lt;span class='ljuser' lj:user='nigi_atp' style='white-space: nowrap;'&gt;&lt;a href='http://nigi-atp.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://nigi-atp.livejournal.com/'&gt;&lt;b&gt;nigi_atp&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; and &lt;span class='ljuser' lj:user='prissi' style='white-space: nowrap;'&gt;&lt;a href='http://prissi.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://prissi.livejournal.com/'&gt;&lt;b&gt;prissi&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; with elements borrowed from a previous tutorial by &lt;span class='ljuser' lj:user='gamble' style='white-space: nowrap;'&gt;&lt;a href='http://gamble.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://gamble.livejournal.com/'&gt;&lt;b&gt;gamble&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:52719</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/52719.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=52719"/>
    <title>[paidaccount][magazine, punquin, tabular indent] Reversing the order of the entries</title>
    <published>2008-02-05T03:36:23Z</published>
    <updated>2008-02-05T04:39:59Z</updated>
    <category term="- punquin"/>
    <category term="entry order"/>
    <category term="chronological order"/>
    <category term="- tabular indent"/>
    <category term="order of entries"/>
    <category term="paid accounts only"/>
    <category term="- magazine"/>
    <category term="reversing entry order"/>
    <content type="html">&lt;div style="background-color: #ff0000; color: #ffffff;"&gt;&lt;center style="font-weight: bold;"&gt;Paid Accounts Only&lt;/center&gt;
The following tutorial requires creating and editing a custom style, which in turn requires a paid, permanent, or early adopter account.  Please read &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=131"&gt;What are the paid account benefits?&lt;/a&gt; and &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=21"&gt;How do I buy a paid account?&lt;/a&gt; to learn about the paid account benefits and how to buy a paid account.&lt;/div&gt;

&lt;p&gt;This tutorial describes a simple method for reversing the order of entries on your Recent Entries page, changing them from reverse-chronological to chronological, under Magazine, Punquin Elegant, or Tabular Indent. This will only reverse the order of entries on each page &amp;mdash; navigation will still work in reverse-chronological order. Additionally, this tutorial explains how to reverse the entries on your Friends page, changing them to the order in which they were posted to LiveJournal servers, in the same layouts. Similarly, the navigation will still work in the reverse order.&lt;/p&gt;

&lt;p&gt;This tutorial will replace the function RecentPage::print_body and/or FriendsPage::print_body. This new code will be placed in a theme layer. If you already have a theme layer for this layout, you can simply edit it. Otherwise, you need to create one as explained in the &lt;a href="http://www.livejournal.com/community/s2howto/25272.html"&gt;Theme Layer&lt;/a&gt; tutorial.&lt;/p&gt;

&lt;p&gt;You will need to copy the following code into your theme layer, making sure to include everything:&lt;/p&gt;

&lt;pre style="background-color:wheat"&gt;function RecentPage::print_body() {
    foreach var Entry e (&lt;span style="background-color:orange"&gt;reverse&lt;/span&gt; $.entries) {
&lt;div style="background-color:orange"&gt;        if ($e.end_day) {
            $e.end_day = false;
            $e.new_day = true;
        } elseif ($e.new_day) {
            $e.new_day = false;
            $e.end_day = true;
        }&lt;/div&gt;
        $this-&amp;gt;print_entry($e);
    }
}&lt;/pre&gt;

&lt;p&gt;The code in orange changes the order of the entries.&lt;/p&gt; 

&lt;p&gt;The above code will change the order of the entries on your Recent Entries page &lt;b&gt;only&lt;/b&gt;. If you wish to have this effect on your Friends page (alone or together with your Recent Entries page), you will need to copy and paste the following code:&lt;/p&gt;

&lt;pre style="background-color:wheat"&gt;function FriendsPage::print_body() {
    foreach var Entry e (&lt;span style="background-color:orange"&gt;reverse&lt;/span&gt; $.entries) {
&lt;div style="background-color:orange"&gt;        if ($e.end_day) {
            $e.end_day = false;
            $e.new_day = true;
        } elseif ($e.new_day) {
            $e.new_day = false;
            $e.end_day = true;
        }&lt;/div&gt;
        $this-&amp;gt;print_entry($e);
    }
}&lt;/pre&gt;

&lt;p&gt;Compile your layer, and it's ready to use. You will need to apply your theme layer via the &lt;a href="http://www.livejournal.com/customize/"&gt;Customize&lt;/a&gt; interface in order for your changes to take effect.&lt;/p&gt;

&lt;div style="background-color: darkgray; color: #000000;"&gt;&lt;center style="font-weight: bold;"&gt;Additional References&lt;/center&gt;
&lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=176"&gt;What are the different S2 layer types?&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.livejournal.com/community/s2howto/530.html"&gt;S2 View Types&lt;/a&gt;&lt;/div&gt;

&lt;p&gt;Originally written by &lt;span class='ljuser' lj:user='skywhisperer' style='white-space: nowrap;'&gt;&lt;a href='http://skywhisperer.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://skywhisperer.livejournal.com/'&gt;&lt;b&gt;skywhisperer&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; with elements borrowed from a previous tutorial by &lt;span class='ljuser' lj:user='gamble' style='white-space: nowrap;'&gt;&lt;a href='http://gamble.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://gamble.livejournal.com/'&gt;&lt;b&gt;gamble&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;. Re-written by &lt;span class='ljuser' lj:user='camomiletea' style='white-space: nowrap;'&gt;&lt;a href='http://camomiletea.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://camomiletea.livejournal.com/'&gt;&lt;b&gt;camomiletea&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;. Simplified and reworded in spots by &lt;span class='ljuser' lj:user='pauamma' style='white-space: nowrap;'&gt;&lt;a href='http://pauamma.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://pauamma.livejournal.com/'&gt;&lt;b&gt;pauamma&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;.&lt;/p&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:52241</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/52241.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=52241"/>
    <title>[all accounts][expressive/mixit] Changing the Header Image</title>
    <published>2008-01-17T05:24:34Z</published>
    <updated>2008-02-06T02:19:15Z</updated>
    <category term="- mixit"/>
    <category term="header image"/>
    <category term="- expressive"/>
    <category term="free accounts"/>
    <category term="all accounts"/>
    <content type="html">Most of the themes in the Expressive/Expressive Winter/Mixit family already feature header images.  This tutorial explains how users can replace these header images with his or her own using the Custom Stylesheet option.  Before beginning this customization, note that your image should be in a valid format (.jpg, .gif, .png, etc.) and hosted by a website that allows &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=130"&gt;remote loading&lt;/a&gt;.  For best results, your image should be 940 pixels wide, but the image height is not restricted.&lt;br /&gt;&lt;br /&gt;The Custom Stylesheet option can be found in the &lt;a href="http://www.livejournal.com/customize/options.bml"&gt;Customize Journal Style&lt;/a&gt; area by clicking on the "Custom CSS" link in the left sidebar.  You will need to add the following code to the "Custom Stylesheet" field:&lt;br /&gt;&lt;br /&gt;&lt;pre style="background-color: wheat"&gt;#header-inner { 
    background-image: url("&lt;span style="background-color:orange"&gt;http://www.example.com/image.jpg&lt;/span&gt;");
	height: &lt;span style="background-color:yellow"&gt;200&lt;/span&gt;px;
}


&lt;span style="background-color:lavender"&gt;#header {
    background-image: none;
}&lt;/span&gt;
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;You will need to replace the URL address in &lt;span style="background-color:orange"&gt;orange&lt;/span&gt; with the actual URL of your image. You will also need to replace the number &lt;span style="background-color:yellow"&gt;200&lt;/span&gt; with the height of your image in pixels, plus any additional space you might want.  The code in &lt;span style="background-color:lavender"&gt;blue&lt;/span&gt; is required for some themes to suppress the original header image.&lt;br /&gt;&lt;br /&gt;Depending on the "base" theme of your journal, you may need to add additional codes to prevent additional images from displaying.  If you are using a style based on one of these themes, add the lines appropriate to your theme.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Bunnylicious, Weston, Cherry Blossom, Clouds&lt;/strong&gt;&lt;br /&gt;&lt;pre style="background-color: wheat"&gt;#header-content { 
     background-image: none; 
}&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Fleur&lt;/strong&gt;&lt;br /&gt;&lt;pre style="background-color: wheat"&gt;#header-content-inner { 
     background-image: none; 
}&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Bloom, Playful Robots, Poe&lt;/strong&gt;&lt;br /&gt;&lt;pre style="background-color: wheat"&gt;.layout-&lt;span style="background-color: orange"&gt;tw&lt;/span&gt; #header { 
     background-image: none; 
}&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;For these themes, replace the &lt;span style="background-color: orange"&gt;orange&lt;/span&gt; text according to your column layout:&lt;br /&gt;Two-column, sidebar on left: &lt;code&gt;tw&lt;/code&gt;&lt;br /&gt;Two-column, sidebar on right: &lt;code&gt;wt&lt;/code&gt;&lt;br /&gt;Three-column, content in middle: &lt;code&gt;twt&lt;/code&gt;&lt;br /&gt;Three-column, sidebars on right: &lt;code&gt;wtt&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Click the "Save Changes" button at the bottom of the page to apply the customizations to your journal.&lt;br /&gt;&lt;br /&gt;&lt;div style="background-color: darkgray; color: #000000;"&gt;&lt;center style="font-weight: bold;"&gt;Additional References&lt;/center&gt;&lt;br /&gt;&lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=130"&gt;Why are my images not displaying? What is remote loading?&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Contributed by &lt;span class='ljuser' lj:user='av8rmike' style='white-space: nowrap;'&gt;&lt;a href='http://av8rmike.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://av8rmike.livejournal.com/'&gt;&lt;b&gt;av8rmike&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:52189</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/52189.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=52189"/>
    <title>[paidaccount] Using print_custom_head()</title>
    <published>2007-12-15T01:14:51Z</published>
    <updated>2007-12-15T01:15:48Z</updated>
    <category term="* basic tutorials"/>
    <category term="paid accounts only"/>
    <content type="html">&lt;div style="background-color: #ff0000; color: #ffffff;"&gt;&lt;center style="font-weight: bold;"&gt;Paid Accounts Only&lt;/center&gt;The following tutorial requires creating and editing a custom style, which in turn requires a paid, permanent, or early adopter account.  Please read &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=131"&gt;What are the paid account benefits?&lt;/a&gt; and &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=21"&gt;How do I buy a paid account?&lt;/a&gt; to learn about the paid account benefits and how to buy a paid account.&lt;/div&gt;

&lt;p&gt;Cascading Style Sheets (CSS) allow you to change a lot of things in your journal. All of the system layouts support the ability to enter your &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=171"&gt;custom CSS&lt;/a&gt;. However, if you are using a custom layout that doesn't have such an option, or if you would like to use different CSS on different page views, you can use print_custom_head() method in a custom &lt;a href="http://www.livejournal.com/community/s2howto/25272.html"&gt;theme layer&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The print_custom_head() method allows you to enter custom content into the &amp;lt;head&amp;gt; section of your journal, which can also be used to change &lt;a href="http://community.livejournal.com/s2howto/4398.html"&gt;the browser title&lt;/a&gt; or &lt;a href="http://community.livejournal.com/s2howto/31355.html"&gt;favicon&lt;/a&gt; for your journal, or add &amp;lt;meta&amp;gt; tags. Furthermore, you can choose to have different &amp;lt;head&amp;gt; content depending on the view of your journal (recent entries, friends page, calendar, etc.).&lt;/p&gt;

&lt;p&gt;Note that the only HTML elements that can be used in print_custom_head() are those elements that are valid in the head of a HTML document. This is limited to &amp;lt;title&amp;gt;, &amp;lt;base&amp;gt;, &amp;lt;style&amp;gt;, &amp;lt;link&amp;gt;, and &amp;lt;meta&amp;gt;. All other elements are stripped.&lt;/p&gt;

&lt;p&gt;The basic usage format of the print_custom_head() method is as follows:&lt;/p&gt;

&lt;pre style="background-color: wheat; color: black"&gt;function &lt;span style="background-color:palegreen; color: black"&gt;Page&lt;/span&gt;::print_custom_head() {
"""
&lt;span style="background-color: orange; color: black"&gt;Your desired HTML elements&lt;/span&gt;
""";
}&lt;/pre&gt;

&lt;p&gt;You will need to replace &lt;span style="background-color: orange; color: black"&gt;Your desired HTML elements&lt;/span&gt; with the actual HTML. For example, the following code will add a &amp;lt;meta&amp;gt; tag of the type required by Google for site ownership verification, and change the font to a 14 point Times New Roman font:&lt;/p&gt;

&lt;pre style="background-color: wheat; color: black"&gt;function &lt;span style="background-color:palegreen; color: black"&gt;Page&lt;/span&gt;::print_custom_head() {
"""
&lt;div style="background-color: orange; color: black"&gt;&amp;lt;meta name="verify-v1" content="&lt;i&gt;unique-string&lt;/i&gt;"&amp;gt;

&amp;lt;style type="text/css"&amp;gt;
p, td, body {
font: 14pt Times New Roman, sans-serif;
}
&amp;lt;/style&amp;gt;
&lt;/div&gt;
""";
}&lt;/pre&gt;

&lt;p&gt;If you wish the code to be applied only to a particular page view, you can also replace &lt;span style="background-color:palegreen; color: black"&gt;Page&lt;/span&gt; with the appropriate &lt;a href="http://community.livejournal.com/s2howto/530.html"&gt;child class&lt;/a&gt; (e.g. RecentPage, FriendsPage, YearPage, etc.).&lt;/p&gt;

&lt;p&gt;The specific function that you define such as &lt;code&gt;function Page::print_custom_head()&lt;/code&gt; can be used only once in your custom layer, however you can combine several elements into the same function as illustrated above and in a &lt;a href="http://www.livejournal.com/community/s2howto/1927.html"&gt;separate tutorial&lt;/a&gt;.&lt;/p&gt;

&lt;div style="background-color: darkgray; color: #000000;"&gt;&lt;center style="font-weight: bold;"&gt;Additional References&lt;/center&gt;
&lt;a href="http://community.livejournal.com/s2howto/25272.html"&gt;Creating and Using a Theme Layer&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.w3schools.com/css/"&gt;W3 school's CSS tutorial&lt;/a&gt;
&lt;/div&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:51942</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/51942.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=51942"/>
    <title>[paidaccount] Adding time zone support to custom layouts</title>
    <published>2007-11-09T04:17:54Z</published>
    <updated>2007-11-27T00:30:58Z</updated>
    <category term="timezone support"/>
    <category term="paid accounts only"/>
    <content type="html">&lt;div style="background-color: #ff0000; color: #ffffff;"&gt;&lt;center style="font-weight: bold;"&gt;Paid Accounts Only&lt;/center&gt;The following tutorial requires creating and editing a custom style, which in turn requires a paid, permanent, or early adopter account.  Please read &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=131"&gt;What are the paid account benefits?&lt;/a&gt; and &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=21"&gt;How do I buy a paid account?&lt;/a&gt; to learn about the paid account benefits and how to buy a paid account.&lt;/div&gt;

&lt;p&gt;The LiveJournal &lt;a href="http://www.livejournal.com/customize/advanced/layerbrowse.bml?id=1"&gt;core layer&lt;/a&gt; provides time_display() method that specifies the time zone to use for the comment times. All the system layouts use this method in order to display the comment times in your local time zone &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=156&amp;amp;view=full"&gt;if you have set one&lt;/a&gt;. If you are using a custom layout, however, you will need to modify its code, if the comments are shown in a different time zone.&lt;/p&gt;

&lt;p&gt;You will need to find the code of your custom layout that specifies the way the comments or more specifically the date and time of the comments are printed. Usually this code may be found in &lt;code&gt;EntryPage::print_comment(Comment c)&lt;/code&gt; or &lt;code&gt;EntryPage::print_comment_partial(Comment c)&lt;/code&gt; functions, but it may differ. You will need to modify the code to use the time_display() method like in the following line:&lt;/p&gt;

&lt;pre style="background-color: wheat;"&gt;print $c-&amp;gt;time_display();&lt;/pre&gt;

&lt;p&gt;where &lt;code&gt;$c&lt;/code&gt; is the Comment class variable used in your layout.&lt;/p&gt;

&lt;p&gt;If you would like to specify different date and time formats, you can use another form of time_display() method, with the additional code in the parentheses. For example, the following code will change the date format to "Tue, Feb. 5th (1980)" and leave the time format default.&lt;/p&gt;

&lt;pre style="background-color: wheat;"&gt;print $c-&amp;gt;time_display("%%da%%, %%mon%%. %%dayord%% (%%yyyy%%)", "");&lt;/pre&gt;

&lt;p&gt;Please see &lt;a href="http://community.livejournal.com/s2howto/47668.html"&gt;the Date and Time Formats tutorial&lt;/a&gt; for further details.&lt;/p&gt;

&lt;p&gt;Contributed by &lt;span class='ljuser' lj:user='camomiletea' style='white-space: nowrap;'&gt;&lt;a href='http://camomiletea.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://camomiletea.livejournal.com/'&gt;&lt;b&gt;camomiletea&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;.&lt;/p&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:51499</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/51499.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=51499"/>
    <title>[all] Adding a Header Image &amp;mdash; Overview</title>
    <published>2007-06-24T04:32:39Z</published>
    <updated>2007-06-24T04:32:39Z</updated>
    <category term="header image"/>
    <category term="- all styles"/>
    <category term="free accounts"/>
    <category term="all accounts"/>
    <content type="html">&lt;p&gt;This tutorial provides information on adding a header image in S2.  The exact method of doing so &amp;mdash; a layout-specific setting, custom CSS, or a combination of the two &amp;mdash; depends on the particular layout.  All customizations will be made through the &lt;a href="http://www.livejournal.com/customize/options.bml"&gt;Custom Options&lt;/a&gt; page.&lt;/p&gt;

&lt;p&gt;Layouts that specifically support header images are listed &lt;a href="http://community.livejournal.com/s2howto/46400.html"&gt;here&lt;/a&gt;.  The header option can usually be found under either "Presentation" or "Images" section.  You will need to enter a height (such as "300px") as well as the URL address of the header image.&lt;/p&gt;

&lt;p&gt;For other layouts, the easiest way to have a header image is to add it as a background image, specify the background image properties so that it appears at the top of the journal and does not repeat, and then shift the journal contents down so they start below the image.  Layouts that support both adding a background image and specifying the image properties are listed &lt;a href="http://community.livejournal.com/s2howto/16177.html"&gt;here&lt;/a&gt;.  Layouts that support adding a top margin, which will shift the journal down, are listed &lt;a href="http://community.livejournal.com/s2howto/49378.html"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;For layouts that do not offer some or all of the above customization options, you can use CSS to &lt;a href="http://community.livejournal.com/s2howto/4969.html"&gt;add a background image&lt;/a&gt; and &lt;a href="http://community.livejournal.com/s2howto/4736.html"&gt;shift the journal down&lt;/a&gt;.  CSS can be added in the "Custom CSS" section of the Custom Options page.&lt;/p&gt;

&lt;p&gt;More tutorials for adding a header image can be found under the &lt;a href="http://community.livejournal.com/s2howto/tag/header+image"&gt;'header image'&lt;/a&gt; tag of this community.&lt;/p&gt;

&lt;div style="background-color: darkgray; color: #000000;"&gt;&lt;center style="font-weight: bold;"&gt;Additional References&lt;/center&gt;

&lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=170"&gt;How do I customize my journal using S2?&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=130"&gt;Why are my images not displaying? What is remote loading?&lt;/a&gt;
&lt;/div&gt;

&lt;p&gt;Contributed by &lt;span class='ljuser' lj:user='isabeau' style='white-space: nowrap;'&gt;&lt;a href='http://isabeau.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://isabeau.livejournal.com/'&gt;&lt;b&gt;isabeau&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;.&lt;/p&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:51239</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/51239.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=51239"/>
    <title>[paid accounts only] [Cuteness Attack] Adding Usericons to the Recent View</title>
    <published>2007-02-17T01:53:35Z</published>
    <updated>2007-02-17T01:53:35Z</updated>
    <category term="userpics on recent entries"/>
    <category term="adding userpics"/>
    <category term="userpics"/>
    <category term="paid accounts only"/>
    <category term="- cuteness attack"/>
    <content type="html">&lt;div style="background-color: #ff0000; color: #ffffff;"&gt;&lt;center style="font-weight: bold;"&gt;Paid Accounts Only&lt;/center&gt;The following tutorial requires creating and editing a custom style, which in turn requires a paid, permanent, or early adopter account.  Please read &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=131"&gt;What are the paid account benefits?&lt;/a&gt; and &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=21"&gt;How do I buy a paid account?&lt;/a&gt; to learn about the paid account benefits and how to buy a paid account.&lt;/div&gt;

&lt;p&gt;Usericons are disabled by default on the Recent Entries view of Cuteness Attack, so this tutorial covers how to enable them. It will override the &lt;code&gt;print_entry&lt;/code&gt; function. This requires the creation of a theme layer. If you already have a theme layer, you will need to edit it and add the code below. If you do not have a theme layer, you will need to create one by following the instructions in the &lt;a href="http://www.livejournal.com/community/s2howto/25272.html"&gt;Theme Layer&lt;/a&gt; tutorial.&lt;/p&gt;

&lt;p&gt;Copy and paste the following code into your theme layer if you do not already have the &lt;code&gt;print_entry&lt;/code&gt; code in your theme layer. If you already have this in your theme layer (for example, if you have already customised an aspect of how journal entries are printed using this function) then ignore this step.&lt;/p&gt;

&lt;pre style="background-color: #f5deb3; color: #000000;"&gt;# -------------------------------
# display an entry (all views )
# -------------------------------
function print_entry ( Page p, Entry e )
{
        # get date/time
        var string datetime;
        $datetime = $e.time-&amp;gt;date_format($*date_format) + " | " + $e.time-&amp;gt;time_format($*time_format);

        # get metadata
        var string metadata;
        if ( $e.metadata ) {
                foreach var string k ( $e.metadata ) {
                        var string text = $k;
                        var string val = $e.metadata{$k};
                        if ( $k == "mood" ) {
                                $text = $*text_meta_mood;
                        } elseif ( $k == "music" ) {
                                $text = $*text_meta_music;
                        } elseif ( $k == "location" ) {
                                $text = $*text_meta_location;
                        }
                        if ( $k == "mood" and defined $e.mood_icon ) {
                                var Image i = $e.mood_icon;
                                $val = "&amp;lt;img src=\"$i.url\" width=\"$i.width\" height=\"$i.height\" align=\"absmiddle\" alt=\"$val\" /&amp;gt; $val";
                        }
                        $metadata = "$metadata\n&amp;lt;b&amp;gt;$text:&amp;lt;/b&amp;gt; $val&amp;lt;br /&amp;gt;";
                }
        }

        # get any extra user info (if posting to community, etc)
        var string poster = "";
        var string userpic = "";
        if ( $p.view == "friends" or $p.journal_type == "C" or $e.poster.username != $e.journal.username ) {
                if ( $e.poster.username != $e.journal.username ) {
                        $poster = "&amp;lt;a class=\"user\" href=\"" + $e.poster-&amp;gt;base_url() + "\" title=\"$e.poster.username\"&amp;gt;$e.poster.username&amp;lt;/a&amp;gt; in &amp;lt;a class=\"comm\" href=\"" + $e.journal-&amp;gt;base_url() + "\" title=\"$e.journal.username\" &amp;gt;$e.journal.username&amp;lt;/a&amp;gt;";
                } else {
                        $poster =  "&amp;lt;a class=\"user\" href=\"" + $e.poster-&amp;gt;base_url() + "\" title=\"$e.poster.username\"&amp;gt;$e.poster.username&amp;lt;/a&amp;gt;";
                }
&lt;span style="background-color: #87cefa; color: #000000;"&gt;                $poster = "&amp;lt;b&amp;gt;posted by:&amp;lt;/b&amp;gt; $poster";&lt;/span&gt;
                if ( defined $e.userpic ) {
                        $userpic = "&amp;lt;h3 class=\"userpic\"&amp;gt;&amp;lt;img border=\"0\" src=\"$e.userpic.url\" width=\"$e.userpic.width\" height=\"$e.userpic.height\" alt=\"$e.journal.username\" /&amp;gt;&amp;lt;/h3&amp;gt;";
                }
&lt;span style="background-color: #ffa500; color: #000000;"&gt;        }&lt;/span&gt;
        # print the entry now:
        print "&amp;lt;div id=\"entry_$e.itemid\" class=\"ind-entry\"&amp;gt;";

                # print icon (if needed)
                if ( $userpic != "" ) {
                        print "$userpic";       
                }

                print "&amp;lt;h2&amp;gt;";
                if ( $e.security != "" ) {
                        $e.security_icon-&amp;gt;print();
                        print " ";
                }
                if ( $e.subject == "" ) {
                        print "&amp;lt;i&amp;gt;$*text_nosubject&amp;lt;/i&amp;gt;";
                } else {
                        print "$e.subject";
                }
                print "&amp;lt;/h2&amp;gt;";

                print "&amp;lt;h4&amp;gt;";
                if ( $p.view == "entry" and $*show_entrynav_icons ) {
                        var string item_link = "";
                        foreach var string key (["nav_prev","nav_next"]) {
                                var Link link = $e-&amp;gt;get_link($key);
                                if ( $link ) { 
                                        if ( $key == "nav_prev" ) {
                                                $item_link = $item_link + "&amp;lt;a href=\"$link.url\" title=\"" + $link.caption-&amp;gt;lower() + "\"&amp;gt;&amp;laquo; " + $link.caption-&amp;gt;lower() + "&amp;lt;/a&amp;gt; | ";
                                        } elseif ( $key == "nav_next" ) {
                                                $item_link = $item_link + "&amp;lt;a href=\"$link.url\" title=\"" + $link.caption-&amp;gt;lower() + "\"&amp;gt;" + $link.caption-&amp;gt;lower() + " &amp;raquo;&amp;lt;/a&amp;gt;";
                                        }
                                }
                        }
                        print $item_link;
                        print "&amp;lt;br /&amp;gt;";
                }
                print "&amp;lt;b&amp;gt;$datetime&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;";
                print "$metadata";
                if ( $poster != "" ) {
                        print "$poster";        
                }
                print "&amp;lt;/h4&amp;gt;";

                print "&amp;lt;div class=\"entry-item\"&amp;gt;";
                $e-&amp;gt;print_text();
                print "&amp;lt;/div&amp;gt;\n";

                print "&amp;lt;h4&amp;gt;";
                print safe get_permalink($e.permalink_url);
                if ( $p.view != "entry" and $p.view != "reply" ) {
                        print " | ";
                        $e.comments-&amp;gt;print();
                } elseif ( $e.comments.enabled ) {
                        print " | ";
                        $e.comments-&amp;gt;print_postlink();
                }
                var Link tmp;
                if ( viewer_is_owner() and $p.view != "friends" ) {
                        $tmp = $e-&amp;gt;get_link("edit_entry");
                        print " | &amp;lt;a href=\"$tmp.url\" title=\"$tmp.caption\"&amp;gt;$tmp.caption&amp;lt;/a&amp;gt;";
                }
                $tmp = $e-&amp;gt;get_link("mem_add");
                print " | &amp;lt;a href=\"$tmp.url\" title=\"$tmp.caption\"&amp;gt;$tmp.caption&amp;lt;/a&amp;gt;";
                print "&amp;lt;/h4&amp;gt;";
        print "&amp;lt;/div&amp;gt;";
        print "&amp;lt;hr /&amp;gt;";
}&lt;/pre&gt;

&lt;p&gt;Now, locate the &lt;code&gt;}&lt;/code&gt; highlighted in orange, and cut and paste it at the end of the line in blue. That line will now read as follows:&lt;/p&gt;

&lt;pre style="background-color: #f5deb3; color: #000000;"&gt;                $poster = "&amp;lt;b&amp;gt;posted by:&amp;lt;/b&amp;gt; $poster"; } &lt;/pre&gt;

&lt;p&gt;Ordinarily, this style checks to see if a journal is not on the Recent view, and if this is true, it prints a userpic and "posted by: &lt;span class='ljuser' lj:user='exampleusername' style='white-space: nowrap;'&gt;&lt;a href='http://exampleusername.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://exampleusername.livejournal.com/'&gt;&lt;b&gt;exampleusername&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;". This amendment means that the style still checks that it is not the Recent view in order to display "posted by: &lt;span class='ljuser' lj:user='exampleusername' style='white-space: nowrap;'&gt;&lt;a href='http://exampleusername.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://exampleusername.livejournal.com/'&gt;&lt;b&gt;exampleusername&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;", but displays the userpic regardless of the view.&lt;/p&gt;

&lt;p&gt;Compile your layer, and it's ready to use. You will need to apply your theme layer via the &lt;a href="http://www.livejournal.com/customize/"&gt;Customize&lt;/a&gt; interface in order for your changes to take effect.&lt;/p&gt;

&lt;center&gt;&lt;table cellpadding="2" border="0" width="100%" cellspacing="0"&gt;&lt;tr&gt;&lt;td style="text-align: left; background: #a9a9a9;" valign="top" width="30%"&gt;&lt;span style="color: #000000;"&gt;Additional References:&lt;/span&gt;&lt;/td&gt;&lt;td style="text-align: left; background: #a9a9a9;"&gt;&lt;li&gt;&lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=176"&gt;What are the different S2 layer types?&lt;/a&gt;&lt;/li&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/center&gt;

&lt;p style="font-size: smaller;"&gt;Contributed by &lt;span class='ljuser' lj:user='dandelion' style='white-space: nowrap;'&gt;&lt;a href='http://dandelion.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://dandelion.livejournal.com/'&gt;&lt;b&gt;dandelion&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;.&lt;/p&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:51184</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/51184.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=51184"/>
    <title>[paid accounts only] [haven] Adding a tag cloud to the sidebar</title>
    <published>2007-01-14T20:10:18Z</published>
    <updated>2007-01-14T20:10:18Z</updated>
    <category term="- haven"/>
    <category term="paid accounts only"/>
    <category term="tag cloud"/>
    <content type="html">&lt;div style="background-color: #ff0000; color: #ffffff;"&gt;&lt;center style="font-weight: bold;"&gt;Paid Accounts Only&lt;/center&gt;
The following tutorial requires creating and editing a custom style, which in turn requires a paid, permanent, or early adopter account.  Please read &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=131"&gt;What are the paid account benefits?&lt;/a&gt; and &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=21"&gt;How do I buy a paid account?&lt;/a&gt; to learn about the paid account benefits and how to buy a paid account.&lt;/div&gt;

&lt;p&gt;This tutorial will explain how to add a tag cloud to the sidebar in the Haven layout. The code will need to be placed into a theme layer, as it will override the function print_sidebar(). If you already have a theme layer, you will need to edit it and add the code below. If you do not have a theme layer, you will need to create one by following the instructions in the &lt;a href="http://community.livejournal.com/s2howto/25272.html"&gt;Theme Layer&lt;/a&gt; tutorial.&lt;/p&gt;

&lt;p&gt;A tag cloud is a list of your tags, where the size of the font is proportional to the number of times the tag has been used. In the Haven layout, you can add a tag cloud into an extra sidebar box using the code below. The parts highlighted in green are the minimum and maximum font sizes in pixels to use for the cloud and these can be changed as you wish. For information on changing the order of the sidebar boxes, or for creating new sidebar boxes, you can follow this &lt;a href="http://community.livejournal.com/s2howto/26322.html"&gt;tutorial&lt;/a&gt;. Note that if your theme layer already has function print_sidebar(), you will need to modify it to include the code highlighted in orange. Otherwise, copy and paste the following code into the layer, making sure to include everything:&lt;/p&gt;

&lt;div style="background-color: #f5deb3; color: #000000;"&gt;&lt;pre&gt;function print_sidebar()
{
    print_sidebar_userpic();
    print_sidebar_summary();
    print_sidebar_blurb();
    print_sidebar_linklist();
    print_sidebar_calendar();
    

&lt;div style="background-color: orange;"&gt;    &lt;span style="background-color: #00ff00; color: #000000;"&gt;var int minSize = 12;&lt;/span&gt;
    &lt;span style="background-color: #00ff00; color: #000000;"&gt;var int maxSize = 24;&lt;/span&gt;

    var Page p = get_page();

    var TagDetail[] visibletags = $p-&amp;gt;visible_tag_list();
    if (size($visibletags) != 0 &lt;span style="background-color: #ffff00; color: #000000;"&gt;and $p.view != "friends"&lt;/span&gt;)
    {
	var string taglist_title = "&amp;lt;br /&amp;gt;&amp;lt;b&amp;gt;Tags:&amp;lt;/b&amp;gt;";
        var string taglist = "";

	var int count = 1;
	foreach var TagDetail t ($visibletags)
	{
	    if ($t.use_count &amp;gt; $count) { $count = $t.use_count; }
	}

	foreach var TagDetail t ($visibletags)
        {
	    var int tagSize = $minSize;
	    if ($t.use_count &amp;gt; 1)
	    {
		$tagSize = (($maxSize-$minSize)*$t.use_count)/$count + $minSize;
            }

            $taglist = $taglist + """&amp;lt;a href="$t.url" style="font-size: """ + $tagSize + """px;"&amp;gt;$t.name&amp;lt;/a&amp;gt; """;	    
        }

	print_sidebar_box($taglist_title, $taglist);
    }&lt;/div&gt;
}&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;This code will add a tag cloud to the sidebar in all journal views except the friends view. If you would like to see your tag list also on your friends page, remove the text highlighted in yellow.&lt;/p&gt;

&lt;p&gt;Compile your layer, and it's ready to use. You will need to apply your theme layer via the &lt;a href="http://www.livejournal.com/customize/"&gt;Customize&lt;/a&gt; interface in order for your changes to take effect.&lt;/p&gt;

&lt;div style="background-color: darkgray; color: rgb(0, 0, 0);"&gt;&lt;center style="font-weight: bold;"&gt;Additional References&lt;/center&gt;&lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=176"&gt;What are the different S2 layer types?&lt;/a&gt;&lt;/div&gt;

&lt;p&gt;Contributed by &lt;span class='ljuser' lj:user='scaryjeff' style='white-space: nowrap;'&gt;&lt;a href='http://scaryjeff.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://scaryjeff.livejournal.com/'&gt;&lt;b&gt;scaryjeff&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;, based on tutorials by &lt;span class='ljuser' lj:user='camomiletea' style='white-space: nowrap;'&gt;&lt;a href='http://camomiletea.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://camomiletea.livejournal.com/'&gt;&lt;b&gt;camomiletea&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; and &lt;span class='ljuser' lj:user='tell_me' style='white-space: nowrap;'&gt;&lt;a href='http://tell-me.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://tell-me.livejournal.com/'&gt;&lt;b&gt;tell_me&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;.&lt;/p&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:50424</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/50424.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=50424"/>
    <title>[s2 features by layout] Expressive</title>
    <published>2006-09-19T03:06:07Z</published>
    <updated>2006-09-19T03:06:07Z</updated>
    <category term="$ list of layouts"/>
    <category term="- expressive"/>
    <content type="html">This layout is available to Plus, Paid, Permanent, and Early Adopter account holders.&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/10552.html"&gt;Changing Comment Link Text&lt;/a&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/40514.html"&gt;Custom CSS&lt;/a&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/12405.html"&gt;Disable Friends Userpics
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/13895.html"&gt;Icons on Entry View page&lt;/a&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/13719.html"&gt;Free Text&lt;/a&gt; 
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/13499.html"&gt;Friend Colors on Friends Page&lt;/a&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/14810.html"&gt;Link list&lt;/a&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/15033.html"&gt;Mini-calendar&lt;/a&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/15427.html"&gt;Number of Journal Entries on Page&lt;/a&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/15767.html"&gt;Old-Style Comment pages&lt;/a&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/38654.html"&gt;Order of months on year view&lt;/a&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/38233.html"&gt;Order of entries on day view&lt;/a&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/16550.html"&gt;Page Summaries&lt;/a&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/45552.html"&gt;Permanent Link to Entry&lt;/a&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/17646.html"&gt;Renaming Currents&lt;/a&gt;

&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/41848.html"&gt;Replacement stylesheet URL&lt;/a&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/17883.html"&gt;Shared Journal User Pictures&lt;/a&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/42068.html"&gt;Sidebar position&lt;/a&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/49779.html"&gt;Tag list&lt;/a&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/19425.html"&gt;Text to Replace Subject Line When Empty&lt;/a&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/44983.html"&gt;Time zone support&lt;/a&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/19777.html"&gt;Userpics on Recent Entries&lt;/a&gt;&lt;/ul&gt;&lt;/a&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:50118</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/50118.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=50118"/>
    <title>Expressive Explained</title>
    <published>2006-09-14T23:37:07Z</published>
    <updated>2006-09-14T23:37:35Z</updated>
    <category term="- expressive"/>
    <content type="html">&lt;h2&gt;&lt;b&gt;Expressive Explained&lt;/b&gt;&lt;/h2&gt;
&lt;p&gt;Here are some things that may be helpful to know if you want to customize Expressive.&lt;/p&gt;

&lt;a name="cutid1"&gt;&lt;/a&gt;
&lt;br /&gt;&lt;h3&gt;&lt;strong&gt;Column Variations:&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;Expressive has 4 different layout types to choose from:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;3 columns with entries on the left and 2 sidebars to the right&lt;/li&gt;
  &lt;li&gt;3 columns with entries in the middle and a sidebar on either side&lt;/li&gt;
  &lt;li&gt;2 columns with entries on the left and a sidebar on the right&lt;/li&gt;
  &lt;li&gt;2 columns with entries on the right and a sidebar on the left&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The entries column is named &lt;strong&gt;Alpha&lt;/strong&gt;. &lt;strong&gt;Beta&lt;/strong&gt; and &lt;strong&gt;Gamma &lt;/strong&gt;are the sidebars. You will find a variation of &lt;em&gt;layout-wtt &lt;/em&gt;in the HTML based on the layout type you have selected from the Customize wizard. This is a class that can be styled. &lt;strong&gt;W&lt;/strong&gt; stands for a wide column, and &lt;strong&gt;T&lt;/strong&gt; is for a thin column. This is the order the columns appear based on the selected layout type.
&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;&lt;strong&gt;layout-wtt&lt;/strong&gt; &amp;ndash; Alpha Gamma Beta&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;layout-twt&lt;/strong&gt; &amp;ndash; Beta Alpha Gamma &lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;layout-wt&lt;/strong&gt; &amp;ndash; Alpha Beta&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;layout-tw&lt;/strong&gt; &amp;ndash; Beta Alpha&lt;/li&gt;
&lt;/ul&gt;


&lt;br /&gt;&lt;a name="cutid2"&gt;&lt;/a&gt;&lt;h3&gt;&lt;strong&gt;Stylesheet Structure:&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;These are stylesheets we pulled from Vox. They are the same as they are on Vox so that if something gets updated, we can replace the whole stylesheet rather than find and make each individual change on the LJ copy.&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;&lt;strong&gt;base.css&lt;/strong&gt; &amp;ndash; resets styled elements to its default&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;default/screen.css&lt;/strong&gt; &amp;ndash; default styles across all themes&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;theme/screen.css&lt;/strong&gt; &amp;ndash; styles for theme&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;theme-variation/screen.css&lt;/strong&gt; &amp;ndash; images and color changes per theme variation&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;These are the stylesheets we added to override any styles set in the Vox stylesheets, and also to add in new classes that are specific to LJ:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;&lt;strong&gt;ljextras.css&lt;/strong&gt; &amp;ndash; things specific to LJ that aren't in Vox&lt;/li&gt;
  &lt;li&gt;&lt;strong&gt;theme.css&lt;/strong&gt; &amp;ndash; if a theme has something that needs to override any of the preceding stylesheets, this stylesheet may also show up&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If you add custom CSS, it comes after all the other stylesheets.&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;custom stylesheet url&lt;/li&gt;
  &lt;li&gt;custom CSS (from the custom CSS box)&lt;/li&gt;
&lt;/ul&gt;

&lt;br /&gt;&lt;a name="cutid3"&gt;&lt;/a&gt;&lt;h3&gt;&lt;strong&gt;Customizing Stylesheet(s):&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;If you're making simple changes such as replacing a header with one of your own, or if you're just changing the background color, overriding the CSS in the theme-variation's stylesheet is the way to go.&lt;/p&gt;
&lt;p&gt;However, if you're creating a completely new layout, &amp;quot;starting from scratch&amp;quot; is recommended. Instead of starting off with a premade theme, select &amp;quot;(none)&amp;quot; from the themes drop-down menu and create your own stylesheet for your design. &lt;/p&gt;
&lt;p&gt;This is recommended since your layout won't have 4 variations (unless you want to make variations, which is cool too) and it would be unnecessary extra work to create a theme stylesheet and a variation stylesheet which overrides the main theme stylesheet's colors. There is also a lot of extra CSS in the theme stylesheets that you wouldn't need since you're creating a layout for LJ, not Vox. &lt;/p&gt;
&lt;p&gt;&lt;a href="http://community.livejournal.com/s2expressive/13721.html"&gt;Here is an example of a theme stylesheet&lt;/a&gt; that you can use. It combines the theme stylesheet and the theme-variation stylesheets into one, and all the extra Vox stuff has been stripped out.&lt;/p&gt;

&lt;br /&gt;&lt;a name="cutid4"&gt;&lt;/a&gt;&lt;h3&gt;&lt;strong&gt;But there are so many names! What's what and what's where?&lt;/strong&gt;&lt;/h3&gt;
&lt;p&gt;Here are the main IDs and classes in Expressive, in the order they're nested within each other.&lt;br /&gt;
&lt;a href="http://pics.livejournal.com/chasethestars/pic/000g2exs"&gt;&lt;img src="http://pics.livejournal.com/chasethestars/pic/000g2exs/s320x320" /&gt;&lt;/a&gt;&lt;br /&gt;
Click to view full-size. (It's 1242x1289 and 88.88kb)&lt;/p&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:49779</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/49779.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=49779"/>
    <title>[s2 layouts by feature] Tag List in Sidebar</title>
    <published>2006-09-05T22:59:53Z</published>
    <updated>2006-09-19T03:37:15Z</updated>
    <category term="$ list of features"/>
    <content type="html">[ &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=171"&gt;Go Back&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5507.html"&gt;List of Layouts&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5740.html"&gt;List of Features&lt;/a&gt; ]&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;
 &lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/47332.html"&gt;Bloggish&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;* &lt;a href="http://www.livejournal.com/community/s2howto/6804.html"&gt;Component&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;* &lt;a href="http://www.livejournal.com/community/s2howto/50424.html"&gt;Expressive&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/40221.html"&gt;Smooth Sailing&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;* Layouts denoted with an asterisk are usable only by selected account holders.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:49606</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/49606.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=49606"/>
    <title>[all] Customizing Navigation Strip Colors</title>
    <published>2006-07-25T20:06:43Z</published>
    <updated>2006-08-16T19:40:47Z</updated>
    <category term="navigation strip"/>
    <category term="free accounts"/>
    <category term="all accounts"/>
    <content type="html">The &lt;a href="http://www.livejournal.com/manage/settings/"&gt;settings&lt;/a&gt; for the Navigation Strip allow you to choose dark grey (with light text), or light grey (with dark text).  However, these options don't always match the journal's style.  Luckily, it's possible to use CSS to change the background and text color for the navigation strip.&lt;br /&gt;&lt;br /&gt;There are four elements that are easily customizable: the background to the strip, which can be made transparent or, optionally, given a background color; the text color; the link color; and the border between the elements.  Users who are familiar with CSS can also make additional customizations as desired.&lt;br /&gt;&lt;br /&gt;To change the colors, you will need to access the "Custom CSS" section of the &lt;a href="http://www.livejournal.com/customize/options.bml"&gt;Custom Options&lt;/a&gt; customization tab.  Enter the following CSS information into the "custom stylesheet" area of this section:&lt;br /&gt;&lt;br /&gt;&lt;div style="background-color: #f5deb3; color: #000000;"&gt;/* background of entire strip */&lt;br /&gt;#lj_controlstrip&lt;br /&gt;{&lt;br /&gt;background-image: none;&lt;br /&gt;background-color: &lt;span style="background-color: #ffff00; color: #000000;"&gt;#FFFFFF&lt;/span&gt;;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;/* text color */&lt;br /&gt;#lj_controlstrip td, #lj_controlstrip_statustext&lt;br /&gt;{&lt;br /&gt;color: &lt;span style="background-color: #ffa500; color: #000000;"&gt;#000000&lt;/span&gt;;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;/* link color */&lt;br /&gt;#lj_controlstrip a&lt;br /&gt;{&lt;br /&gt;color: &lt;span style="background-color: #cc66ff; color: #000000;"&gt;#0000FF&lt;/span&gt;;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;/* border between elements */&lt;br /&gt;#lj_controlstrip_user, #lj_controlstrip_userlinks, #lj_controlstrip_login&lt;br /&gt;{&lt;br /&gt;border-right: &lt;span style="background-color: #87cefa; color: #000000;"&gt;1px&lt;/span&gt;  &lt;span style="background-color: #ffff00; color: #000000;"&gt;solid&lt;/span&gt; &lt;span style="background-color: #00ff66; color: #000000;"&gt;#888888&lt;/span&gt;;&lt;br /&gt;}&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Change &lt;span style="background-color: #ffff00; color: #000000;"&gt;#FFFFFF&lt;/span&gt; to the color code for the background color you want; if you want it to be transparent, so that the background color and image for the page will show through, type the word &lt;b&gt;transparent&lt;/b&gt; instead of the color code.  Change &lt;span style="background-color: #ffa500; color: #000000;"&gt;#000000&lt;/span&gt; to the color code you want for the text; change &lt;span style="background-color: #cc66ff; color: #000000;"&gt;#0000FF&lt;/span&gt; to the color code you want for links.  For the border, change &lt;span style="background-color: #87cefa; color: #000000;"&gt;1px&lt;/span&gt; to the desired width, &lt;span style="background-color: #ffff00; color: #000000;"&gt;solid&lt;/span&gt; to the desired border style (select from: none, dotted, dashed, solid, double, groove, ridge, inset, outset), and &lt;span style="background-color: #00ff66; color: #000000;"&gt;#888888&lt;/span&gt; to the desired color code.&lt;br /&gt;&lt;br /&gt;You can use the &lt;a href="http://www.livejournal.com/users/howto/28475.html"&gt;Color Hexadecimal Codes Chart&lt;/a&gt; to find the hexadecimal color code for your desired colors.&lt;br /&gt;&lt;br /&gt;Paid users who are using a custom layout may need to adapt this code into a print_custom_head() function instead.  If you already have a theme layer, you will need to edit it and add the code below.  If you do not have a theme layer, you will need to create one by following the instructions in the &lt;a href="http://www.livejournal.com/community/s2howto/25272.html"&gt;Theme Layer&lt;/a&gt; tutorial.&lt;br /&gt;&lt;br /&gt;&lt;div style="background-color: #f5deb3; color: #000000;"&gt;function Page::print_custom_head() {&lt;br /&gt;"""&lt;br /&gt;&amp;lt;style type="text/css"&amp;gt;&lt;br /&gt;&lt;span style="background-color: #ffff00; color: #000000;"&gt;CSS information&lt;/span&gt;&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;""";&lt;br /&gt;}&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Replace &lt;span style="background-color: #ffff00; color: #000000;"&gt;CSS information&lt;/span&gt; with the code provided earlier in the tutorial.  Note that if you already have a print_custom_head function, you will need to &lt;a href="http://community.livejournal.com/s2howto/1927.html"&gt;merge&lt;/a&gt; the two functions together.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: smaller;"&gt;Contributed by &lt;span class='ljuser' lj:user='isabeau' style='white-space: nowrap;'&gt;&lt;a href='http://isabeau.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://isabeau.livejournal.com/'&gt;&lt;b&gt;isabeau&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;.&lt;/span&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:49378</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/49378.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=49378"/>
    <title>[s2 layouts by feature] Top Margin</title>
    <published>2006-07-15T23:18:33Z</published>
    <updated>2006-07-15T23:18:33Z</updated>
    <category term="$ list of features"/>
    <content type="html">[ &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=171"&gt;Go Back&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5507.html"&gt;List of Layouts&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5740.html"&gt;List of Features&lt;/a&gt; ]&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/6372.html"&gt;Classic&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/6600.html"&gt;Clean and Simple&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/48993.html"&gt;Disjointed&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/7251.html"&gt;Generator&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/7915.html"&gt;Magazine&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/8179.html"&gt;Notepad&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/8628.html"&gt;Punquin Elegant&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/48865.html"&gt;Refried Paper&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/8754.html"&gt;Tabular Indent&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/9551.html"&gt;Variable Flow&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;* Layouts denoted with an asterisk are usable only by Paid, Permanent, and Early Adopter account holders.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:48993</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/48993.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=48993"/>
    <title>[s2 features by layout] Disjointed</title>
    <published>2006-07-13T21:52:54Z</published>
    <updated>2006-07-15T23:59:32Z</updated>
    <category term="- disjointed"/>
    <category term="$ list of layouts"/>
    <content type="html">[ &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=171"&gt;Go Back&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5507.html"&gt;List of Layouts&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5740.html"&gt;List of Features&lt;/a&gt; ]&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/10210.html"&gt;Changing Borders&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/10552.html"&gt;Changing Comment Link Text&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/10426.html"&gt;Changing Date Format&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/11056.html"&gt;Changing Navigation Text&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/11464.html"&gt;Changing Page Alignment&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/11711.html"&gt;Changing Page Width&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/48596.html"&gt;Changing Time Format&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/11810.html"&gt;Color Customization&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/47982.html"&gt;Counter Code&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/40514.html"&gt;Custom CSS&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/13284.html"&gt;Font Size Specification&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/12827.html"&gt;Font Specification&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/13719.html"&gt;Free Text&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/14319.html"&gt;Leading Text for Links&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/14492.html"&gt;Leading Text for Page Summaries&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/14810.html"&gt;Link List&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/15033.html"&gt;Mini-Calendar&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/15427.html"&gt;Number of Journal Entries on Page&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/15767.html"&gt;Old-Style Comment Pages&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/38233.html"&gt;Order of Entries on Day View&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;Order of Entries on Recent Entries View&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/16047.html"&gt;Page Background Image&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/16177.html"&gt;Page Background Image Properties&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/16550.html"&gt;Page Summaries&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/45552.html"&gt;Permanent Link to Entry&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/17646.html"&gt;Renaming Currents&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/41848.html"&gt;Replacement Stylesheet URL&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/18015.html"&gt;Sidebar Contents&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/42068.html"&gt;Sidebar Position&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/44983.html"&gt;Timezone Support&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/49378.html"&gt;Top Margin&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:48865</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/48865.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=48865"/>
    <title>[s2 features by layout] Refried Paper</title>
    <published>2006-07-13T21:31:46Z</published>
    <updated>2006-07-24T00:07:18Z</updated>
    <category term="- refried paper"/>
    <category term="$ list of layouts"/>
    <content type="html">&lt;p&gt;&amp;nbsp;[ &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=171"&gt;Go Back&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5507.html"&gt;List of Layouts&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5740.html"&gt;List of Features&lt;/a&gt; ]&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/10210.html"&gt;Changing Borders&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/10552.html"&gt;Changing Comment Link Text&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/10426.html"&gt;Changing Date Format&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/11056.html"&gt;Changing Navigation Text&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/11464.html"&gt;Changing Page Alignment&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/11711.html"&gt;Changing Page Width&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/48596.html"&gt;Changing Time Format&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/11810.html"&gt;Color Customization&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/47982.html"&gt;Counter Code&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/40514.html"&gt;Custom CSS&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/12827.html"&gt;Font Specification&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/13719.html"&gt;Free Text&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/14319.html"&gt;Leading Text for Links&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/14492.html"&gt;Leading Text for Page Summaries&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/14810.html"&gt;Link List&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/15033.html"&gt;Mini-Calendar&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/15427.html"&gt;Number of Journal Entries on Page&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/15767.html"&gt;Old-Style Comment Pages&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/38233.html"&gt;Order of Entries on Day View&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;Order of Entries on Recent Entries View &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/16047.html"&gt;Page Background Image&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/16177.html"&gt;Page Background Image Properties&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/16550.html"&gt;Page Summaries&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/45552.html"&gt;Permanent Link to Entry&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/17646.html"&gt;Renaming Currents&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/41848.html"&gt;Replacement Stylesheet URL&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/18015.html"&gt;Sidebar Contents&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/42068.html"&gt;Sidebar Position&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/44983.html"&gt;Timezone Support&lt;/a&gt; &lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/49378.html"&gt;Top Margin&lt;/a&gt; &lt;/li&gt;
&lt;/ul&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:48596</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/48596.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=48596"/>
    <title>[s2 layouts by feature] Changing Time Format</title>
    <published>2006-07-01T03:22:39Z</published>
    <updated>2006-07-13T21:56:23Z</updated>
    <category term="$ list of features"/>
    <content type="html">[ &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=171"&gt;Go Back&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5507.html"&gt;List of Layouts&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5740.html"&gt;List of Features&lt;/a&gt; ]&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/6372.html"&gt;Classic&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/6600.html"&gt;Clean and Simple&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/29990.html"&gt;Cuteness Attack&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/48993.html"&gt;Disjointed&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/7251.html"&gt;Generator&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/37177.html"&gt;Gradient Strip&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/7915.html"&gt;Magazine&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/28979.html"&gt;Nebula&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/8179.html"&gt;Notepad&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/8628.html"&gt;Punquin Elegant&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/48865.html"&gt;Refried Paper&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/40221.html"&gt;Smooth Sailing&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/8754.html"&gt;Tabular Indent&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/28819.html"&gt;Tranquility II&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;* Layouts denoted with an asterisk are usable only by Paid, Permanent, and Early Adopter account holders.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:47982</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/47982.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=47982"/>
    <title>[s2 layouts by feature] Counter Code</title>
    <published>2006-07-01T01:47:38Z</published>
    <updated>2006-07-13T21:57:43Z</updated>
    <category term="$ list of features"/>
    <content type="html">[ &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=171"&gt;Go Back&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5507.html"&gt;List of Layouts&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5740.html"&gt;List of Features&lt;/a&gt; ]&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/6372.html"&gt;Classic&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/6600.html"&gt;Clean and Simple&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/48993.html"&gt;Disjointed&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/7251.html"&gt;Generator&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/7915.html"&gt;Magazine&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/8179.html"&gt;Notepad&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/8628.html"&gt;Punquin Elegant&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/48865.html"&gt;Refried Paper&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/8754.html"&gt;Tabular Indent&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;* Layouts denoted with an asterisk are usable only by Paid, Permanent, and Early Adopter account holders.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:47668</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/47668.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=47668"/>
    <title>Date and Time Formats</title>
    <published>2006-06-20T18:09:23Z</published>
    <updated>2006-07-01T04:25:42Z</updated>
    <category term="format date/time"/>
    <category term="time"/>
    <category term="date"/>
    <content type="html">Many layouts offer you the ability to change the way the &lt;a href="http://community.livejournal.com/s2howto/10426.html" title="[s2 layouts by feature] Changing Date Format"&gt;date&lt;/a&gt; or the &lt;a href="http://community.livejournal.com/s2howto/48596.html" title="[s2 layouts by feature] Changing Time Format"&gt;time&lt;/a&gt; is displayed in your layout; this option is available in the layout's customization wizard. &lt;br /&gt;&lt;br /&gt;In order to format the date and time the way you'd like, you will need to use the variables described below. You can put these together in any order you want, with any other text you want, in order to display the date/time the way you'd like it. None of these variables are required, so if you don't want to display any particular portion of the date/time, you can simply omit that variable.&lt;br /&gt;&lt;br /&gt;For example, if you use "%%da%%, %%mon%%. %%dayord%% (%%yyyy%%)", the date will be displayed as "Tue, Feb. 5th (1980)". Similarly, "%%m%%/%%yyyy%%" will appear as "2/2006", and so on.&lt;br /&gt;&lt;br /&gt;&lt;a name="cutid1"&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Time Formats&lt;/h1&gt;
&lt;strong&gt;Hour&lt;/strong&gt;
&lt;dl&gt;
&lt;dt&gt;%%H%%&lt;/dt&gt;&lt;dd&gt;Hour, 0-23.&lt;/dd&gt;
&lt;dt&gt;%%HH%%&lt;/dt&gt;&lt;dd&gt;Hour, 00-23.&lt;/dd&gt;
&lt;dt&gt;%%h%%&lt;/dt&gt;&lt;dd&gt;Hour, 1-12.&lt;/dd&gt;
&lt;dt&gt;%%hh%%&lt;/dt&gt;&lt;dd&gt;Hour, 01-12.&lt;/dd&gt;
&lt;/dl&gt;

&lt;strong&gt;Minute&lt;/strong&gt;
&lt;dl&gt;
&lt;dt&gt;%%min%%&lt;/dt&gt;&lt;dd&gt;Minute, 00-59.&lt;/dd&gt;
&lt;/dl&gt;

&lt;strong&gt;Seconds&lt;/strong&gt;
&lt;dl&gt;
&lt;dt&gt;%%sec%%&lt;/dt&gt;&lt;dd&gt;Second, 00-59.&lt;/dd&gt;
&lt;/dl&gt;

&lt;strong&gt;AM/PM&lt;/strong&gt;
&lt;dl&gt;
&lt;dt&gt;%%a%%&lt;/dt&gt;&lt;dd&gt;"a" for am, "p" for pm&lt;br&gt;You can use %%a%%m to form "am" or "pm"&lt;/dd&gt;
&lt;dt&gt;%%A%%&lt;/dt&gt;&lt;dd&gt;"A" for am, "P" for pm&lt;br&gt;You can use %%A%%M to form "AM" or "PM"&lt;/dd&gt;
&lt;/dl&gt;


&lt;h1&gt;Date Formats&lt;/h1&gt;

&lt;strong&gt;Day of Week&lt;/strong&gt;
&lt;dl&gt;
&lt;dt&gt;%%da%%&lt;/dt&gt;&lt;dd&gt;Short day of week, translated. (English: Sun, Mon, …)&lt;/dd&gt;
&lt;dt&gt;%%day%%&lt;/dt&gt;&lt;dd&gt;Long day of week, translated. (English: Sunday, Monday, …)&lt;/dd&gt;
&lt;/dl&gt;

&lt;strong&gt;Day&lt;/strong&gt;
&lt;dl&gt;
&lt;dt&gt;%%d%%&lt;/dt&gt;&lt;dd&gt;Day, 1-31.&lt;/dd&gt;
&lt;dt&gt;%%dd%%&lt;/dt&gt;&lt;dd&gt;Day, 01-31.&lt;/dd&gt;
&lt;dt&gt;%%dayord%%&lt;/dt&gt;&lt;dd&gt;Ordinal day of week, translated. (English: 1st, 2nd, 3rd, …)&lt;/dd&gt;
&lt;/dl&gt;

&lt;strong&gt;Month&lt;/strong&gt;
&lt;dl&gt;
&lt;dt&gt;%%m%%&lt;/dt&gt;&lt;dd&gt;Month, 1-12.&lt;/dd&gt;
&lt;dt&gt;%%mm%%&lt;/dt&gt;&lt;dd&gt;Month, 01-12.&lt;/dd&gt;
&lt;dt&gt;%%mon%%&lt;/dt&gt;&lt;dd&gt;Short month name, translated. (English: Jan, Feb, …)&lt;/dd&gt;
&lt;dt&gt;%%month%%&lt;/dt&gt;&lt;dd&gt;Long month name, translated. (English: January, February, …)&lt;/dd&gt;
&lt;/dl&gt;

&lt;strong&gt;Year&lt;/strong&gt;
&lt;dl&gt;
&lt;dt&gt;%%yy%%&lt;/dt&gt;&lt;dd&gt;Year, two digits.&lt;/dd&gt;
&lt;dt&gt;%%yyyy%%&lt;/dt&gt;&lt;dd&gt;Year, four digits.&lt;/dd&gt;
&lt;/dl&gt;&lt;br /&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:47332</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/47332.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=47332"/>
    <title>[s2 features by layout] Bloggish</title>
    <published>2006-04-26T17:25:50Z</published>
    <updated>2006-09-05T23:03:35Z</updated>
    <content type="html">[ &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=171"&gt;Go Back&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5507.html"&gt;List of Layouts&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5740.html"&gt;List of Features&lt;/a&gt; ]&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/10552.html"&gt;Changing Comment Link Text&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/11056.html"&gt;Changing Navigation Text&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/40514.html"&gt;Custom CSS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/14810.html"&gt;Link List&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/15033.html"&gt;Mini-Calendar&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/15427.html"&gt;Number of Journal Entries on Page&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/15767.html"&gt;Old-Style Comment Pages&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/45552.html"&gt;Permanent Link to Entry&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/41848.html"&gt;Replacement Stylesheet URL&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/17883.html"&gt;Shared Journal User Pictures&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/42068.html"&gt;Sidebar Position&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/49779.html"&gt;Tag List in Sidebar&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/44983.html"&gt;Timezone support&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/19777.html"&gt;User Pictures on Recent Entries&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:46400</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/46400.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=46400"/>
    <title>[s2 layouts by feature] Header Image</title>
    <published>2006-04-24T17:50:06Z</published>
    <updated>2006-04-24T17:50:06Z</updated>
    <category term="$ list of features"/>
    <content type="html">[ &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=171"&gt;Go Back&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5507.html"&gt;List of Layouts&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5740.html"&gt;List of Features&lt;/a&gt; ]&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt; &lt;a href="http://www.livejournal.com/community/s2howto/29834.html"&gt;3 Column&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a href="http://www.livejournal.com/community/s2howto/40132.html"&gt;Quite Lickable&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;* Layouts denoted with an asterisk are usable only by Paid, Permanent, and Early Adopter account holders.&lt;br /&gt;** Layouts denoted with a double asterisk indicate that this feature is only available to Paid, Permanent, and Early Adopter account holders.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:46128</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/46128.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=46128"/>
    <title>[paidaccount] [smooth sailing] Randomized User Pictures</title>
    <published>2006-04-13T00:15:13Z</published>
    <updated>2006-04-13T00:35:31Z</updated>
    <category term="randomized userpics"/>
    <category term="paid accounts only"/>
    <category term="- smooth sailing"/>
    <content type="html">&lt;div style="background-color: #ff0000; color: #ffffff;"&gt;&lt;center style="font-weight: bold;"&gt;Paid Accounts Only&lt;/center&gt;The following tutorial requires creating and editing a custom style, which in turn requires a paid, permanent, or early adopter account. Please read &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=131"&gt;What are the paid account benefits?&lt;/a&gt; and &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=21"&gt;How do I buy a paid account?&lt;/a&gt; to learn about the paid account benefits and how to buy a paid account.&lt;/div&gt;

&lt;p&gt;This tutorial explains how to randomise user picture which displays in the profile box in the sidebar. The code to do this will override the Page::lay_print_sidebar_profile(). You will need to place the coding in a theme layer. If you already have a theme layer for the Smooth Sailing style, you can edit it to include this code. Otherwise, you need to create one as explained in the &lt;a href="http://www.livejournal.com/community/s2howto/25272.html"&gt;Theme Layer&lt;/a&gt; tutorial.&lt;/p&gt;

&lt;p&gt;You will need to copy the following code into your theme layer, making sure to include everything:&lt;/p&gt;

&lt;pre style="background-color:wheat"&gt;function Page::lay_print_sidebar_profile() {

   var string[] pic;

   $pic[size($pic)]="&lt;span style="background-color:orange"&gt;http://www.livejournal.com/userpic/######/######&lt;/span&gt;";
   $pic[size($pic)]="&lt;span style="background-color:orange"&gt;http://www.livejournal.com/userpic/######/######&lt;/span&gt;";
   $pic[size($pic)]="&lt;span style="background-color:orange"&gt;http://www.livejournal.com/userpic/######/######&lt;/span&gt;";
   $pic[size($pic)]="&lt;span style="background-color:orange"&gt;http://www.livejournal.com/userpic/######/######&lt;/span&gt;";
   $pic[size($pic)]="&lt;span style="background-color:orange"&gt;http://www.livejournal.com/userpic/######/######&lt;/span&gt;";
   $pic[size($pic)]="&lt;span style="background-color:orange"&gt;http://www.livejournal.com/userpic/######/######&lt;/span&gt;";

   var int randpic;
   $randpic = rand(0, ((size $pic) - 1));

    $this-&amp;gt;lay_print_sidebox_top($*text_sidebox_profile_title);
    """
      &amp;lt;div class="sideboxContent" id="profile"&amp;gt;
        &amp;lt;div&amp;gt;&amp;lt;a href="$*SITEROOT/allpics.bml?user=$.journal.username"&amp;gt;&amp;lt;img src="$pic[$randpic]" alt="" border="0" class="profile-userpic" /&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/div&amp;gt;
        &amp;lt;div&amp;gt;&amp;lt;span class="profile-label"&amp;gt;$*text_sidebox_profile_userlabel&amp;lt;/span&amp;gt;&amp;lt;span class="profile-content"&amp;gt;$.journal&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;
        &amp;lt;div&amp;gt;&amp;lt;span class="profile-label"&amp;gt;$*text_sidebox_profile_namelabel&amp;lt;/span&amp;gt;&amp;lt;span class="profile-content"&amp;gt;$.journal.name&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;
        """; 
        if ($*text_sidebox_profile_info!="") { """&amp;lt;div&amp;gt;"""; print $*text_sidebox_profile_info; """&amp;lt;/div&amp;gt;"""; }
        """
       &amp;lt;/div&amp;gt; &amp;lt;!--sidebox-profile--&amp;gt;
    """;
    $this-&amp;gt;lay_print_sidebox_bottom();
}&lt;/pre&gt;

&lt;p&gt;In the above code, you need to replace &lt;span style="background-color:orange"&gt;http://www.livejournal.com/userpic/######/######&lt;/span&gt; (for each) with the user pictures that you'd like to be randomized. Please notice that, though six user pictures are used here, there is no maximum or minimum to the number of user pictures that you can use.&lt;/p&gt;

&lt;p&gt;Once you have finished adding the code above, you can save your theme layer by clicking on the "Save &amp; Compile" button at the top of the screen. Your changes will not take effect until you apply your theme layer by selecting it on the &lt;a href="http://www.livejournal.com/customize/"&gt;Customize Journal&lt;/a&gt; page.&lt;/p&gt;

&lt;center&gt;&lt;table cellpadding="2" border="0" width="100%" cellspacing="0"&gt;&lt;tr&gt;&lt;td style="text-align: left; background: #a9a9a9;" valign="top" width="30%"&gt;&lt;span style="color: #000000;"&gt;Additional References:&lt;/span&gt;&lt;/td&gt;&lt;td style="text-align: left; background: #a9a9a9;"&gt;&lt;li&gt;&lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=176"&gt;What are the different S2 layer types?&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/530.html"&gt;S2 View Types&lt;/a&gt;&lt;/li&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/center&gt;

&lt;p style="font-size: smaller;"&gt;Originally based on coding from &lt;span class='ljuser' lj:user='dianna_wills' style='white-space: nowrap;'&gt;&lt;a href='http://dianna-wills.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://dianna-wills.livejournal.com/'&gt;&lt;b&gt;dianna_wills&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;, original tutorial written by &lt;span class='ljuser' lj:user='aajwind' style='white-space: nowrap; text-decoration: line-through;'&gt;&lt;a href='http://aajwind.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://aajwind.livejournal.com/'&gt;&lt;b&gt;aajwind&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;.  Converted into a Smooth Sailing tutorial by &lt;span class='ljuser' lj:user='draconid' style='white-space: nowrap;'&gt;&lt;a href='http://draconid.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://draconid.livejournal.com/'&gt;&lt;b&gt;draconid&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;.&lt;/p&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:46027</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/46027.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=46027"/>
    <title>[paidaccount] [all] Adding a Navigation Strip</title>
    <published>2006-04-07T02:33:51Z</published>
    <updated>2006-04-12T23:38:00Z</updated>
    <category term="navigation strip"/>
    <category term="paid accounts only"/>
    <content type="html">&lt;div style="background-color: #ff0000; color: #ffffff;"&gt;&lt;center style="font-weight: bold;"&gt;Paid Accounts Only&lt;/center&gt;The following tutorial requires creating and editing a custom style, which in turn requires a paid, permanent, or early adopter account.  Please read &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=131"&gt;What are the paid account benefits?&lt;/a&gt; and &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=21"&gt;How do I buy a paid account?&lt;/a&gt; to learn about the paid account benefits and how to buy a paid account.&lt;/div&gt;

&lt;p&gt;LiveJournal provides the &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=264"&gt;Navigation Strip&lt;/a&gt; for easy access to common site features. All system styles automatically support it, however, if you have a custom layer, you may need to include the built-in function for printing the Navigation Strip in your layer in order for it to display. This function will need to be added immediately after the &amp;lt;body&amp;gt; tag of the HTML structure.&lt;/p&gt;

&lt;p&gt;In your custom layout or theme layer (depending on which you are using) locate the function Page::print(). Within it, you will find a  tag, which may look similar to the following:&lt;/p&gt;

&lt;p style="background-color: #f5deb3; color: #000000;"&gt;&amp;lt;body bgcolor="$*page_back" text="$*entry_text" link="$*page_link" vlink="$*page_vlink" alink="$*page_alink"&amp;gt;&lt;br /&gt;&amp;lt;div align="center"&amp;gt;&lt;/p&gt;

&lt;p&gt;Immediately after the body tag, you will want to close off the string, add &lt;span style="background-color: #ffff00; color: #000000;"&gt;$this-&amp;gt;print_control_strip();&lt;/span&gt;, and then start the string again if necessary.  This will make the code look something like this:&lt;/p&gt;

&lt;p style="background-color: #f5deb3; color: #000000;"&gt;&amp;lt;body bgcolor="$*page_back" text="$*entry_text" link="$*page_link" vlink="$*page_vlink" alink="$*page_alink"&amp;gt; &lt;span style="background-color: #ffff00; color: #000000;"&gt;""";&lt;br /&gt;
$this-&amp;gt;print_control_strip();&lt;br /&gt;
"""&lt;/span&gt;&lt;br /&gt;
&amp;lt;div align="center"&amp;gt;&lt;/p&gt;

&lt;p&gt;Should you wish to add extra HTML or CSS that would appear if the Navigation Strip is displayed, you can use the function &lt;span style="background-color: #ffff00; color: #000000;"&gt;viewer_sees_control_strip()&lt;/span&gt;, like this:&lt;/p&gt;

&lt;p style="background-color: #f5deb3; color: #000000;"&gt;if (viewer_sees_control_strip()) {&lt;br /&gt;
"""&lt;span style="background-color: orange"&gt;Extra HTML or CSS to display, if the navigation strip is displayed&lt;/span&gt;""";&lt;br /&gt;
}&lt;/p&gt;

&lt;p&gt;You will also need to enable the Navigation Strip in your &lt;a href="http://www.livejournal.com/editinfo.bml"&gt;Edit Personal Information&lt;/a&gt; page before it will appear on your journal.&lt;/p&gt;

&lt;p&gt;&lt;span style="font-size: smaller;"&gt;Contributed by &lt;span class='ljuser' lj:user='isabeau' style='white-space: nowrap;'&gt;&lt;a href='http://isabeau.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://isabeau.livejournal.com/'&gt;&lt;b&gt;isabeau&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; and &lt;span class='ljuser' lj:user='camomiletea' style='white-space: nowrap;'&gt;&lt;a href='http://camomiletea.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://camomiletea.livejournal.com/'&gt;&lt;b&gt;camomiletea&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;.&lt;/span&gt;&lt;/p&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:45645</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/45645.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=45645"/>
    <title>[paidaccount] Printing Trusted Entry Content</title>
    <published>2006-03-27T21:17:25Z</published>
    <updated>2007-07-13T03:38:43Z</updated>
    <category term="- all styles"/>
    <category term="paid accounts only"/>
    <category term="printing trusted content"/>
    <content type="html">&lt;div style="background-color: #ff0000; color: #ffffff;"&gt;&lt;center style="font-weight: bold;"&gt;Paid Accounts Only&lt;/center&gt;The following tutorial requires creating and editing a custom style, which in turn requires a paid, permanent, or early adopter account.  Please read &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=131"&gt;What are the paid account benefits?&lt;/a&gt; and &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=21"&gt;How do I buy a paid account?&lt;/a&gt; to learn about the paid account benefits and how to buy a paid account.&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;This tutorial will explain how to change custom layers to function with embedded media such as videos from external sites and LiveJournal's Flash-based voice post player. These currently contain elements that will not work with some custom S2 layout or theme layers; you will need to edit the code to replace $e.text with $e-&amp;gt;print_text().&lt;br /&gt;&lt;br /&gt;The first step is to edit the layer -- either the layout layer if you are using a fully custom style, or the theme layer if you are using a modified system style.  For the purposes of this tutorial, you may find it easier to copy the layer code into a separate text editor so that you can do a text search for "$e.text".&lt;br /&gt;&lt;br /&gt;The exact code will vary by style, but it may look something like this:&lt;br /&gt;&lt;br /&gt;&lt;div style="background-color: #f5deb3; color: #000000;"&gt;&amp;lt;div class="entry"&amp;gt;&lt;span style="background-color: #ffff00; color: #000000;"&gt;$e.text&lt;/span&gt;&amp;lt;/div&amp;gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;You will want to replace this with:&lt;br /&gt;&lt;br /&gt;&lt;div style="background-color: #f5deb3; color: #000000;"&gt;&amp;lt;div class="entry"&amp;gt;&lt;span style="background-color: #ffff00; color: #000000;"&gt;"""; $e-&amp;gt;print_text(); """&lt;/span&gt;&amp;lt;/div&amp;gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;This will only work if the $e.text variable is inside a string block.  If the line containing $e.text looks like one of the following:&lt;br /&gt;&lt;br /&gt;&lt;span style="background-color: #f5deb3; color: #000000;"&gt;"""$e.text""";&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="background-color: #f5deb3; color: #000000;"&gt;"$e.text";&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="background-color: #f5deb3; color: #000000;"&gt;print $e.text;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;you will want to replace it with:&lt;br /&gt;&lt;br /&gt;&lt;div style="background-color: #f5deb3; color: #000000;"&gt;$e-&amp;gt;print_text();&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Note that the $e.text variable may occur multiple times in the layer, depending on how the code is set up.  You will need to replace each one.&lt;br /&gt;&lt;br /&gt;In some situations, the layer will use $.text instead of $e.text.  In this case, you will want to follow the above instructions but use &lt;span style="background-color: #87cefa; color: #000000;"&gt;$this-&amp;gt;print_text()&lt;/span&gt; in place of &lt;span style="background-color: #87cefa; color: #000000;"&gt;$e-&amp;gt;print_text()&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;Lastly, if your theme or layout layer doesn't just print $e.text (or $.text) as it comes but modifies the content somehow, there is a $.text_must_print_trusted flag that will indicate whether the entry contains embedded media that needs to be printed by the print_text function.  You can use this to perform your own functions on the entry text whenever possible:&lt;br /&gt;&lt;br /&gt;&lt;div style="background-color: #f5deb3; color: #000000;"&gt;if ($e.text_must_print_trusted) { &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$e-&amp;gt;print_text(); &lt;br /&gt;} else { &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#whatever you are doing with $e.text here &lt;br /&gt;}&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Once you have made the necessary changes, you will need to paste the changed code back into the S2 layer editor, and compile to save the changes.&lt;br /&gt;&lt;br /&gt;&lt;center&gt;&lt;table cellpadding="2" border="0" width="100%" cellspacing="0"&gt;&lt;tr&gt;&lt;td style="text-align: left; background: #a9a9a9;" valign="top" width="30%"&gt;&lt;span style="color: #000000;"&gt;Additional References:&lt;/span&gt;&lt;/td&gt;&lt;td style="text-align: left; background: #a9a9a9;"&gt;&lt;li&gt;&lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=176"&gt;What are the different S2 layer types?&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=172"&gt;Where can I learn more about advanced S2 customization?&lt;/a&gt;&lt;/li&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/center&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: smaller;"&gt;Contributed by &lt;span class='ljuser' lj:user='isabeau' style='white-space: nowrap;'&gt;&lt;a href='http://isabeau.livejournal.com/profile'&gt;&lt;img src='http://p-stat.livejournal.com/img/userinfo.gif' alt='[info]' width='17' height='17' style='vertical-align: bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='http://isabeau.livejournal.com/'&gt;&lt;b&gt;isabeau&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;.&lt;/span&gt;</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:45552</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/45552.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=45552"/>
    <title>[s2 layouts by feature] Permanent link to entry</title>
    <published>2006-03-23T01:04:07Z</published>
    <updated>2006-09-19T03:25:44Z</updated>
    <category term="$ list of features"/>
    <content type="html">[ &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=171"&gt;Go Back&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5507.html"&gt;List of Layouts&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5740.html"&gt;List of Features&lt;/a&gt; ]&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;
&lt;li&gt; &lt;a href="http://www.livejournal.com/community/s2howto/29834.html"&gt;3 Column&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a href="http://www.livejournal.com/community/s2howto/29231.html"&gt;A Novel Conundrum&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a href="http://www.livejournal.com/community/s2howto/6124.html"&gt;A Sturdy Gesture&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/47332.html"&gt;Bloggish&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a href="http://www.livejournal.com/community/s2howto/6372.html"&gt;Classic&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a href="http://www.livejournal.com/community/s2howto/6600.html"&gt;Clean and Simple&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a href="http://www.livejournal.com/community/s2howto/29990.html"&gt;Cuteness Attack&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a href="http://www.livejournal.com/community/s2howto/7047.html"&gt;Digital Multiplex (OSWD)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;* &lt;a href="http://www.livejournal.com/community/s2howto/50424.html"&gt;Expressive&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a href="http://www.livejournal.com/community/s2howto/7251.html"&gt;Generator&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a href="http://www.livejournal.com/community/s2howto/37177.html"&gt;Gradient Strip&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a href="http://www.livejournal.com/community/s2howto/8274.html"&gt;Opal (Libra OSWD)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a href="http://www.livejournal.com/community/s2howto/40221.html"&gt;Smooth Sailing&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a href="http://www.livejournal.com/community/s2howto/28819.html"&gt;Tranquility II&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; &lt;a href="http://www.livejournal.com/community/s2howto/9254.html"&gt;Unearthed&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;* Layouts denoted with an asterisk are usable only by selected account holders.</content>
  </entry>
  <entry>
    <id>urn:lj:livejournal.com:atom1:s2howto:44983</id>
    <link rel="alternate" type="text/html" href="http://community.livejournal.com/s2howto/44983.html"/>
    <link rel="self" type="text/xml" href="http://community.livejournal.com/s2howto/data/atom/?itemid=44983"/>
    <title>[s2 layouts by feature] Timezone Support</title>
    <published>2006-03-09T05:17:55Z</published>
    <updated>2006-09-19T03:38:31Z</updated>
    <category term="$ list of features"/>
    <content type="html">[ &lt;a href="http://www.livejournal.com/support/faqbrowse.bml?faqid=171"&gt;Go Back&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5507.html"&gt;List of Layouts&lt;/a&gt; | &lt;a href="http://www.livejournal.com/community/s2howto/5740.html"&gt;List of Features&lt;/a&gt; ]&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/29834.html"&gt;3 Column&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/29231.html"&gt;A Novel Conundrum&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/6124.html"&gt;A Sturdy Gesture&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://community.livejournal.com/s2howto/47332.html"&gt;Bloggish&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/6372.html"&gt;Classic&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/6600.html"&gt;Clean and Simple&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;* &lt;a href="http://www.livejournal.com/community/s2howto/6804.html"&gt;Component&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/29990.html"&gt;Cuteness Attack&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/36416.html"&gt;Dear Diary&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/7047.html"&gt;Digital Multiplex (OSWD)&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;* &lt;a href="http://www.livejournal.com/community/s2howto/50424.html"&gt;Expressive&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/28606.html"&gt;Flexible Squares&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/7251.html"&gt;Generator&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/37177.html"&gt;Gradient Strip&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/7587.html"&gt;Haven&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/7915.html"&gt;Magazine&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/28979.html"&gt;Nebula&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/8179.html"&gt;Notepad&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/8274.html"&gt;Opal (Libra OSWD)&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/8628.html"&gt;Punquin Elegant&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/40132.html"&gt;Quite Lickable&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/40221.html"&gt;Smooth Sailing&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/8754.html"&gt;Tabular Indent&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/28819.html"&gt;Tranquility II&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;* &lt;a href="http://www.livejournal.com/community/s2howto/8969.html"&gt;The Boxer&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/9254.html"&gt;Unearthed&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="http://www.livejournal.com/community/s2howto/9551.html"&gt;Variable Flow&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;* Layouts denoted with an asterisk are usable only by selected account holders.</content>
  </entry>
</feed>
