Veronika
[paid accounts] Metadata handling (free metadata order) v2.0
June 21st, 2006 @ 02:00 pm
  1. Mood icon aligned left or right of the currents, or keep it inline with the mood text.
  2. Control which metadata is displayed, and their order.
  3. Link the tags label to the poster's Visible Tags Page, Edit Entry's Tags, or to the Tags Management Page.
  4. Replace metadata labels with pictures.
  5. Take off links on location, groups and music.
(updated: January 27, 2009)

version history:
2.0 added inline moodpic, delinkifying music, some code cleanup
1.8 bug fixed (alt and title text of image-labels broken when label text included single apostrophes)
1.7 added custom groups functionality
1.6 added table cell width (prevents moodicon from disappearing with max-width: 100%; CSS)
1.5 bug fixed (broken tag label links)
1.4 bug fixed (mood icon showed even when mood was supposed to be hidden)
1.3 general code cleanup (minimize lines of codes and number of variables)
1.2 added left/right alignment
1.1 added metadata label pictures
1.0 basic functionality


Step 1

You need to have created a theme layer and a style before you can follow this tutorial.
if you already have a theme layer, and also already have a function Entry::print_metadata() in it, delete it from your layer before continuing with this tutorial.




Step 2

Put these set statements after the layerinfo in your theme layer as well, or use the Customizations Wizard to set the label texts:
set text_meta_mood = "Current Mood:";
set text_meta_music = "Current Music:";
set text_meta_location = "Current Location:";
The Tags label can only be set in the theme layer:
set text_tags = "Tags:";




Step 3

Copy the following function into your theme layer. Adjust the text in red to your wishes.
set tags_aware = true;

