May 31, 2006 10:49
I just have a few questions.
1. Since the function is currently disabled in the edit info page, is there a way to change your journal title using css?
2. Currently, my date reads like 09:49 AM. I'd like to change it to 9:49AM. Is that possible?
3. Is it possible to remove the time on entries on just your recent page?
date format,
misc,
paid accounts
Leave a comment
Comments 11
Reply
Reply
2&2 ;)
Make your theme layer viewable, please!
Reply
Reply
http://www.livejournal.com/customize/advanced/layerbrowse.bml?id=6639757
Reply
$time = $time + $e.time->time_format("short");
Replace that with this:
$time = $time + $e.time->time_format("%%h%%:%%min%% %%a%%m");
See here for more information on changing date/time formats :)
3. Remove the time from recent entries (text in blue):
if($p.view == "recent") {
$time = $time + $e.time->time_format("%%h%%:%%min%% %%a%%m");
}
Reply
Reply
Reply
The code above has a bug: it should be $p.view != "recent" and not $p.view == "recent". However, if you'd applied the code I originally gave you, the time should not be showing up in other views.
I need to see your layer again. Can you link me to the one you're using now? :)
Reply
Leave a comment