-
Notifications
You must be signed in to change notification settings - Fork 359
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using metro-bootstrap with Font-Awesome-icons in tiles #30
Comments
Is this project even active? |
The icon is large, so it pushes the text below. |
I started using this skin today and ran into the same idea. Here's a quick and dirty way to combine Font Awesome with tiles: Add the following css class to your style sheets:
and write your iconized tiles like this
|
I extended your solution a little to add some text under the icon: for css: .tile-icon
margin 20px
color white
line-height 100px
font-size 60px
.small-tile-description
font-size 12px
color white and the html output <ul class="thumbnails">
<li class="span3 tile tile-red">
<a href="#" title="My Title">
<i class="tile-icon icon-group"></i>
<div class="small-tile-description">My Title</div>
</a>
</li>
</ul> but maybe there will be a better solution from the developers here ;) |
Unfortunately, we no longer have the time to work on this project. This means that bugs will not be fixed and features will not be added unless someone else does so. If you're interested in fixing up metro-bootstrap, please reply to this GitHub issue (#65). Thank you for your support. |
Hello @z0nk
|
Hi,
I am trying to use the Font-Awesome-icons in the tiles.
this is my code:
the issue is that there is no text visible and the icon is only visible if there is a mouse-hover event. what am i doing wrong?
The text was updated successfully, but these errors were encountered: