Is there any way to align the userinfo differently depending on which page you're viewing? I'm looking for something like:
if ($p.view=="recent" or $p.view=="day" ) {
set layout_position_userinfo_entry = "right";
} else {
set layout_position_userinfo_entry = "left";
}Except of course you can't do it like that. But that's kind of the syntax I
(
Read more... )
Comments 1
if ($p.view=="recent" or $p.view=="day" ) {
$*layout_position_userinfo_entry = "right";
} else {
$*layout_position_userinfo_entry = "left";
}
Reply
Leave a comment