I've looked through the tags here and haven't really found anything about this. I know that you can assign a sub-head to the main journal page just by typing it into the "Basics" tab in the Edit Journal Style area. But I'm wondering if there is any css that you could use to put a subhead on your friends page? I tried changing the #header-name but
(
Read more... )
function Page::lay_print_header_links() {
# Menu start
"""
\n""";
container_open("header");
container_open("header-content");
"""
\n
\n\n""";
"""
\n""";
- $*text_view_memories
""";
# Standard Journal Pages (Recent, Archive, Friends, Userinfo)
foreach var string v ($.views_order) {
var string url = $.view_url{$v};
var string text = lang_viewname($v);
var string class = "item";
if($v == $.view) {
$class = $class + " current";
}
if($v == $.views_order[0]) {
$class = $class + " first";
}
$class = " class=\"$class\"";
print """ $text""";
}
var Link memories_url = $.journal->get_link("memories");
# Memories
if($memories_url.url != "") {
println """
}
# Menu end
"""
""";
var string base_url = $.journal->base_url();
var string friends_url = $.view_url{"friends"};
if ($this isa FriendsPage) {
""" """ + $this->view_title() + """""";
} else {
""" $.global_title""";
}
"""
""";
if($this isa FriendsPage) {
"""
Crazy, Crazy friends""";
} else {
"""
$.global_subtitle""";
}
"""
""";
}The section in blue is the part I changed.
Reply
Reply
Leave a comment