function Entry::print_metadata() 
{
  # ---------------------------------------------------- CUSTOMIZATION ---------------------------------------------------- #

  var string tags_sep         = ", ";       # text for tags separator, ", " for "tag, tag, tag"

  var string show_tags_link   = "none";     # set to "edit" if you want the tags label to act as an 'edit tags' link
                                            # set to "page" if you want the tags label to link to the poster's tag page
                                            # set to "manage" to link to the Tags Management page
                                            # set to "none" to delinkify the tags label completely

  var bool   show_loc_link    = false;      # set to true to display the Google Map link

  var bool   show_groups_link = false;      # set to true to display the custom friends group link

  var bool   show_music_link  = true;       # set to false to hide the last.fm link to the artist/song pages

  var bool   print_table      = true;       # set to false to display the mood icon inline with the mood text (default FS style)

  var string alignment        = "left";     # set the side of the mood icon (left or right of the currents) - only if printed in table
  
  # set the order in which you want mood, music, location, tags, security and custom friends group to appear
  # any metadata you want to hide journalwide, delete from this list
  var string[] metaorder = ["mood", "music", "tags", "location", "groups"];

  # optional:
  # put in the URLs to the pics you want to use instead of the currents' text labels
  # if you leave it blank, the text label will be used instead
  var string{} metapics = { "mood"               => "IMAGE URL",
                            "music"              => "IMAGE URL",
                            "location"           => "IMAGE URL",
                            "tags"               => "IMAGE URL",
                            "groups"             => "IMAGE URL" };

  # ---------------------------------------------------- CUSTOMIZATION END ---------------------------------------------------- # 

  var string currents       = """<div class="currents">""";         # here all metadata will be added to print currents container

  var Link   edit_tags      = $this->get_link("edit_tags");         # helper var to see if remote user can edit tags

  if ((size $.metadata > 0) or ((size $.tags > 0) and $*tags_aware)) {  
    
    # display mood and moodicon?
    var bool display_mood = false;
    foreach var string moodtest ($metaorder) {
      if ($moodtest == "mood") { $display_mood = true; }
    }
    
    # table and mood icon
    if (defined $.mood_icon and $display_mood and $print_table) {
      $currents = ($alignment == "left") ?
                  $currents + """<table border="0"><tr><td width="$.mood_icon.width"><img src="$.mood_icon.url" width="$.mood_icon.width" height="$.mood_icon.height" alt="$.metadata{"mood"}" title="$.metadata{"mood"}" /></td><td>""" :
                  $currents + """<table border="0"><tr><td>""";
    }
    
    # step through metadata in the order the user wants
    foreach var string k ($metaorder) {
    
      var string text;                     # the actual value of the metadata
      var string label;                    # the label of the metadata as set in the wizard or set-statements
      
      # handling tags metadata
      if ($k == "tags" and (size $.tags > 0) and $*tags_aware) {
        
        # label as image or text
        $label = clean_url($metapics{$k}) != "" ? """<img src="$metapics{$k}" title="$*text_tags" alt="$*text_tags" border=0>""" : $*text_tags;
        
        # optional linkage around tags label
        if ($show_tags_link == "edit" and $edit_tags.url != "") {  # Edit Tags Page link
          $label = """<a href="$edit_tags.url">""" + $label + """</a>""";
        }
        elseif ($show_tags_link == "page") {                           # Visible Tags Page link
          $label = """<a href=" """ + $.journal->base_url() + """/tag/ ">""" + $label + """</a>""";
        }
        elseif ($show_tags_link == "manage" and viewer_is_owner()) {   # Tags Management Page link
          $label = """<a href=" """ + $.journal->tag_manage_url() + """ ">""" + $label + """</a>""";
        }
        
        # build tag list
        var bool addsep = false;
        foreach var Tag t ($.tags) {
          if ($addsep) {
            $text = $text + $tags_sep + """<a rel="tag" href="$t.url">$t.name</a>""";
          }
          else {
            $text = $text + """<a rel="tag" href="$t.url">$t.name</a>""";
            $addsep = true;
          }
        }
      } #end tags
      
      # handling all other metadata
      elseif ($k != "tags" and $k != "" and $.metadata{$k} != "") {
        
        # metadata value
        $text = $.metadata{$k};
        
        # label as image or text
        $label = clean_url($metapics{$k}) != "" ? "<img src=\"$metapics{$k}\" title=\"" + lang_metadata_title($k) + "\" alt=\"" + lang_metadata_title($k) + "\" border=0>" : lang_metadata_title($k);
        
        # strip location/music/groups link
        if ((not ($show_loc_link) and ($k == "location"))
            or (not ($show_music_link) and ($k == "music"))
            or (not ($show_groups_link) and ($k == "groups"))) {
          $text = striphtml($text);
        }

        # inline mood image
        if (not ($print_table) and $k == "mood" and defined $.mood_icon) {
          $text = """<img src="$.mood_icon.url" width="$.mood_icon.width" height="$.mood_icon.height" alt="$.metadata{"mood"}" title="$.metadata{"mood"}" align="middle" />""" + $text;
        }

      } #end metadata

      # skipping empty metadata
      else { continue; }
      
      # assemble the individual currents 
      $currents = $currents + """<div class="current$k"><strong>$label</strong> <span class="text">$text</span></div>""";
      
    } # end foreach

    # table and mood icon
    if ($display_mood and defined $.mood_icon and $print_table) {
      $currents = ($alignment == "left") ?
                  $currents + """</td></tr></table>""" :
                  $currents + """</td><td width="$.mood_icon.width"><img src="$.mood_icon.url" width="$.mood_icon.width" height="$.mood_icon.height" alt="$.metadata{"mood"}" title="$.metadata{"mood"}" /></td></tr></table>""";
    }

    # close currents container and print
    println $currents +  """</div>""";
  }
}




Step 4 (optional)

in case you want your metadata to be displayed aligned to the right, you also need to add the following CSS (either to Page::print_custom_head(), in the Customizations Wizard or in your external stylesheet):
.currents {
  text-align: right;
  width: 100%;
  }
.currents table {
  position: relative;
  right: 0px;
  width: 100%;
  }
 
( Post a new comment )
 
no day but today.[info]callmeadreamer on August 29th, 2006 10:43 am (UTC)
I'm sorry if this is a stupid question, but I'm using codes universal for free and paid accounts by [info]letsbebad. Is there any way to put the icon to the left, with codes like the ones I'm using? Or is it only available for paid codes, do you know?
 
Veronika[info]kentucka on September 2nd, 2006 12:02 am (UTC)
I guess you used a CSS stylesheet and/or images by [info]letsbebad to change the look of your journal. those CSS changes are available to anyone, both for free and paid accounts. but any advanced customizations of the journal view (like the rearragement of metadata) require a theme layer. that is not the same as a CSS override, and available only for paid accounts.

the fact that you used those CSS overrides from [info]letsbebad does not concern us in the least. you can simply follow [info]s2flexisquares's tutorial posts on how to create a theme layer and a style, and then follow this post to rearrange your metadata.

