- Posts: 49
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
.boilerplate { font-size: 12px; color: #17479E; font-family: verdana; font-weight: normal; background-color: #E5E5E5; padding-left: 0;padding-right:0; text-align: left; margin-left: 0;margin-right:0; width: 100%; }
USe a css helper for dev.danika wrote: I don't understand where this is being overridden. But, even though the work around is tedious if you have many of these types questions, it works.
Hi,danika wrote: Thank you to both of you for the feedback. Is there somewhere where descriptors on templates can be found? Info that I have seen is scant on this. vallendar is the actual template I am using.
.questions .question-text{color:#000} .boilerplate {color:#444}
.boilerplate .question-text{color:#444}
DenisChenu wrote: .boilerplate .question-text{font-weight:normal}
It's the css system ...
- www.w3.org/Style/CSS/learning
- developer.mozilla.org/learn/css
?danika wrote: Classes normally don't go side by side. Is that a formatting error, or are you suggesting a double class selector?
.class1{color:red} .class2 .class1{color:green}
<div class="class1">Red color</div> <div class="class2"><div class="class1">Green color</div></div>