<i> tag with the custom layput editor - Printable Version +- TACTIC Open Source (http://forum.southpawtech.com) +-- Forum: TACTIC Open Source (http://forum.southpawtech.com/forumdisplay.php?fid=3) +--- Forum: TACTIC Discussion (http://forum.southpawtech.com/forumdisplay.php?fid=4) +--- Thread: <i> tag with the custom layput editor (/showthread.php?tid=225) |
<i> tag with the custom layput editor - listy - 07-01-2021 Trying to use bootstrap 4 components with the custom layout editor. Getting some glitches with this example: Code: <button class="btn btn-primary"><i class="fas fa-magic mr-1"></i> Left</button> Is there something wrong with the layout edirot? RE: <i> tag with the custom layput editor - remkonoteboom - 07-02-2021 Very strange. Yes this produces a weird result (multiple versions of the icon). I tested a little. This works: <button class="btn btn-primary"><i class="fas fa-magic mr-1"> </i> Left</button> with a space between. For some reason, leaving out the space causes this. Will have to look in to this. This also breaks: <button class="btn btn-primary"><i class="fas fa-magic mr-1"/> Left</button> So, for now, put a space it and it will work until this bug is fixed. |