|
Survey Settings (Style)
(Style Tab) |
|
|
| <p style="color: green;">
|
| Please answer the questions below.
|
| </p>
|
| <style type="text/css">
|
|
|
| p
|
| {
|
| color: green;
|
| }
|
|
|
| </style>
|
|
|
| <p>
|
| Please answer the questions below.
|
| </p>
|
| p
|
| {
|
| color: green;
|
| }
|
| <link rel="stylesheet" type="text/css" href="mystyle.css">
|
| p
|
| {
|
| color: green;
|
| }
|
| p
|
| {
|
| color: green;
|
| font-size: 18px;
|
| padding: 10px;
|
| }
|
| div, p, td
|
| {
|
| color: green;
|
| }
|
|
|
| div p
|
| {
|
| color: green; /*Turn the text green*/
|
| }
|
| <div class="header1">
|
| How old are you?
|
| </div>
|
| .header1
|
| {
|
| color: green;
|
| }
|
|
|
| <div id="Q1_div">
|
| How old are you?
|
| </div>
|
| #Q1_div
|
| {
|
| color: green;
|
| }
|
| <div class="header1"> Header 1 Text </div>
|
| .header1
|
| {
|
| color: green;
|
| }
|
| <div id="Q1_div" class="question select">
|
| ...
|
| </div>
|
| #Q1_div .header1
|
| {
|
| color: blue;
|
| }
|
| .question
|
| {
|
| border: 1px solid black;
|
| }
|
| .select
|
| {
|
| border: 1px solid green;
|
| }
|
| C:\Users\<user>\Documents\Sawtooth Software\SSI Web\Styles
|
| /* Background setting for whole page, currently grey */
|
| body
|
| {
|
| background-color: #DDDDCC;
|
| }
|