glyphicons

Bootstrap 3 Glyphicons are not working in window mobile

妖精的绣舞 提交于 2019-12-06 13:34:13
Bootstrap 3 Glyphicons are not working in window mobile. They are working in other devices(Expect window phone) Nathan Bills As Mathew Hintzen has posted, the easiest way is to include the MIME specification in your web.config. Also, as he pointed out, this will cause 500 Internal Server Errors if you are using the Bundling of styles/scripts: <configuration> ... <system.webServer> ... <staticContent> ... <mimeMap fileExtension=".woff" mimeType="font/x-woff" /> </staticContent> </system.webServer> </configuration> To answer the OP's question AND to fix the 500 Internal Server errors, include a

How to create icon inside form postlink with cakephp and twitter bootstrap

匆匆过客 提交于 2019-12-06 11:39:18
问题 This gives me what I want: <?php echo $this->Html->link( $this->Html->tag('i', '', array('class' => 'glyphicon glyphicon-edit')) . " Edit", array('action' => 'edit', $comment['Comment']['comment_id']), array('class' => 'btn btn-mini', 'escape' => false) ); ?> But when I create a Form postLink I don't know how to get the remove icon in front of it.. <?php echo $this->Form->postLink( $this->Html->tag('i', '', array('class' => 'glyphicon glyphicon-remove')) . " Delete", array('action' => 'delete

Use Glyphicons or Font-Awesome in pdfmake prints

感情迁移 提交于 2019-12-06 06:07:18
I am developing a webapp using pdfmake for the printing. In more recent days I started using Glyphicons and Font-Awesome-Icons in my project, now I need those in the printout as well. But I can't really imagine what would be the best way to achieve this. I see two possibilities: Include the respective Font in pdfmake and create something like a map which determines the Icons font-representation by it's class name (because this is what is used in the app). In this case I could still use the font colors for the Icons I could use something like phantomJS to generate Images of the Icons, but I don

Remove Glyphicons from Bootstrap

倖福魔咒の 提交于 2019-12-06 03:25:10
问题 How can I remove all instances of glyphicons from the bootstrap 3? It looks like it's heavily embedded into the .css file :( I'm trying to keep the file size minimum as possible. 回答1: I'm going to assume that you're not building Bootstrap with the LESS or SASS code base and are downloading the whole library pre-built. If so, go to Bootstrap's customize page and uncheck any components that you don't want, i.e. Glyphicons, then download the new source. A lot of the online font library tools, I

Adding extra glyphicons to bootstrap

五迷三道 提交于 2019-12-05 18:22:42
问题 Dear fellow designers/developers I have created 8 extra glyphicons for my bootstrap website. Uploaded them to icomoon and downloaded them as font, this all works perfect. I am able to add my font to my CSS and use it in HTML withou any problem, but I want to use the font as extra Glyphicons. How can I do this? 回答1: refer to this website which provides the font icons to bootstrap Font-Awesome download fontawesome here fontawesome.io add css file link to your page <link href='/path/to/font

Xamarin Forms Icons

烈酒焚心 提交于 2019-12-05 17:15:56
问题 I'm wondering how I can implement icons inside my Xamarin Forms app. I want to use something like glyphicons or font awesome. However, I have no idea how to implement it into my xaml/c# pages. Ideally, I am aiming for something like this: If someone could provide the code to display an icon like the search bar or three lines, that would be great. I can format it to look pretty. I'm struggling with how to actually pull in the icon! 回答1: The easiest way may be is to use https://github.com

Font Awesome icons disappear after refresh of browser

最后都变了- 提交于 2019-12-05 16:02:49
My glyphicons disappear from the Internet Explorer 11 webpage after refreshing the page (F5). But when I open the webpage (after first refreshing it)by clicking on its menu link, the page is displayed correctly . . . In chrome this works just fine even after pressing F5. I'm running Bootstrap v3.3.1. I've taken sample code from http://fortawesome.github.io/Font-Awesome/examples/ but even this simple code does not work after pressing F5 <div class="row"> <class ="col-lg-12"> <div class="list-group"> <a class="list-group-item" href="#"> <i class="fa fa-home fa-fw"></i>  Home </a> <a class="list

Set border color to glyphicon

▼魔方 西西 提交于 2019-12-05 03:24:23
I want to add a border to glyphicon font. For example, glyphicon-heart that has a red border and same color as the background. How can I do this? border-color: 'red' didn't do the job. no border will be displayed. Basically the glyphicon icons are fonts and you can change the color of them just with the css color property. So, changing the color of the font, you will change the background. Now, fonts have no border-color property, but you can simulate it using text-shadow .glyphicon{ font-size: 60px; color:red; text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black; } http:/

Bootstrap Glyphicons not rendering using local Bootstrap version

社会主义新天地 提交于 2019-12-05 00:48:39
I am using bootstrap in django and it works perfectly for all other bootstrap classes except icon classes like: class="glyphicon glyphicon-download-alt" Snapshot with error at right bottom: Snapshot when bootstrap.min.css file included: On doing inspect element it contain all glyphicons its snapshot is- It only works if I link http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css in my html file; but it does'nt work if I include my bootstrap.min.css from my PC. Otherwise, every bootstrap class works perfectly. Hope you understand my problem. Thanks in advance. It isn't working

Glyphicons shows up fine in development but not when hosted in IIS

情到浓时终转凉″ 提交于 2019-12-05 00:07:03
问题 I am able to view my icons just fine when during development, however after creating the deployment package using visual studio's build deployment package, and hosting it on my local (same PC) IIS7.5 server, the icons do not show up. I just get a blank box for all of them I checked the path, the images are there. I googled around, and found someone with the same issue he had, but he was hosting his web project on apache, so what he did was to chmod all his files and folders to 777. I kinda