Hi
I have a Dataset here with 3 Rows - first Row is a Image second and third are Text.
I can display it as basic xibo does it - but i need to format ist (Font, Font Size, Font Colour, Place of the different Columns and so on …
As i undertand i can do this by using CSS - but im sorry - css is not my “language” - so anyone can help me ?
Best regards
Peter
March 22, 2016, 8:45am
2
ok…so one thing is you could try to use ticker and edit those values(font colour/size etc) in text editor.
If you want to use dataset view, then yes, you can format it using CSS.
http://www.w3schools.com/css/css_text.asp and other corresponding pages should help you.
In dataset view, there are already some items created for you.
While you still can use for example body
to change colours of everything, you can also use for example:
body {
font-size: 250%;
}
table.DataSetTable {
}
tr.HeaderRow {
background-color: #4CAF50;
color: white;
}
tr#row_1 {
}
td#column_1 {
color: blue;
}
td#column_2 {
color: red;
}
td.DataSetColumn {
}
tr.DataSetRow {
}
tr.DataSetRowOdd {
}
tr.DataSetRowEven {
}
th.DataSetColumnHeaderCell {
}
span#1_1 {
}
span.DataSetColumnSpan {
}
So the above changes Columns headers and first cells as well as font size of every text.
So you will want to use
font-size:
color:
and perhaps text-align
1 Like
Hi Peter
First of all - thanks for your Help !
I have managed it to do a Fresh installation on a Ubuntu server and now everything works fine…
I have Tryed to understand CSS - but - sorry - that´s too much for me …
i simply want to display it like this:
Dataset1:
Col1 (Picture) Col2 (Text)
/newline
Col3 (Picture) Col4 (Text)
/newline
/newline
Dataset2:
Col1 (Picture) Col2 (Text)
/newline
Col3 (Picture) Col4 (Text)
/newline
/newline
… and so on …
Best regards
Hi
managed to basic edit CSS to my depends.
But om not able to edit Images wich are displayed.
I want to scale Icons wich are displayed out of dataset.