<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dw="https://www.dreamwidth.org">
  <id>tag:dreamwidth.org,2009-05-02:195103</id>
  <title>Dreamwidth style system discussion</title>
  <subtitle>Dreamwidth style system discussion</subtitle>
  <author>
    <name>Dreamwidth style system discussion</name>
  </author>
  <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/"/>
  <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom"/>
  <updated>2026-01-27T17:53:31Z</updated>
  <dw:journal username="style_system" type="community"/>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:167240</id>
    <author>
      <name>wishfulfilled</name>
    </author>
    <dw:poster user="wishfulfilled"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/167240.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=167240"/>
    <title>Navlinks Issue With Custom Override</title>
    <published>2026-01-27T17:53:31Z</published>
    <updated>2026-01-27T17:53:31Z</updated>
    <category term="page:navigation"/>
    <category term="layer:theme layer"/>
    <category term="module:navlinks"/>
    <dw:security>public</dw:security>
    <dw:reply-count>2</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='wishfulfilled' style='white-space: nowrap;' class='ljuser'&gt;&lt;a href='https://wishfulfilled.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://wishfulfilled.dreamwidth.org/'&gt;&lt;b&gt;wishfulfilled&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;So I'm trying to add the Previous/Next links to my Navlinks Module using a code that was previously posted here, but I'm having issues with the Previous link showing up regardless of whether or not there's previous entries (I'm testing on this journal with public entries for reference).&lt;br /&gt;&lt;br /&gt;The code I'm using in my theme layer is this:&lt;br /&gt;&lt;textarea&gt;# code by ninetydegrees/foxfirefey
