Code: Select all
.fa-fw {
display: none !important;
}
thank you for the reply. Our site is very slow when we test it. we are working through a list of issues atm. when we test our loads speed font awesome is showing a few times for long periods of time compared to the other items on the load list,david63 wrote: Thu Sep 12, 2019 4:32 pm One easy way is to remove the line in the template but I have no idea what sort of mess it will make of your board.
The hard way would be to edit all of the template files that reference Font Awesome.
Another option would be to use a style that does not have Font Awesome.
Out of interest why do you want to remove them?
thank you for this information.Dan Stylez wrote: Thu Sep 12, 2019 5:06 pm You could add this into the CSS to get a preview of your board with the icons gone. (or do it with the browser inspector)
You would need to fix a few buttons that have icons only without text in the templates, off the top of my head I can think of buttons for:Code: Select all
.fa-fw { display: none !important; }
Search, Advanced search, Quote, Topic Tools, Display & Sorting Options and all the BBcode buttons in the posting editor.
The hardest one to fix would be the little "unread topic" icon at the right side of the main topic icons, there is little room for text.
Yes that's true. A break could possibly help. Since I personally have the standard FA-ICON forDan Stylez wrote: Thu Sep 12, 2019 5:06 pm [...]
The hardest one to fix would be the little "unread topic" icon at the right side of the main topic icons, there is little room for text.
<i class="icon fa-external-link-square fa-fw icon-lightgray icon-md" aria-hidden="true"></i>
Code: Select all
.imageset.icon_topic_gotolatest {
background-image: url("./images/icon_topic_gotolatest.gif");
padding-left: 13px;
padding-top: 12px;
}
span.imageset {
display: inline-block !important;
background: transparent none 0 0 no-repeat;
margin: 0;
padding: 0;
width: 0;
height: 0;
overflow: hidden;
}
Code: Select all
<dd class="posts">{topicrow.REPLIES} <dfn>{L_REPLIES}</dfn></dd>
<dd class="views">{topicrow.VIEWS} <dfn>{L_VIEWS}</dfn></dd>
<dd class="lastpost">
<span><dfn>{L_LAST_POST} </dfn>{L_POST_BY_AUTHOR} <!-- EVENT viewforum_body_last_post_author_username_prepend -->{topicrow.LAST_POST_AUTHOR_FULL}<!-- EVENT viewforum_body_last_post_author_username_append -->
<!-- IF not S_IS_BOT and topicrow.U_LAST_POST -->
<a href="{topicrow.U_LAST_POST}" title="{L_GOTO_LAST_POST}">
<i class="icon fa-external-link-square fa-fw icon-lightgray icon-md" aria-hidden="true"></i><span class="sr-only">{VIEW_LATEST_POST}</span>
</a>
<!-- ENDIF -->
<br />{topicrow.LAST_POST_TIME}
</span>
</dd>
Code: Select all
<dd class="posts">{topicrow.REPLIES} <dfn>{L_REPLIES}</dfn></dd>
<dd class="views">{topicrow.VIEWS} <dfn>{L_VIEWS}</dfn><br /><a href="{topicrow.U_LAST_POST}" title="{L_GOTO_LAST_POST}"><span class="imageset icon_topic_gotolatest" title="{L_GOTO_LAST_POST}"></span></a></dd>
<dd class="lastpost">
<span><dfn>{L_LAST_POST} </dfn>{L_POST_BY_AUTHOR} <!-- EVENT viewforum_body_last_post_author_username_prepend -->{topicrow.LAST_POST_AUTHOR_FULL}<!-- EVENT viewforum_body_last_post_author_username_append -->
<!-- IF not S_IS_BOT and topicrow.U_LAST_POST -->
<a href="{topicrow.U_LAST_POST}" title="{L_GOTO_LAST_POST}">
<span class="imageset icon_topic_gotolatest" title="{L_GOTO_LAST_POST}">{L_GOTO_LAST_POST}</span>
</a>
<br /><span><a href="{topicrow.U_LAST_POST}" title="{L_GOTO_LAST_POST}"><span style="font-size:112%;">{L_GOTO_LAST_POST}</span></span></a>
<!-- ENDIF -->
<br />{topicrow.LAST_POST_TIME}<div style="float:right; margin-right:18px;"><a href="{topicrow.U_LAST_POST}" title="{L_GOTO_LAST_POST}" class="button"><span class="imageset icon_topic_gotolatest" title="{L_GOTO_LAST_POST}"></span></a></div>
</span>
</dd>
Code: Select all
<!-- IF not S_IS_BOT -->
<a href="{forumrow.U_LAST_POST}" title="{L_VIEW_LATEST_POST}">
<i class="icon fa-external-link-square fa-fw icon-lightgray icon-md" aria-hidden="true"></i><span class="sr-only">{L_VIEW_LATEST_POST}</span>
</a>
<!-- ENDIF -->
<br />{forumrow.LAST_POST_TIME}
Code: Select all
<!-- IF not S_IS_BOT -->
<a href="{forumrow.U_LAST_POST}" title="{L_VIEW_LATEST_POST}">
<span class="imageset icon_topic_gotolatest" title="{L_VIEW_LATEST_POST}">{L_VIEW_LATEST_POST}</span>
</a>
<br /><span><a href="{forumrow.U_LAST_POST}" title="{L_VIEW_LATEST_POST}"><span style="font-size:112%;">{L_VIEW_LATEST_POST}</span></span></a>
<!-- ENDIF -->
<br />{forumrow.LAST_POST_TIME}<span><div style="float:right; margin-right:18px;"><a href="{forumrow.U_LAST_POST}" title="{L_VIEW_LATEST_POST}" class="button"><span class="imageset icon_topic_gotolatest" title="{L_VIEW_LATEST_POST}"></span></a></div></span>