change backgroud color - 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: change backgroud color (/showthread.php?tid=3026) |
change backgroud color - Frank68 - 26.11.2020 Hi Is possible chaneg color backgroud of object in image Tank's RE: change backgroud color - admin - 27.11.2020 For static background color just add an additional class, for example bg-red Add to Custom CSS: Code: .bg-red { background-color: red !important; } RE: change backgroud color - Frank68 - 27.11.2020 (27.11.2020, 08:47)admin Wrote: For static background color just add an additional class, for example bg-redok I add this code in Custom CSS: for call the backgroud color in object ? nedd to add class bg-red , correct ? tank's BR RE: change backgroud color - Daniel - 27.11.2020 as admin wrote add additional class to the object you want to apply this rule. RE: change backgroud color - Frank68 - 27.11.2020 (27.11.2020, 10:50)Daniel. Wrote: as admin wrote add additional class to the object you want to apply this rule. I try to black color and not work red yes Why ? RE: change backgroud color - Daniel - 27.11.2020 you will see the change only in final visu not in editor. RE: change backgroud color - Frank68 - 27.11.2020 (27.11.2020, 10:59)Daniel. Wrote: you will see the change only in final visu not in editor.Yes tank's a lot RE: change backgroud color - Frank68 - 30.11.2020 (27.11.2020, 12:16)Frank68 Wrote:Hi(27.11.2020, 10:59)Daniel. Wrote: you will see the change only in final visu not in editor.Yes tank's a lot As for the background in visu all OK, with the css I changed the value, but now even in the mobile view the background has become black, making me not read the writing well, it is possible to separate the 2 things and leave the background white ( default) in the mobile view keeping the black for VISU? thanks a lot RE: change backgroud color - admin - 30.11.2020 Add .usermode to CSS rules: Code: .usermode .bg-red { background-color: red !important; } |