MyBB Community Forums

Full Version: Mytabs Fontawesome Icon
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello I am using mytabs plugin, in first tab I would like to have home icon, fa fa-home.

Here is the code, how can I add it to here without breaking it?

<a href="{$link}" style="margin-right: 2px;">	<div style="display: inline-block; padding: 10px; border: 1px solid #282828; color: white; background-color: #303030;">		{$name}	</div></a>
Please try this:

<a href="{$link}" style="margin-right: 2px;"><div style="display: inline-block; padding: 10px; border: 1px solid #282828; color: white; background-color: #303030;"><i class="fa fa-home"></i>&nbsp;{$name}</div></a>


BTW: You should use a CSS class for tab styling, like:
<a href="{$link}" style="margin-right: 2px;"><div class="tabstyle" style="background-color: #303030;"><i class="fa fa-home"></i>&nbsp;{$name}</div></a>

CSS rules in theme global.css
.tabstyle{
display: inline-block;
padding: 10px;
border: 1px solid #282828;
color: white;
}
Yes thank you first one worked. I added 3rd code to global.css too but what should I do with 2nd code?
Replace the first code with the second one.
Oh okay done, thank you.
Fixed myself, no problem.