Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Left align radiobox and text in WP Polls WordPress

  • SOLVED

Hello

I need the radio box and text left aligned on this site I'm working on:
http://icfdenmark.php.ktadata.com/?page_id=162

Can't seem to hit the right selector. Thanks.

Answers (4)

2011-10-26

Andrzej answers:

.format_text .wp-polls li input {
width:auto;
}


René Sejling comments:

Perfect

2011-10-26

Utkarsh Kukreti answers:

.wp-polls-ul input[type="radio"] { width: auto; }

2011-10-26

Luis Cordova answers:

no

just remove

.format_text input, #commentform input, #commentform textarea {
width: 45%; <------ this makes it wide, if you remove it then you will see all well again


on thesis_182/custom/layout.css line # 243

the best way is to match radio buttons

ul li input[id^="poll-answer-"] {
width: 20px; <----- put here your value
width: auto; <----- or auto too

width: 20px !important; <----- put here your value if it does not listen the regular
}

2011-10-26

Romel Apuya answers:

just add this in your style.css


#poll-answer-8,
#poll-answer-9,
#poll-answer-10,
#poll-answer-11,
#poll-answer-12,
#poll-answer-13,
#poll-answer-14,
#poll-answer-15,
#poll-answer-16,
#poll-answer-17,
#poll-answer-18,
#poll-answer-19,
#poll-answer-20,
#poll-answer-21,
#poll-answer-22,
#poll-answer-23,
#poll-answer-24,
#poll-answer-25,
#poll-answer-26,
#poll-answer-27{
width: 20px !important;
}