function print_module_navlinks() {
 
  var Page p = get_page();
  var string prev_link;
  var string next_link;
  
  if ( $p isa EntryPage ) {
      var EntryPage ep = get_page() as EntryPage;
      var Entry e = $ep.entry;
      var Link prev = $e-&amp;gt;get_link("nav_prev");
      $prev_link = """&amp;lt;a href="$prev.url"&amp;gt;$prev.caption&amp;lt;/a&amp;gt;""";
      var Link next = $e-&amp;gt;get_link("nav_next");
      $next_link = """&amp;lt;a href="$next.url"&amp;gt;$next.caption&amp;lt;/a&amp;gt;""";
  } elseif ( $p isa DayPage ) {
      var DayPage dp = get_page() as DayPage;
      $prev_link = """&amp;lt;a href="$dp.prev_url"&amp;gt;$*text_day_prev&amp;lt;/a&amp;gt;""";
      $next_link = """&amp;lt;a href="$dp.next_url"&amp;gt;$*text_day_next&amp;lt;/a&amp;gt;""";
  } elseif ( $p isa RecentPage ) {
      var RecentPage rp = get_page() as RecentPage;
      if ( $rp.nav.backward_count &amp;gt; 0 ) { 
          $prev_link = """&amp;lt;a href="$rp.nav.backward_url"&amp;gt;""" + get_plural_phrase( $rp.nav.backward_count, "text_skiplinks_back" ) + "&amp;lt;/a&amp;gt;"; 
      }
      if ( $rp.nav.forward_count &amp;gt; 0 ) { 
          $next_link = """&amp;lt;a href="$rp.nav.forward_url"&amp;gt;""" + get_plural_phrase( $rp.nav.forward_count, "text_skiplinks_forward" ) + "&amp;lt;/a&amp;gt;"; 
      }
  } elseif ( $p isa MonthPage ) {
      var MonthPage mp = get_page() as MonthPage;
  	if ($mp.prev_url != "") { $prev_link = "&amp;lt;a href='$mp.prev_url'&amp;gt;Previous&amp;lt;/a&amp;gt;"; }
  	if ($mp.next_url != "") { $next_link = "&amp;lt;a href='$mp.next_url'&amp;gt;Next&amp;lt;/a&amp;gt;"; }
  }

  var string[] navlinks_order = [];
  var string{} navlinks_urls = {};
  var string{} navlinks_text = {};
 
  $navlinks_order =
    [
        "entries",
        "archive",
        "read",
        "profile",
    ];
 
 $navlinks_urls =
    {   "profile" =&amp;gt; "$p.base_url/profile",
        "entries" =&amp;gt; "$p.base_url",  
        "archive" =&amp;gt; "$p.base_url/archive",
        "read" =&amp;gt; "$p.base_url/read",

        
    };
 
 $navlinks_text =
    {   "profile" =&amp;gt; "Profile",
        "archive" =&amp;gt; "Archive",        
        "read" =&amp;gt; "Read",        
        "entries" =&amp;gt; "Recent",      
        
    };

 
    open_module("navlinks", "", "");
    var string[] links = [];
    
    if ( $prev_link ) {
        $links[size $links] = $prev_link;
    }    
    
    foreach var string k ($navlinks_order) {
        if ($navlinks_urls{$k} != "") {
            var string css = """ class="$k" """;
            if ($p.view == $k) { $css = """ class="current $k" """; }
            $links[size $links] = """&amp;lt;a href="$navlinks_urls{$k}"$css&amp;gt;$navlinks_text{$k}&amp;lt;/a&amp;gt;""";
        }
    }
    
    if ( $next_link ) {
        $links[size $links] = $next_link;
    }
     
    
    print_module_list($links);
    close_module();
}&lt;/textarea&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=167240" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:150532</id>
    <author>
      <name>london_fan</name>
    </author>
    <dw:poster user="london_fan"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/150532.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=150532"/>
    <title>[Not exactly solved, but circumvented for now] Custom metadata issues (metadata displaying twice)</title>
    <published>2022-11-09T15:06:40Z</published>
    <updated>2022-11-19T23:14:50Z</updated>
    <category term="layer:theme layer"/>
    <category term="entries:tags"/>
    <category term="entries:metadata"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='london_fan' style='white-space: nowrap;' class='ljuser'&gt;&lt;a href='https://london-fan.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://london-fan.dreamwidth.org/'&gt;&lt;b&gt;london_fan&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Hello lovely and helpful people here, &lt;br /&gt;&lt;br /&gt;ever since I started using a genuine Dreamwidth layout I've been using &lt;a href="https://style-system.dreamwidth.org/77811.html"&gt;this tutorial&lt;/a&gt; from &lt;span style='white-space: nowrap;'&gt;&lt;a href='https://style-system.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/community.png' alt='[community profile] ' width='16' height='16' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://style-system.dreamwidth.org/'&gt;&lt;b&gt;style_system&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; to display the metadata with the mood theme picture on the left side of the metadata, including the tags. The code is working perfectly in general! &lt;br /&gt;&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://style-system.dreamwidth.org/150532.html#cutid1"&gt;However, there is an issue...&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;u&gt;ADDENDUM (20th November 2022):&lt;/u&gt; &lt;br /&gt;Since I got no comments here so far, I tried something else and implemented some old LJ tutorial and matching CSS I have used there for many years. It works perfectly on Dreamwidth, but eliminates Dreamwidth's unique tags navigation feature. Since this workaround is okay for my needs, I will consider the problem solved. However, if anyone still wants to tackle and fix this issue here with the DW tutorial, I'd still appreciate it. Thank you!&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=150532" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:125741</id>
    <author>
      <name>Raederle</name>
    </author>
    <dw:poster user="seleneheart"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/125741.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=125741"/>
    <title>Username and Community Name on Reading Page</title>
    <published>2017-05-13T14:19:14Z</published>
    <updated>2017-05-13T14:19:14Z</updated>
    <category term="layer:theme layer"/>
    <category term="layout:importing or imported from"/>
    <category term="username:icon"/>
    <dw:security>public</dw:security>
    <dw:reply-count>9</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='seleneheart' style='white-space: nowrap;' class='ljuser'&gt;&lt;a href='https://seleneheart.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://seleneheart.dreamwidth.org/'&gt;&lt;b&gt;seleneheart&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I have an imported Flexible Squares layout, but I can't tell who is who on my reading page here on DW. On LJ, the user name or community would show up underneath the userpic. What string of code in which layer will allow that to show up?&lt;br /&gt;&lt;br /&gt;I presume it's being overwritten by something in DW layers, or because of the difference in naming between 'friends' on LJ and 'reading' on DW, it isn't showing up correctly.&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=125741" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:107253</id>
    <author>
      <name>♡</name>
    </author>
    <dw:poster user="ex_awakened208"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/107253.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=107253"/>
    <title>Removing the year from month titles on Year page.</title>
    <published>2014-01-28T20:01:36Z</published>
    <updated>2014-01-28T20:01:36Z</updated>
    <category term="layer:theme layer"/>
    <category term="pageview:archive"/>
    <dw:security>public</dw:security>
    <dw:reply-count>2</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='ex_awakened208' style='white-space: nowrap; text-decoration: line-through;' class='ljuser'&gt;&lt;a href='https://ex-awakened208.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://ex-awakened208.dreamwidth.org/'&gt;&lt;b&gt;ex_awakened208&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I want the months on the Year page's calendar to not have the year at the end of them. For example, I want them to say "March" instead of "March 2014". How would I do that using a theme layer?&lt;br /&gt;&lt;br /&gt;Thanks in advance!&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=107253" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:88462</id>
    <author>
      <name>♡</name>
    </author>
    <dw:poster user="ex_awakened208"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/88462.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=88462"/>
    <title>Putting previous and next links with the other navigation links.</title>
    <published>2012-12-17T14:09:14Z</published>
    <updated>2012-12-17T14:09:14Z</updated>
    <category term="page:navigation"/>
    <category term="layer:theme layer"/>
    <category term="module:navlinks"/>
    <dw:security>public</dw:security>
    <dw:reply-count>19</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='ex_awakened208' style='white-space: nowrap; text-decoration: line-through;' class='ljuser'&gt;&lt;a href='https://ex-awakened208.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://ex-awakened208.dreamwidth.org/'&gt;&lt;b&gt;ex_awakened208&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Would it be possible to merge the "previous" and "next" links with the main navigation that has the "recent entries"/"read page"/"tags", etc links in it?&lt;br /&gt;&lt;br /&gt;The end result I am looking for is a header navigation that goes in this order:&lt;br /&gt;&lt;br /&gt;previous | recent entries | archive | read | tags | info | next&lt;br /&gt;&lt;br /&gt;I would prefer if the previous/next links only show up if there are actually entries before/afterward.&lt;br /&gt;&lt;br /&gt;I hope that was clear enough! Thanks in advance.&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=88462" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:87748</id>
    <author>
      <name>MM Writes</name>
    </author>
    <dw:poster user="marahmarie"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/87748.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=87748"/>
    <title>Sidebar cuts off on .lj-view-entry,.lj-view-archive and.lj-view-month using Flexible Squares on DW</title>
    <published>2012-11-17T01:29:48Z</published>
    <updated>2012-11-18T04:00:23Z</updated>
    <category term="modules"/>
    <category term="layer:theme layer"/>
    <category term="styles"/>
    <category term="layout:importing or imported from"/>
    <category term="layer"/>
    <dw:mood>eh</dw:mood>
    <dw:security>public</dw:security>
    <dw:reply-count>2</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='marahmarie' style='white-space: nowrap;' class='ljuser'&gt;&lt;a href='https://marahmarie.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://marahmarie.dreamwidth.org/'&gt;&lt;b&gt;marahmarie&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;ETA: SOLVED.&lt;/b&gt; With this layout, deleting &lt;code&gt;display:none&lt;/code&gt; from &lt;code&gt;.clearfoot&lt;/code&gt; fixes things right up (yes, the design seems to be inadvertently coded so that it cuts off the sidebar in the three views mentioned in my post title).&lt;/p&gt;