save your CSS in a text file on your computer beforehands, though. just to make sure. ;) if you encounter any problems, you can still post in this community, and somebody'll look into it.
 
 
Emazing[info]midnightdream__ on October 6th, 2006 07:38 pm (UTC)
Fantastic of you to type all these codes out!

Question, though. On my current stylesheet ([info]midnightdream__), the metadata gets pasted to the bottom of the entry, as in before the actual entry text itself. Is there anyway to modify just the CSS stylesheet so it will appear on top? Or would I automatically need to make a theme layer for that? I have a paid account.

Any help would be so greatly appreciated, sorry to bother you!
 
Veronika: [geek] lj coding[info]kentucka on October 9th, 2006 12:44 pm (UTC)
yes, shifting the metadata from the bottom of the entry to the top would require some coding in a theme layer. first I'd recommend you create a theme layer and a style, then follow this tutorial (to get full control over all metadata, even the tags), and then yell for me so we can make the metadata appear at the top of the entries.
 
(no subject) - [info]midnightdream__ on October 9th, 2006 04:08 pm (UTC) Expand
 
(no subject) - [info]midnightdream__ on October 9th, 2006 04:29 pm (UTC) Expand
 
(no subject) - [info]kentucka on October 9th, 2006 05:20 pm (UTC) Expand
 
(no subject) - [info]midnightdream__ on October 9th, 2006 07:41 pm (UTC) Expand
 
(no subject) - [info]kentucka on October 9th, 2006 08:05 pm (UTC) Expand
 
(no subject) - [info]midnightdream__ on October 9th, 2006 08:14 pm (UTC) Expand
 
(no subject) - [info]kentucka on October 9th, 2006 09:02 pm (UTC) Expand
 
(no subject) - [info]midnightdream__ on October 11th, 2006 01:24 am (UTC) Expand
 
(no subject) - [info]kentucka on October 11th, 2006 05:23 pm (UTC) Expand
 
(no subject) - [info]midnightdream__ on October 12th, 2006 01:09 am (UTC) Expand
 
 
Muse In My Head: dw; n/r; stumble into you[info]muse_in_my_head on October 18th, 2006 02:27 pm (UTC)
Thank you for this! I've been curious for weeks now how to do this for my layout. :D

When I pasted in the code, I came across two small things that I hope are really easy to fix. I'm using one of [info]peoplemachines' CSS code. Anyways, I would really like to have just a teeny bit of space between the end of the entry and the metadata and a little less space between the metadata and the comments. And I'd like my music to be all lowercase like the rest of the text in the metadata. Here is a picture if you need a visual example of what I'm talking about.
 
Snakeling[info]snakeling on October 18th, 2006 04:42 pm (UTC)
Add this to your CSS:
.currents {
    margin-top: 15px;
    text-transform: lowercase;
    }
.comments {
    top: 5px;
    }
You can always change the length to what you want, of course :)
 
(no subject) - [info]muse_in_my_head on October 18th, 2006 04:43 pm (UTC) Expand
 
 
'cause you will be asking for me one day ☆[info]kizuite on January 15th, 2007 04:53 pm (UTC)
Hi - I'm really a newbie to theme layers and such and I've only used the layer to change the seperator between the # comments & leave a comment links, so I was wondering if there was a way where I could easily just remove the tags line and keep the current music and mood? I tried a lot of stuff to fix it with your code, but after a few attempts, it just removed the currents all together, so I gave up and decided to ask for help. :O
 
Veronika: [geek] lj coding[info]kentucka on January 15th, 2007 05:29 pm (UTC)
the easiest and quickest way to simply get rid of the tags on the whole journal - even without theme layers at all - is with CSS. add this:
.ljtags { display: none; }
 
 
whoa there pickle.: Heroes - Peter BW[info]spacedoodet on June 26th, 2007 01:24 pm (UTC)
Fancy helping a total newbie out?

I just tried this and it doesn't seem to have done anything at all, yet the code I copied into the layer compiled without any errors so I don't know exactly where I've gone wrong. (Though like I say, no idea what I'm doing with it, I just set up my first layer today >.>)
 
Snakeling[info]snakeling on June 26th, 2007 01:37 pm (UTC)
 
(no subject) - [info]spacedoodet on June 26th, 2007 02:09 pm (UTC) Expand
 
