Title: Poll formatting issues
Last modified: August 21, 2016

---

# Poll formatting issues

 *  Resolved [tajenli](https://wordpress.org/support/users/tajenli/)
 * (@tajenli)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/poll-formatting-issues/)
 * Dear YOP team,
 * I really love your polls system. It’s very powerful.
 * However, I got couple formatting issues:
 * 1. In a theme called Customizr, the answer text beside the radio button all go
   to next line, in both widget & post\page. Please take a look at my testing site.
 * [http://tajenli.org/wp01/](http://tajenli.org/wp01/)
    [http://tajenli.org/wp01/2013/10/29/yop-poll/](http://tajenli.org/wp01/2013/10/29/yop-poll/)
 * On my localhost, I got same issue on Twenty Twelve theme, but only in post. Please
   see the link below:
    [https://drive.google.com/file/d/0B_r-mfalwcQCS2lzUnpPT1RSSFE/edit?usp=sharing](https://drive.google.com/file/d/0B_r-mfalwcQCS2lzUnpPT1RSSFE/edit?usp=sharing)
 * Could you help?
 * 2. Also, I like to make the background transparent, or a color background with
   a border. Where I can find the css style and modify it?
 * Thanks,
    Darren
 * [http://wordpress.org/plugins/yop-poll/](http://wordpress.org/plugins/yop-poll/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [YOP](https://wordpress.org/support/users/yourownprogrammer/)
 * (@yourownprogrammer)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/poll-formatting-issues/#post-4266423)
 * Hi Darren,
 * 1. In YOP menu, go to “Templates” and edit the one you used for your poll. In
   the CSS section, after
 *  #yop-poll-answers-%POLL_ID% ul li label {
 * add
 * display: inline;
 * and save.
 * 2. To style a template you have to edit it and scroll down to the CSS section.
 * Best wishes,
 * YOP Team
 *  Thread Starter [tajenli](https://wordpress.org/support/users/tajenli/)
 * (@tajenli)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/poll-formatting-issues/#post-4266424)
 * Thank you so much for the quick reply, I just figure out myself.
 * I create a new template cloned from ‘white’ named “none”.
 * 1. Label alignment issue
    In this template CSS: I added at bottom
 *     ```
       li[class='yop-poll-li-answer-%POLL-ID%'] > label {
          display: inline !important;
       }
       ```
   
 * or your way shall work too:
 *     ```
       #yop-poll-answers-%POLL_ID% ul li label {
           ... (don't change)
           display: inline !important;
       }
       ```
   
 * 2. change style
    under #yop-poll-container-%POLL-ID% { ==> it’s at the top of
   css file I change background:### to background:none;
 * I also added border & radius:
 *     ```
       border: solid 2px silver;
       -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
       border-radius: 10px;
       ```
   
 * optional (margin & padding):
 *     ```
       margin: 10px;
       padding:18px;
       ```
   
 * Thanks,
    Darren

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Poll formatting issues’ is closed to new replies.

 * ![](https://ps.w.org/yop-poll/assets/icon-256x256.png?rev=3524390)
 * [YOP Poll](https://wordpress.org/plugins/yop-poll/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/yop-poll/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/yop-poll/)
 * [Active Topics](https://wordpress.org/support/plugin/yop-poll/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/yop-poll/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/yop-poll/reviews/)

## Tags

 * [answer](https://wordpress.org/support/topic-tag/answer/)
 * [background](https://wordpress.org/support/topic-tag/background/)
 * [border](https://wordpress.org/support/topic-tag/border/)
 * [css.style](https://wordpress.org/support/topic-tag/css-style/)

 * 2 replies
 * 2 participants
 * Last reply from: [tajenli](https://wordpress.org/support/users/tajenli/)
 * Last activity: [12 years, 7 months ago](https://wordpress.org/support/topic/poll-formatting-issues/#post-4266424)
 * Status: resolved