Community Tip - You can change your system assigned username to something more personal in your community settings. X
I want to add the CUSTOM CSS to Label to get Label Widget Border as RED and Thickness of 4px
Solved! Go to Solution.
Hi @pshashipreetham,
You can try below CSS configuration:
.dataLabel {
background-color : #<label block background color>;
font-weight : bold;
border-color: #<label border color>;
border-style: Solid;
border-width: 4px;
}
dataLabel .input-label {
color: #<label text color>;
}
.dataLabel input {
color: #<text inside color>;
}
About how to implement custom CSS in Thingworx, please refer to TWX help center or community.
Thanks,
/Yoyo
Hi @pshashipreetham,
You can try below CSS configuration:
.dataLabel {
background-color : #<label block background color>;
font-weight : bold;
border-color: #<label border color>;
border-style: Solid;
border-width: 4px;
}
dataLabel .input-label {
color: #<label text color>;
}
.dataLabel input {
color: #<text inside color>;
}
About how to implement custom CSS in Thingworx, please refer to TWX help center or community.
Thanks,
/Yoyo