(no subject) - [info]snakeling on June 26th, 2007 02:17 pm (UTC) Expand
 
 
weehobbit: [edog] aluminum dog[info]weehobbit on August 1st, 2007 06:05 pm (UTC)
hello! first, thank you for easy to follow instructions :)

i was wondering if you could answer a quick question for another newbie ;)

here's what i got:


i want to change the line height between the lines of meat data and also change the font size so it looks more compact. i'm pretty sure it's an easy fix but putting in "line-height" in my CSS doesn't seem to work. oh, and i'm using s2mixit but this code has worked fine for me so far.
 
Veronika: [geek] lj coding[info]kentucka on August 2nd, 2007 03:39 pm (UTC)
they're all diffent divs, that's why the line-height doesn't work. the trick is usually the padding or margin of .currentmood, .currentmusic, .currentlocation and .currenttags
 
(no subject) - [info]weehobbit on August 2nd, 2007 06:11 pm (UTC) Expand
 
 
em[ily][info]cptnsubtext on August 17th, 2007 04:15 am (UTC)
I would like to use this code on GJ, and I was wondering how to go about merging this with the code I already have. Instead of having the security icon displayed where the date is, I was hoping to have it underneath the tags. This is what I used before on LJ. I'm not sure whether or not I should put this code in my existing theme layer, or if I should put it in my layout layer. Here is my GJ layout layer, and here is my theme layer.
 
Veronika: [geek] lj coding[info]kentucka on August 17th, 2007 11:28 pm (UTC)
in the print_entry(), add this hash sign, so the security icon isn't printed in the subject line.
      <div class="subject">""";
        if ($e.security != "") 
        {
          # $e.security_icon->print();
        }
        """
        $e.subject &nbsp;
      </div>
for the actual tutorial here, I added it to the GJ theme layer. you have your security printed in there as well :) for now you can let it print either different security icons or a text label, followed by the security text (public/protected/private).
 
(no subject) - [info]cptnsubtext on August 18th, 2007 08:06 pm (UTC) Expand
 
(no subject) - [info]kentucka on August 19th, 2007 08:46 pm (UTC) Expand
 
(no subject) - [info]cptnsubtext on August 20th, 2007 07:06 pm (UTC) Expand
 
(no subject) - [info]kentucka on August 23rd, 2007 09:05 pm (UTC) Expand
 
 
Fran ♫: gaspard[info]bleutopia on March 8th, 2008 03:34 am (UTC)
I did everything but it isn't showing up :/
it's my first time so I probably messed up, I would appreciate I little help please =)
here is my layer:
http://h1.ripway.com/sarafefa/myfirst.txt

thanks in advance
 
Fran ♫[info]bleutopia on March 8th, 2008 06:43 am (UTC)
fixed it =)
I have one question though, is it possible for the image to be a little separated from the end of the entry? when it ends the writing then the image appears inmediately, I would love a space between them


Edited at 2008-03-08 06:55 am (UTC)
 
(no subject) - [info]kentucka on March 8th, 2008 02:27 pm (UTC) Expand
 
(no subject) - [info]bleutopia on March 8th, 2008 05:45 pm (UTC) Expand
 
(no subject) - [info]kentucka on March 16th, 2008 06:07 pm (UTC) Expand
 
 
Mary.[info]kinoko on March 19th, 2008 01:00 pm (UTC)
Great tut, followed each step.
One question, next to my tag there is a # sign next to it
Was wondering how Can I remove this?
http://kinoko.livejournal.com/
 
Mary.[info]kinoko on March 19th, 2008 01:07 pm (UTC)
Actually I got rid of it but when I hover over the tag icon it shows tag #,
How can i get remove this?
Thanks :)
 
(no subject) - [info]kentucka on March 19th, 2008 08:45 pm (UTC) Expand
 
(no subject) - [info]kinoko on March 19th, 2008 09:05 pm (UTC) Expand
 
 
vanita: me[info]vanita on March 27th, 2008 08:57 pm (UTC)
Hi. First of all, thank you so much for this tutorial. Second, I have two little problems, and I hope you can help me out.
1) I have a colon behind the tags text, but not behind those for music or mood. That's weird because I put them in the code. What did I do wrong?
2) I want to have the space between the mood icon and the mood text back. What do I have to do?
Here's my layer.
Thanks a lot.

Edited at 2008-03-27 08:58 pm (UTC)
 
