A Few Questions

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

signifiers May 31 2006, 15:08:05 UTC
1. I'm not sure if you can do it via CSS, but it's not necessary - you can change your title at the new Change Settings page.

Reply

troublesrollby June 1 2006, 13:05:32 UTC
Oh good. Thanks for the heads up.

Reply


afuna May 31 2006, 15:27:53 UTC
1. http://www.livejournal.com/settings/?tag=title
2&2 ;)
Make your theme layer viewable, please!

Reply

afuna May 31 2006, 19:31:37 UTC
Oh, also, just to clarify, you can't change the title using CSS as CSS governs style and not content.

Reply


afuna June 2 2006, 19:08:03 UTC
2. In your print_entry function, look for this line:

$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

troublesrollby June 2 2006, 23:45:08 UTC
Thanks!

Reply

troublesrollby June 20 2006, 13:34:28 UTC
That didn't remove the time. Hmmm.

Reply

afuna June 20 2006, 16:34:19 UTC

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

Up