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.
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
}
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;
}