a mixed bag of things...

Mar 27, 2008 17:13

Hello! I promise I browsed this community thoroughly for what I wanted, and while I found a few things I wanted to change, there were others I couldn't find at all or they're not properly tagged (I'll also try to properly tag this entry for other people).

What I hope to change:

-To shrink the font size in the top header. Fixed!-Same with the ( Read more... )

entries:header:font, entries:metadata, page:skiplinks, header:nav links

Leave a comment

Comments 21

av8rmike March 28 2008, 12:31:22 UTC
-To shrink the font size in the top header.

#header-name a { font-size: 28px;}

Similarly, for entry titles:

.asset-name { font-size: 22px;}

In both cases, change the number to what you want. All the other things you're asking about, however, require changing the layer code with a custom theme layer, because they're more complex. I always mention that because some people aren't willing to go to that level of trouble. ;)

Reply

cmer March 28 2008, 13:43:23 UTC
Awesome! Thanks so much!

There's no easy code to remove the location bar and tags bar (on my main page), plus moving the mood and music bars to the top of each entry? How would I make Expressive into a custom theme layer? I thought it wasn't possible.

Reply

av8rmike March 28 2008, 15:22:13 UTC
Actually, if you want to hide entry tags (what I'm assuming you mean by "tags bar") on your main page, that is possible with a CSS override. However, removing only the location from the metadata requires a theme layer, as does moving the metadata around in the entry block.
Since you have a Permanent account, you can create a theme layer, which will override certain aspects of the base Expressive layout.

Reply

cmer March 28 2008, 18:41:44 UTC
Okay, I created a theme layer and c/p'd code I used for an old Flexisquares layout, which is supposed to move the music/mood to the top, but nothing happened. My theme layer number is 10967314 and it's viewable (I think). This is what I used:

function Entry::print_metadata() {
if (size $.metadata)
{
#print """

"""
""";
var string currents;
foreach var string k ($.metadata)
{
var string text = $k;
var string val = $.metadata{$k};
if ($k == "mood")
{
$text = $*text_meta_mood;
}
elseif ($k == "music")
{
$text = $*text_meta_music;
}
if ($k == "mood" and defined $.mood_icon)
{
var Image i = $.mood_icon;
$val = "
... )

Reply


Leave a comment

Up