Find the layer that you added according to the tutorial, it'll have a Type of "layout". Click the edit button.
The lines you are going to want to find are in these sets of lines:
function print_entry(Page p, Entry e, Color bgcolor, Color fgcolor)
{
"""<a name="$e.journal.username$e.itemid"></a>""";
$e->print_linkbar();
# Userpic
var string userpic = "";
if ($*show_entry_userpic)
{
if ($p.view == "friends" or $p.view == "entry" or $p.view == "reply")
And:
if ($p.view == "friends" or $p.view == "entry" or $p.view == "reply")
{
var UserLite linkto;
$linkto = $e.poster;
#print "$e.poster.username";
"""<br /><a href=\"""" + $linkto->base_url() + "\">";
"<font color=\"$fgcolor\">$linkto.username</font></a>";
}
elseif ($p.journal_type == "C" and $p.view == "recent")
{
var UserLite linkto;
$linkto = $e.poster;
#print "$e.poster.username";
"""<br /><a href=\"""" + $linkto->base_url() + "\">";
"$linkto.username</a>";
}
if (($p.view == "friends" or $p.view == "entry" or $p.view == "reply") and $e.poster.username != $e.journal.username)
{
var UserLite linkto;
$linkto = $e.journal;
"""<br />[<a href=\"""" + $linkto->base_url() + "\">";
"<font color=\"$fgcolor\">$linkto.username</font></a>]";
}
You want to replace the "friends" parts (the ones inside quotes) with "read". (Yeah, keep the quotes.) Then hit the save & compile button at the top, hopefully it will save, and then your style should be working right.
no subject
Date: 2010-09-07 03:54 am (UTC)http://www.dreamwidth.org/customize/advanced/layers
Find the layer that you added according to the tutorial, it'll have a Type of "layout". Click the edit button.
The lines you are going to want to find are in these sets of lines:
And:
And:
You want to replace the "friends" parts (the ones inside quotes) with "read". (Yeah, keep the quotes.) Then hit the save & compile button at the top, hopefully it will save, and then your style should be working right.