hide ✓ and x on butten? - 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: hide ✓ and x on butten? (/showthread.php?tid=221) |
hide ✓ and x on butten? - Bapits - 16.02.2016 Hi, How to hide the ✓ and x on butten in touch mode and how to change the shape of button in touch mode? RE: hide ✓ and x on butten? - Erwin van der Zwart - 05.03.2016 (16.02.2016, 11:06)Bapits Wrote: Hi, Hi Bapits, The ✓ and x are hard coded inside the innerhtml. The only way to change them is by adding custom Javascript (embedded by frame) into your visu and use getElementbyClass and change the innerhtml content. Shape can by changed by custom css (see grafics tab) and use F12 in your browser to find the classname to overrule default setting with css or give the button a unique class to overrule the css. Be carefull, changing default css can change items all over your visu so i would use custom classes. For only apply the css on the touch visu use .touch as class selector for only apply extra css rules on the touch visu. BR, Erwin van der Zwart RE: hide ✓ and x on butten? - admin - 07.03.2016 Actually, you can hide text like this: Code: .btn-toggler { RE: hide ✓ and x on butten? - Erwin van der Zwart - 07.03.2016 (07.03.2016, 07:35)admin Wrote: Actually, you can hide text like this:Hi Admin, Your right.. I thought change the value, hide is easy by css, sorry for the mistake, i will read the question better next time (; BR, Erwin |