&lt;p&gt;Like in this &lt;a href="http://css-code.dreamwidth.org/2147.html"&gt;example&lt;/a&gt;. Another user in this community had the same problem months ago (not with this style, actually a Core 2 style) and I was one of the ones who helped them, though I wasn't of much help because nothing I tried or suggested at the time really worked. Can't help myself now, either. Any suggestions?&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=87748" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:83784</id>
    <author>
      <name>♡</name>
    </author>
    <dw:poster user="ex_awakened208"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/83784.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=83784"/>
    <title>Replacing Day of Week Text With an Image</title>
    <published>2012-08-19T07:24:24Z</published>
    <updated>2014-03-12T06:37:49Z</updated>
    <category term="entries:date and time"/>
    <category term="layer:theme layer"/>
    <dw:security>public</dw:security>
    <dw:reply-count>2</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='ex_awakened208' style='white-space: nowrap; text-decoration: line-through;' class='ljuser'&gt;&lt;a href='https://ex-awakened208.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://ex-awakened208.dreamwidth.org/'&gt;&lt;b&gt;ex_awakened208&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;In a date format that includes the day of the week in it, does anyone know how to replace the name of the day of the week with an image. For example, if I wanted to replace the text "Sat" with this image: &lt;img src="http://i60.tinypic.com/24l1y01.jpg" alt="a circle with the text &amp;quot;Sat&amp;quot; on it"&gt;&lt;br /&gt;&lt;br /&gt;This is the custom format I'm using for the date on the journal in question. Applied through theme layer.&lt;br /&gt;&lt;br /&gt;&lt;textarea&gt;set entry_date_format = "short";
