Logic Machine Forum
Solid border around text label - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Visualization (https://forum.logicmachine.net/forumdisplay.php?fid=9)
+--- Thread: Solid border around text label (/showthread.php?tid=4756)



Solid border around text label - dave.bolas@se.com - 09.05.2023

Hi, 

I'm new to the visualization pages. How to I put a border around a text label? Do I use the "Additional classes", and if so, how?

Regards

Dave


RE: Solid border around text label - admin - 10.05.2023

Set Additional classes to bd, add to Custom CSS:
Code:
.bd {
  border: 2px red solid;
}
Note that this will only be visible in the viewer but not in the editor.


RE: Solid border around text label - dave.bolas@se.com - 10.05.2023

(10.05.2023, 09:06)admin Wrote: Set Additional classes to bd, add to Custom CSS:
Code:
.bd {
  border: 2px red solid;
}
Note that this will only be visible in the viewer but not in the editor.

Thank you!