如何更改LimeSurvey单选按钮样式?

时间:2013-06-16 08:53:06

标签: php css colors limesurvey

抱歉我缺乏知识,但我在我的服务器上安装了limesurvey 1.9。 http://ankaracity.com/wingo/index.php?sid=41381

我需要将每个答案都放在五彩缤纷的盒子里 并且需要制作选定答案颜色的黑色。 那么有可能用css做到这一点吗? 我该怎么办? 感谢。

1 个答案:

答案 0 :(得分:0)

您可以添加css代码以移除广播圈并突出显示(选中时)(我仍然不知道如何为每个答案执行此操作)

/*
  Change the look'n'feel of labels (which are adjacent to radiobuttons).
  Add some margin, padding to label
*/
input[type=radio] + label {

    margin:-2px;
*/    padding: 4px 10px;
    background-color: #ffffff;
color: #ff0000;
  border: 1px solid #2f5376;
 padding: 0 0 0 0;
}
/*
 Change background color for label next to checked radio button
 to make it look like highlighted button
*/
input[type=radio]:checked + label { 
   background-image: none;
    background-color:#ff0000;
color:#ffffff;
 padding: 0 0 0 0;
}