Multilevel Tags Box Customizations.

Mar 20, 2007 19:37

I have created a theme layer to display Multilevel Tags in the sidebar. I want to limit the height of the box to 300px so that if the tags box overflow, it will displays scrollbar. However, when I tried this code:

ul.tagList {width: 90%; height: 300px; overflow: auto;}

It doesn't work. I tried .sidebox ul.tagList, .sidebox #freetextbox and ( Read more... )

freetext, tags

Leave a comment

Comments 4

letheatrenoir March 21 2007, 06:01:05 UTC
Add (as in the original code)
.tagBox {
height: 500px;
overflow: auto;
} to the end of the stylesheet.

Then put the unordered tag list in a div, like so:

Change $list = """
    """; to $list = """
      """;

      Close the div by changing $list = $list + """
    """; to $list = $list + """
""";

Reply

wistfuljane March 21 2007, 13:55:07 UTC
(Sorry about that.)

$list = """
    """;? I can't find it in the code. Nor $list = $list + """
""";.

Reply

wistfuljane March 21 2007, 14:11:18 UTC
Do you mean this part: print """
    """ + $list + """
""";? I have changed it to: print """
    """ + $list + """
""";. And it works!

Thank you!

Reply

letheatrenoir March 21 2007, 19:12:35 UTC
np :)

Reply


Leave a comment

Up