Theme Support Forum

Support Forum for Free and Premium Themes. Premium Theme Forums are Private! Please log in first to see the Premium forums

Viewing 8 posts - 1 through 8 (of 8 total)

Making list shortcode work within columns

Home Forums Misc. General Forums Making list shortcode work within columns

  • #12474

    Jenni

    subscriber

    Hi guys!

    The topic title states my problem – how to? I have a three column content in my post but I’m not able to make list shortcode work within columns. Is this possible?

    Thank you already!

    Cheers

    Jenni

    #17568

    Towfiq I.

    administrator

    can you please send me the link of the post where you are trying to do this?

    #17569

    Jenni

    subscriber

    Sure, here’s the link.

    http://info.kyyti.net/kayttajille/

    Thanks for your help.

    #17570

    Towfiq I.

    administrator

    it may not be possible to add the lists via shortcode but it can be achieved with css.

    Add lists like this inside the column:

    <ul class="mylists">
    <li>List item 1</li>
    <li>List item 2</li>
    <li>List item 3</li>
    </ul>

    and let me know what list type shortcode do you want to make it look like.

    #17571

    Jenni

    subscriber

    Hi again!

    It works. Thanks a lot! I’d like to use list style 5 and if it’s possible make a numbered list also.

    #17572

    Towfiq I.

    administrator

    The code you added, replace “mylists” with “list5”

    To add numbered list try this:

    <ol class="mylists">

    <li>List item 1</li>
    <li>List item 2</li>
    <li>List item 3</li>
    </ol>

    #17573

    Jenni

    subscriber

    It all works! Thank you so much for your wonderful support!

    #17574

    Jenni

    subscriber