Viewing 1 replies (of 1 total)
  • Plugin Author YOP

    (@yourownprogrammer)

    Hi lynefitz,

    Go to “Templates”, look for your poll’s template and from the menu that appears when you drag you mouse over it, click on “Edit”.

    Scroll down to the “CSS” section and look for:

    #yop-poll-answers-%POLL-ID% ul {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    }

    After “padding: 0;” add a new line “text-align:left;” so in the end you should have:

    #yop-poll-answers-%POLL-ID% ul {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    text-align:left;
    }

    Also, look for:

    #yop-poll-custom-%POLL-ID% ul {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    }

    and add “text-align:left;” so you’ll have:

    #yop-poll-custom-%POLL-ID% ul {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    text-align:left;
    }

    Best wishes,

    YOP Team

Viewing 1 replies (of 1 total)
  • The topic ‘How to left justify the answers’ is closed to new replies.