vicarz: (Default)
vicarz ([personal profile] vicarz) wrote2004-06-18 08:50 am

(no subject)

Tech questions:
How do you left justify in LJ? I hate full justify and that's the default.

How can I download songs I play on MSMediaPlayer when there is no save option (grayed out)?

[identity profile] jennbits.livejournal.com 2004-06-18 11:09 am (UTC)(link)
what i mean is literally edit the code.. like you go into advanced customizations, then your layers, then create layout-specific layer: Theme, your style

then you should make it look somthing along the lines of:

layerinfo "type" = "theme";
layerinfo "name" = "Additional Customisations";

function Page::print_custom_head() {
"""
<style type="text/css"%gt;
.entrytext {
padding: 2px;
text-align: left;
}
</style>
""";
}


that MIGHT work. i think.

[identity profile] jennbits.livejournal.com 2004-06-18 11:10 am (UTC)(link)
Uhhh.. that should read:

layerinfo "type" = "theme";
layerinfo "name" = "Additional Customisations";

function Page::print_custom_head() {
"""
<style type="text/css">
.entrytext {
padding: 2px;
text-align: left;
}
</style>
""";
}

[identity profile] vicar.livejournal.com 2004-06-18 12:12 pm (UTC)(link)
Tried that, both, but was getting compile errors. It's all greek to me. Tried just doing
align = right;
but that was error-ing too. Sigh. In my view, the thing is always center justified.