set lang_fmt_date_short = "%%da%% %%mm%%/%%dd%%/%%yy%%";&lt;/textarea&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=83784" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:80381</id>
    <author>
      <name>♡</name>
    </author>
    <dw:poster user="ex_awakened208"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/80381.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=80381"/>
    <title>Question About Adding Divs</title>
    <published>2012-05-03T08:52:36Z</published>
    <updated>2012-05-03T08:52:36Z</updated>
    <category term="entries:date and time"/>
    <category term="layer:core2"/>
    <category term="layer:theme layer"/>
    <dw:security>public</dw:security>
    <dw:reply-count>0</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='ex_awakened208' style='white-space: nowrap; text-decoration: line-through;' class='ljuser'&gt;&lt;a href='https://ex-awakened208.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://ex-awakened208.dreamwidth.org/'&gt;&lt;b&gt;ex_awakened208&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If I'm using a code like this to change my date format, is there a way to add classes to the heart symbols I'm using as separators?&lt;br /&gt;&lt;br /&gt;The code:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;set entry_date_format = "short";&lt;br /&gt;set lang_fmt_date_short = "%%da%% ❤ %%mm%%/%%d%%/%%yy%%";&lt;br /&gt;&lt;br /&gt;set entry_time_format = "short";&lt;br /&gt;set lang_fmt_time_short = "❤ %%hh%%:%%min%% %%a%%m";&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Any help is appreciated!&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=80381" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:67603</id>
    <author>
      <name>♡</name>
    </author>
    <dw:poster user="ex_awakened208"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/67603.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=67603"/>
    <title>Removing links from date and removing (no subject) lines.</title>
    <published>2012-01-10T07:50:56Z</published>
    <updated>2012-01-10T07:53:08Z</updated>
    <category term="layer:theme layer"/>
    <category term="entries:date and time"/>
    <dw:security>public</dw:security>
    <dw:reply-count>7</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='ex_awakened208' style='white-space: nowrap; text-decoration: line-through;' class='ljuser'&gt;&lt;a href='https://ex-awakened208.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://ex-awakened208.dreamwidth.org/'&gt;&lt;b&gt;ex_awakened208&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;1) Is there a way I can remove the links from the date on Transmogrified?&lt;br /&gt;&lt;br /&gt;2) I would also like to know how to remove "(no subject)" from entries and comments that do not have a subject by editing layers. (I know there is a way to do it through CSS, but I don't like the slight space it leaves behind.)&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=67603" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:52292</id>
    <author>
      <name>♡</name>
    </author>
    <dw:poster user="ex_awakened208"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/52292.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=52292"/>
    <title>Date Format in Transmogrified</title>
    <published>2011-08-03T09:02:58Z</published>
    <updated>2011-08-03T09:07:37Z</updated>
    <category term="layer:core2"/>
    <category term="entries:date and time"/>
    <category term="layout:transmogrified"/>
    <category term="layer:theme layer"/>
    <dw:security>public</dw:security>
    <dw:reply-count>2</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='ex_awakened208' style='white-space: nowrap; text-decoration: line-through;' class='ljuser'&gt;&lt;a href='https://ex-awakened208.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://ex-awakened208.dreamwidth.org/'&gt;&lt;b&gt;ex_awakened208&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;What would I need to add to my layout layer to make the date format show up as "Wednesday • 08/03/11 • 5:00 am"? Any help is appreciated! Thanks in advance.&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=52292" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:41643</id>
    <author>
      <name>Barefoot Appalachian Lil' Abner Barbie</name>
    </author>
    <dw:poster user="alchemy"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/41643.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=41643"/>
    <title>Additional custom content modules?</title>
    <published>2011-01-23T18:58:39Z</published>
    <updated>2011-01-23T18:58:39Z</updated>
    <category term="layout:tabula rasa"/>
    <category term="layer:theme layer"/>
    <category term="module:custom"/>
    <category term="layer:core2"/>
    <dw:security>public</dw:security>
    <dw:reply-count>11</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='alchemy' style='white-space: nowrap;' class='ljuser'&gt;&lt;a href='https://alchemy.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://alchemy.dreamwidth.org/'&gt;&lt;b&gt;alchemy&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I'm currently working on a layout that requires use of two custom content modules in Tabula Rasa. I've been so used to working with LJ's S2 that it didn't occur to me while I was designing that DW would only offer one custom text module as standard in the wizard.&lt;br /&gt;&lt;br /&gt;Does anyone know the code for adding additional custom content modules in the theme layer? Please note that I am one of those people who is very proficient in CSS but not so great at S2 or other types of coding, so step by step instructions would be a godsend.&lt;br /&gt;&lt;br /&gt;Thanks in advance!&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=41643" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:41263</id>
    <author>
      <name>Jana</name>
    </author>
    <dw:poster user="jana"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/41263.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=41263"/>
    <title>[SOLVED] Filter metadata</title>
    <published>2011-01-21T17:34:26Z</published>
    <updated>2011-01-23T11:09:17Z</updated>
    <category term="entries:metadata"/>
    <category term="entries:date and time"/>
    <category term="layer:core2"/>
    <category term="layout:tranquility"/>
    <category term="layer:theme layer"/>
    <category term="layout:tabula rasa"/>
    <dw:security>public</dw:security>
    <dw:reply-count>10</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='jana' style='white-space: nowrap;' class='ljuser'&gt;&lt;a href='https://jana.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://jana.dreamwidth.org/'&gt;&lt;b&gt;jana&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I'd like to move the filter meta data to the .datetime span - if that's possible, that is. So, instead of '4 December 2010 at 13:00' it should display something like '4 December 2010 at 13:00 in *some filter(s)*'.&lt;br /&gt;&lt;br /&gt;What do I have to change in/add to my theme layer? &lt;a href="http://style-system.dreamwidth.org/41263.html?thread=248367#cmt248367"&gt;Solution can be found here&lt;/a&gt; :)&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=41263" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:39294</id>
    <author>
      <name>Baggyeyes</name>
    </author>
    <dw:poster user="baggyeyes"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/39294.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=39294"/>
    <title>A question about Styles</title>
    <published>2011-01-05T01:42:22Z</published>
    <updated>2011-01-05T01:42:22Z</updated>
    <category term="$account level:paid or premium"/>
    <category term="styles"/>
    <category term="layer:theme layer"/>
    <dw:security>public</dw:security>
    <dw:reply-count>7</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='baggyeyes' style='white-space: nowrap;' class='ljuser'&gt;&lt;a href='https://baggyeyes.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://baggyeyes.dreamwidth.org/'&gt;&lt;b&gt;baggyeyes&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Hey,&lt;br /&gt;I have a premium paid account, and just tried to make an additional style. I was given a helpful (?) error that said I had used up my limit of &lt;a href="http://www.dreamwidth.org/customize/advanced/styles"&gt;Styles&lt;/a&gt;. What I'd like to know is, how many styles and layers do account holders have at each level?&lt;br /&gt;&lt;br /&gt;Thanks for all the fish!&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=39294" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:15627</id>
    <author>
      <name>Fig Newton</name>
    </author>
    <dw:poster user="fignewton"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/15627.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=15627"/>
    <title>changing tag display for core 1 style?</title>
    <published>2009-12-21T18:30:41Z</published>
    <updated>2009-12-21T18:30:41Z</updated>
    <category term="layer:core1"/>
    <category term="layer:theme layer"/>
    <category term="module:tags"/>
    <dw:security>public</dw:security>
    <dw:reply-count>7</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='fignewton' style='white-space: nowrap;' class='ljuser'&gt;&lt;a href='https://fignewton.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://fignewton.dreamwidth.org/'&gt;&lt;b&gt;fignewton&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Hi!&lt;br /&gt;&lt;br /&gt;I joined DW when it was closed beta and used an imported core 1 style: Mixit, Linus and Lucy - for &lt;span style='white-space: nowrap;'&gt;&lt;a href='https://sg1genrecs.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/community.png' alt='[community profile] ' width='16' height='16' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://sg1genrecs.dreamwidth.org/'&gt;&lt;b&gt;sg1genrecs&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;. I've had various tweakings done on the layout (with help!) and I really don't want to change it.&lt;br /&gt;&lt;br /&gt;On the other hand, I very much would like to change the tag list to multilevel - for a rec comm with so many different tags, a multilevel would make it much easier for people to find what they're looking for.&lt;br /&gt;&lt;br /&gt;Does anyone know if it's possible to add the multilevel tag option to a core 1 style? And if so, could you please hold my hand and walk me very slowly through it? :)&lt;br /&gt;&lt;br /&gt;Thanks!&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=15627" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:13231</id>
    <author>
      <name>Lyssa C</name>
    </author>
    <dw:poster user="lyssac"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/13231.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=13231"/>
    <title>Custom Style - CSS issues</title>
    <published>2009-10-30T16:24:58Z</published>
    <updated>2009-10-30T16:24:58Z</updated>
    <category term="modules:section:three"/>
    <category term="layer:core2"/>
    <category term="module:navlinks"/>
    <category term="module:syndicate"/>
    <category term="layer:theme layer"/>
    <category term="browser issues"/>
    <dw:security>public</dw:security>
    <dw:reply-count>4</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='lyssac' style='white-space: nowrap;' class='ljuser'&gt;&lt;a href='https://lyssac.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://lyssac.dreamwidth.org/'&gt;&lt;b&gt;lyssac&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I created a custom style before DW went into open beta, based on Core2, with some tweaks to my theme layer.&lt;br /&gt;&lt;br /&gt;Despite a few minor changes that I've had to make along the way as the code or my needs have changed, it works out pretty well for me, but I am having a few issues that I hope someone can help with.&lt;br /&gt;&lt;br /&gt;1) My header has the navigation links for the journal. They work fine with IE, but are just plain text in FF. I've tried fixing this with z-index:999; in every div I can think of, to no joy. Does anyone have any idea what I am doing wrong?&lt;br /&gt;&lt;br /&gt;2)Journal Syndication. I moved this to module 3 and made it part of my footer, yet, I just noticed that it only shows up on the main page. Is there a reason it's not on the entry pages?&lt;br /&gt;&lt;br /&gt;Thx.&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=13231" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:11204</id>
    <author>
      <name>彌生</name>
    </author>
    <dw:poster user="nightowl"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/11204.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=11204"/>
    <title>Retaining customization when switching layouts</title>
    <published>2009-09-22T01:16:24Z</published>
    <updated>2009-09-22T01:16:24Z</updated>
    <category term="layer:core2"/>
    <category term="layer:theme layer"/>
    <category term="layer:wizard"/>
    <dw:mood>confused</dw:mood>
    <dw:security>public</dw:security>
    <dw:reply-count>3</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='nightowl' style='white-space: nowrap;' class='ljuser'&gt;&lt;a href='https://nightowl.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://nightowl.dreamwidth.org/'&gt;&lt;b&gt;nightowl&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Hi everyone.  I was wondering if there is a way to switch to a new layout/theme, without having to redo all the customizations (for instance, I have custom text replacing the default "Leave a Comment/# comments" and other navigational links, as well as a custom text box)?  &lt;br /&gt;&lt;br /&gt;Thanks in advance for any suggestions. :)&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=11204" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:10331</id>
    <author>
      <name>Asher Rose Fox</name>
    </author>
    <dw:poster user="rosefox"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/10331.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=10331"/>
    <title>Weird error with int vs. string</title>
    <published>2009-09-13T02:33:54Z</published>
    <updated>2009-09-13T03:04:18Z</updated>
    <category term="layer:theme layer:layout"/>
    <category term="layer:core2"/>
    <category term="~font"/>
    <category term="page:text"/>
    <category term="layer:theme layer"/>
    <dw:mood>confused</dw:mood>
    <dw:security>public</dw:security>
    <dw:reply-count>12</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='rosefox' style='white-space: nowrap;' class='ljuser'&gt;&lt;a href='https://rosefox.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://rosefox.dreamwidth.org/'&gt;&lt;b&gt;rosefox&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I just tried to edit my style and got this error:&lt;br /&gt;&lt;br /&gt;&lt;tt&gt;S2 Compiler Output at Sun Sep 13 02:31:23 2009&lt;br /&gt;Error compiling layer:&lt;br /&gt;&lt;br /&gt;Compile error: line 170, column 5: Can't override property 'font_base_size' of type string with new type int.&lt;br /&gt;  S2::NodeProperty, S2/NodeProperty.pm, 120&lt;br /&gt;  S2::NodePropGroup, S2/NodePropGroup.pm, 77&lt;br /&gt;  S2::Checker, S2/Checker.pm, 374&lt;br /&gt;  S2::Compiler, S2/Compiler.pm, 34&lt;br /&gt;  &lt;br /&gt;&lt;br /&gt;Context&lt;br /&gt;&lt;br /&gt;166:     property string font_base {&lt;br /&gt;167:         des = "Default Font for the page";&lt;br /&gt;168:         note = "This font will apply to the entire page as the base font. If you set any of the other font properties below, they will override this setting for that specific part of the page.";&lt;br /&gt;169:     }&lt;br /&gt;170:     &lt;i&gt;property int font_base_size {&lt;/i&gt;&lt;br /&gt;171:         des = "Default Font Size for the page.";        &lt;br /&gt;172:     }&lt;br /&gt;173:     property string font_header_title {&lt;br /&gt;174:         des = "Font for the Header Title";&lt;/tt&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What I can't figure out is why it expects it to be a string.&lt;br /&gt;&lt;br /&gt;To confuse things further, this code has been in my style for ages and has always compiled fine before. It's completely unrelated to what I was changing. In fact, when I refresh the page and then hit "Save &amp; compile" without making any changes at all to my existing and entirely functional style, I get that error.&lt;br /&gt;&lt;br /&gt;Any idea how to fix it?&lt;br /&gt;&lt;br /&gt;EDIT: I gave up and made all the ints into strings, and it mostly seems to be working okay except that now my menu bar is a million pixels high because it's supposed to be the header font size plus 8 and of course you can't add 8 to a string. I may just have to hardcode that. GRRR.&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=10331" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:10201</id>
    <author>
      <name>mmmag</name>
    </author>
    <dw:poster user="mmmag"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/10201.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=10201"/>
    <title>Stop comment indenting after a certain depth</title>
    <published>2009-09-12T03:00:39Z</published>
    <updated>2009-09-12T03:00:39Z</updated>
    <category term="comments"/>
    <category term="layer:core2"/>
    <category term="layer:theme layer"/>
    <dw:security>public</dw:security>
    <dw:reply-count>5</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='mmmag' style='white-space: nowrap;' class='ljuser'&gt;&lt;a href='https://mmmag.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://mmmag.dreamwidth.org/'&gt;&lt;b&gt;mmmag&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;This is a theme layer modification that stops comment indenting after reaching a certain comment depth. You can also customize how much each comment will indent from its parent comment.&lt;br /&gt;&lt;span class="cut-wrapper"&gt;&lt;span style="display: none;" id="span-cuttag___1" class="cuttag"&gt;&lt;/span&gt;&lt;b class="cut-open"&gt;(&amp;nbsp;&lt;/b&gt;&lt;b class="cut-text"&gt;&lt;a href="https://style-system.dreamwidth.org/10201.html#cutid1"&gt;code under cut&lt;/a&gt;&lt;/b&gt;&lt;b class="cut-close"&gt;&amp;nbsp;)&lt;/b&gt;&lt;/span&gt;&lt;div style="display: none;" id="div-cuttag___1" aria-live="assertive"&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=10201" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:9573</id>
    <author>
      <name>V.</name>
    </author>
    <dw:poster user="aurora"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/9573.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=9573"/>
    <title>Unknown view.</title>
    <published>2009-09-10T16:07:34Z</published>
    <updated>2009-09-10T17:27:10Z</updated>
    <category term="layer:theme layer"/>
    <category term="layer:core1"/>
    <category term="module:navlinks"/>
    <dw:mood>ditzy</dw:mood>
    <dw:security>public</dw:security>
    <dw:reply-count>3</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='aurora' style='white-space: nowrap;' class='ljuser'&gt;&lt;a href='https://aurora.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://aurora.dreamwidth.org/'&gt;&lt;b&gt;aurora&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Hi! I posted this to &lt;span style='white-space: nowrap;'&gt;&lt;a href='https://getting-started.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/community.png' alt='[community profile] ' width='16' height='16' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://getting-started.dreamwidth.org/'&gt;&lt;b&gt;getting_started&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; and someone in the comments suggested I also ask for advice here:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Right now one of the links under my header (the one pointing to my DW network) is titled 'unknown view'. Does anyone know how to make it say 'network' or something like that?&lt;br /&gt;&lt;br /&gt;I'm pretty sure it can be done, cause my 'memories' link also appeared as 'unknown view' at first till some css-savvy soul posted a few lines of code that I had to insert into my stylesheet.&lt;br /&gt;&lt;br /&gt;Many thanks.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;ETA: &lt;span style='white-space: nowrap;'&gt;&lt;a href='https://av8rmike.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://av8rmike.dreamwidth.org/'&gt;&lt;b&gt;av8rmike&lt;/b&gt;&lt;/a&gt;&lt;/span&gt; figured it out! See comments for the solution (if you need it).&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=9573" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:8649</id>
    <author>
      <name>still kind of a stealthy love ninja</name>
    </author>
    <dw:poster user="zvi"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/8649.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=8649"/>
    <title>set custom_css</title>
    <published>2009-08-23T20:58:54Z</published>
    <updated>2009-08-23T20:58:54Z</updated>
    <category term="layer:theme layer"/>
    <category term="styles"/>
    <category term="layer:wizard"/>
    <category term="layer:core2"/>
    <dw:security>public</dw:security>
    <dw:reply-count>6</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='zvi' style='white-space: nowrap;' class='ljuser'&gt;&lt;a href='https://zvi.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://zvi.dreamwidth.org/'&gt;&lt;b&gt;zvi&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If I set the custom_css in a theme layer, will it be used when I create a style with the theme layer?&lt;br /&gt;&lt;br /&gt;Will I be able to alter the css in the theme via the wizard?&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=8649" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
  <entry>
    <id>tag:dreamwidth.org,2009-05-02:195103:8359</id>
    <author>
      <name>Branch</name>
    </author>
    <dw:poster user="branchandroot"/>
    <link rel="alternate" type="text/html" href="https://style-system.dreamwidth.org/8359.html"/>
    <link rel="self" type="text/xml" href="https://style-system.dreamwidth.org/data/atom/?itemid=8359"/>
    <title>Adding a snippet of css in a theme</title>
    <published>2009-08-22T01:35:24Z</published>
    <updated>2009-08-22T01:37:09Z</updated>
    <category term="layout:modish"/>
    <category term="layer:theme layer"/>
    <category term="layer:core2"/>
    <category term="stylesheet"/>
    <dw:security>public</dw:security>
    <dw:reply-count>6</dw:reply-count>
    <content type="html">Posted by: &lt;span lj:user='branchandroot' style='white-space: nowrap;' class='ljuser'&gt;&lt;a href='https://branchandroot.dreamwidth.org/profile'&gt;&lt;img src='https://www.dreamwidth.org/img/silk/identity/user.png' alt='[personal profile] ' width='17' height='17' style='vertical-align: text-bottom; border: 0; padding-right: 1px;' /&gt;&lt;/a&gt;&lt;a href='https://branchandroot.dreamwidth.org/'&gt;&lt;b&gt;branchandroot&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;So let us suppose that I'm making a theme for a layout that already uses the print_stylesheet function (a theme for Modish, in the event).  Let us further suppose that I want to add a little bit of css to this theme without copying the whole inherited stylesheet just to change one line.  Does anyone know of a good way to do this?&lt;br /&gt;&lt;br /&gt;&lt;img src="https://www.dreamwidth.org/tools/commentcount?user=style_system&amp;ditemid=8359" width="30" height="12" alt="comment count unavailable" style="vertical-align: middle;"/&gt; comments</content>
  </entry>
</feed>
