Wiki Forum Sign up! Explore Home

Not signed in (Sign In)

LiveSearch

Welcome, Guest

Want to take part in these discussions? Sign in if you have an account, or apply for one below

Vanilla 1.1.2 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthordarkpollo
    • CommentTimeDec 8th 2007
     permalink
    I cannot make a numeric list on the wiki.
    I have made a list with this code:
    # a
    ## b
    ### c


    and it shows as the # were *, a list without numbers.

    Thanks
    • CommentAuthoradmin
    • CommentTimeDec 8th 2007
     permalink
    Thanks!

    Fixed in darcs, and for a quickfix until I deploy next time, you can add

    #wiki ol
    {
    list-style-type: decimal;
    list-style-position: outside;
    list-style-image: none;
    border-left: none;
    margin-left: 8px;
    padding-left: 4px;
    position: relative;
    margin-bottom: 2px;
    }

    #wiki ol li
    {
    list-style-type: decimal;
    list-style-position: outside;
    list-style-image: none;
    border-left: none;
    margin-left: 8px;
    padding-left: 4px;
    position: relative;
    margin-bottom: 2px;
    }


    to your internal client CSS.

    -- Erlend
    • CommentAuthordarkpollo
    • CommentTimeDec 8th 2007
     permalink
    Ok, thanks.