I can't add my class
Posted: Tue Jan 13, 2026 5:26 pm
"Icon from the font" when I add a class, it is added to the top level, if id="refreshBtn" then the top level is created id="wb_refreshBtn" and the class is added here I want him to be added here id="refreshBtn"
the program creates code like this:
<div id="wb_refreshBtn" style="display:inline-block;width:30px;height:30px;text-align:center;z-index:1;" class="refresh-icon">
<div id="refreshBtn"><i class="fa fa-arrows-rotate"></i></div>
and I want it like this:
<div id="wb_refreshBtn" style="display:inline-block;width:30px;height:30px;text-align:center;z-index:1;">
<div id="refreshBtn"><i class="fa fa-arrows-rotate refresh-icon"></i></div>
the program creates code like this:
<div id="wb_refreshBtn" style="display:inline-block;width:30px;height:30px;text-align:center;z-index:1;" class="refresh-icon">
<div id="refreshBtn"><i class="fa fa-arrows-rotate"></i></div>
and I want it like this:
<div id="wb_refreshBtn" style="display:inline-block;width:30px;height:30px;text-align:center;z-index:1;">
<div id="refreshBtn"><i class="fa fa-arrows-rotate refresh-icon"></i></div>