vanita[info]vanita on March 27th, 2008 09:04 pm (UTC)
By the way: Changing "var string alignment" seems to have no influence on the actual appearance of my layout. There has to be an error, but I don't know where.
 
(no subject) - [info]kentucka on April 2nd, 2008 08:44 pm (UTC) Expand
 
(no subject) - [info]vanita on March 27th, 2008 10:09 pm (UTC) Expand
 
(no subject) - [info]kentucka on April 2nd, 2008 09:16 pm (UTC) Expand
 
(no subject) - [info]vanita on April 29th, 2008 03:08 pm (UTC) Expand
 
 
Oracle Tai[info]sousuke on May 23rd, 2008 06:58 pm (UTC)
Thanks so much for this! You've almost got exactly what I want. :3 Currently, I have this:



I'm trying to do two things with it... Take the images for mood, music, and so on, and stick them on the right of the text, instead of the left. Is that possible?

And second, I'd rather not have the tags as links. Can I make them just plain text?
 
Veronika: [geek] lj coding[info]kentucka on June 1st, 2008 03:17 pm (UTC)
the first is easier:

find this line of code in the tutorial, and rearrange it:
from
      # assemble the individual currents 
      $currents = $currents + """<div class="current$k"><strong>$label</strong> $text</div>""";
to
      # assemble the individual currents 
      $currents = $currents + """<div class="current$k">$text <strong>$label</strong></div>""";


for the second, you'll need to find this section in the code, and delete what is red:
from
        # build tag list
        var bool addsep = false;
        foreach var Tag t ($.tags) {
          if ($addsep) {
            $text = $text + $tags_sep + """<a rel="tag" href="$t.url">$t.name</a>""";
          }
          else {
            $text = $text + """<a rel="tag" href="$t.url">$t.name</a>""";
            $addsep = true;
          }
        }
to
        # build tag list
        var bool addsep = false;
        foreach var Tag t ($.tags) {
          if ($addsep) {
            $text = $text + $tags_sep + $t.name;
          }
          else {
            $text = $text + $t.name;
            $addsep = true;
          }
        }
 
(no subject) - [info]sousuke on June 1st, 2008 06:37 pm (UTC) Expand
 
(no subject) - [info]kentucka on June 1st, 2008 07:55 pm (UTC) Expand
 
 
C.: sn; everybody like zambonis[info]thecolorbetween on June 22nd, 2008 03:59 am (UTC)
This looks great; thank you so much! I especially appreciated the step-by-step (or should I say line-by-line?) instructions regarding what to change so that you can customize everything to your liking. Everything pretty much worked, but I'm still having some issues with the spacing between the currents for mood and music. (I'd like to bring music up, and I'm hoping that tags will automatically move up if/when music does.) My CSS is here, and a screenshot can be found here. I saw you mentioning line-height to someone else (I think we had the same problem), and I took a look at that in my CSS, but I don't think it made a difference.

Sorry if this has been already answered! I've been looking through this community for a whiiiile now, so my eyes may have just skipped right over it. Thanks!
 
Veronika: [geek] lj coding[info]kentucka on June 22nd, 2008 07:23 am (UTC)
in your CSS, there's a margin-top causing the spaces:
	.currents, .currentmood, .currentmusic {
		padding-top: 0px;
		padding-bottom: 0px;
		border-top: 0px dashed #7C7561;
		border-bottom: 0px dashed #7C7561;
		margin: 15px 0 0 0;
		color: #62AAFC;
		}
take this line off, and add a
.currents { margin-top: 15px; }
below instead.
 
(no subject) - [info]thecolorbetween on June 22nd, 2008 10:08 pm (UTC) Expand
 
(no subject) - [info]kentucka on June 24th, 2008 06:57 pm (UTC) Expand
 
 
bunny foo foo[info]zilverkittie on January 31st, 2009 01:18 pm (UTC)
I have a question. So, what is supposed to show up for groups if it's set to true? I currently have show_groups_link = true but I don't see any difference.
 
Veronika: [geek] lj coding[info]kentucka on January 31st, 2009 02:22 pm (UTC)
first, the "groups" need to be in the metaorder.

you'll need to look at an entry, which is flocked to a custom friends group to see anything at all. then there's a new line saying, for example:
Custom Friends Groups xyz

if show_groups_link is set to true, the name of the custom friends group is linked, if it's set to false then there is no link.
 
 
Jenny: b&c[info]berry_hearts on February 3rd, 2009 07:27 am (UTC)
thank you! it took a ridiculous amount of time to change my "music" to television.... your explanation was much clearer..

