(Untitled)

Sep 27, 2008 21:46

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... )

userpic

Leave a comment

Comments 1

av8rmike September 29 2008, 03:45:48 UTC
Did you try:

if ($p.view=="recent" or $p.view=="day" ) {
$*layout_position_userinfo_entry = "right";
} else {
$*layout_position_userinfo_entry = "left";
}

Reply


Leave a comment

Up