this may sound dumb, but it there a way I can have it say "television" just on my journal and "music" on my friend's page?

Edited at 2009-02-03 08:50 am (UTC)
 
Veronika: [geek] lj coding[info]kentucka on February 3rd, 2009 11:26 pm (UTC)
not at the moment, no. right now the labels cannot be changed according to the views.
if you want that, I'd need to change the code a bit. could you link me your theme layer first?
 
(no subject) - [info]berry_hearts on February 4th, 2009 01:11 am (UTC) Expand
 
 
[info]hiddentrack on February 23rd, 2009 12:17 am (UTC)
Ah, thank you, this is fabulous.

I do have one question, though. Is there a way to do this without it affecting the tags? Like, keep the tags the way they are based on the CSS, and only use this for the currents?

Thanks.
 
Veronika: [geek] lj coding[info]kentucka on February 23rd, 2009 10:13 am (UTC)
the very first line in the code in Step 3 says
set tags_aware = true;
try changing that to
set tags_aware = false;
 
(no subject) - [info]hiddentrack on February 23rd, 2009 10:26 am (UTC) Expand
 
(no subject) - [info]kentucka on February 23rd, 2009 10:40 am (UTC)
 
(no subject) - [info]hiddentrack on February 23rd, 2009 10:41 am (UTC)
 
(no subject) - [info]kentucka on February 23rd, 2009 10:52 am (UTC)
 
(no subject) - [info]hiddentrack on February 23rd, 2009 10:52 am (UTC)
 
(no subject) - [info]kentucka on February 23rd, 2009 01:35 pm (UTC)
 
(no subject) - [info]hiddentrack on February 23rd, 2009 11:21 pm (UTC) Expand
 
(no subject) - [info]kentucka on February 24th, 2009 09:35 am (UTC) Expand
 
(no subject) - [info]hiddentrack on February 24th, 2009 10:44 am (UTC) Expand
 
(no subject) - [info]kentucka on February 24th, 2009 10:47 am (UTC) Expand
 
 
Toboe LoneWolf: [Jungle Book] Puppy Wag[info]toboe_lonewolf on March 16th, 2009 02:47 pm (UTC)
Is there some way to make the table appear whenever there is metadata in addition to tags? Like, if I only have tags, no table appears. When I have anything else (mood/expression/music), the table appears.

I managed to get it to work on my current component style layout, but I haven't figured out how to do it on Flexible Squares.
 
Veronika: [geek] lj coding[info]kentucka on March 16th, 2009 02:55 pm (UTC)
you mean as soon as there's more than one metadata, but not necessarily the mood? because right now the table is used only if there's a mood icon to display.
 
(no subject) - [info]toboe_lonewolf on March 16th, 2009 03:51 pm (UTC) Expand
 
 
Danielle: [FF] Dead Guy On The Bridge![info]atomic89 on April 27th, 2009 03:29 am (UTC)
Hi, I've just followed this tutorial and it's worked almost perfectly - apart from one problem - it's turned the entire metadata backround black. Any ideas on how I can get it back to white?
 
Veronika: [geek] lj coding[info]kentucka on April 27th, 2009 08:22 am (UTC)
you're not using Flexible Squares as far as I can see, so I don't guarantee that this tutorial really works without hitches. but try adding this to your CSS:
.currents { background-color: #FBFBFB; }
 
 
Alexandra[info]nykema on May 17th, 2009 06:22 pm (UTC)
Hi. I'm using this exact code in my theme layer, which works like a charm. Though I would like to set my currents to display inline instead of block. With my former Smooth Sailing layout, that could be done in the CSS itself. But I have no idea how to do it with FS. Do I need to change something in the layer or can it also be done with some sort of coding in the CSS?

I hope you don't mind me asking here. *blushes*
 
Veronika: [geek] lj coding[info]kentucka on May 17th, 2009 08:55 pm (UTC)
I'm not sure I understand what exactly you want to do.
there's always the CSS .currents { display: inline; } but is this what you had in mind?
 
(no subject) - [info]nykema on May 17th, 2009 09:51 pm (UTC) Expand
 
(no subject) - [info]kentucka on May 18th, 2009 07:45 am (UTC) Expand
 
(no subject) - [info]nykema on May 18th, 2009 07:55 am (UTC) Expand