Is it possible to change the default icon of the ion-refresher directive with a custom PNG icon ? I've looked at this thread based on which I created a custom directive, but I can't integrate a PNG icon into it.
Any help ?
There's lots to choose from out of the box http://ionicframework.com/docs/api/directive/ionSpinner/
Ionic uses animated SVGs, having switched over from font icons. They also have some Javascript running to cover older versions of Android - that link should explain it. If you still want to roll your own refresh spinner it sounds pretty complex and you might be better off posting a question on Ionic forums.
Related
I have a query concerning changing css for buidfire app.
In specific to adapt the css for the buildfire feature "free text questionnaire" in the marketplace.
Need to adapt font size (to be smaller), the col of the query text and the buttons for answering and next or previous to be smaller.
Can someone pls kindly help where to find the relevant CSS document?
I have already downloaded the sdk on GitHub.
But we don't need to develop a new plugin, only need the relevant CSS for the free text questionnaire feature to adapt those 3 things.
In one video "how to use custom widget" there you have directly the view to see those 3 possibilities for HTML view, CSS view and JavaScript in the control panel and next to it directly the results in the widget.
Where can get this custom widget?
If it´s not possible with this custom widget which css file is the relevant one in the sdk buildfire js plugin?? There are several css documents shown.
Which is relevant for customize font-size, button size??
Thank you very much for your kind help!
Kind regards,
Angelika
I believe this the custom plugin you are looking for
https://github.com/BuildFire/customPlugin
However, not sure how would that help you since the free text questionnaire plugin is not an open source plugin so you cannot make changes to it and the custom plugin is just another plugin
I have a weird problem. Every time I go to a website who have the material icon I got the name of the icon, not the images. It's hard now when I use material to know which icon to use if I can't see what they look. The thing it's for my own app that working but other app this is what I got.
Do I need to reinstall Chrome ? My version is 53.0.2785.143
This one is https://developers.google.com/web/progressive-web-apps/
This one is https://design.google.com/icons/
This is Firebase look at the top right in the search.
I found the answer. I remove Material-Icons from my local fonts in my mac and now after a page refresh all work.
I'm working with fast report and I would like to change their default preview toolbar.
I need to replace some of the icons with icons of my own, and I need the ability to add my own custom buttons.
I looked at this thread from their support.
It mentions how to just change the icons to other fast-report provided icons, but I need to put in custom icons and add new buttons.
Has anyone done this before? Or knows whether this is possibly with FastReport.
If you have the professional edition of fastreports you have access to the source code.
I have heard of people editing this and recompiling to create thier own custom preview window
I have a large table that I want to appear in a dialog created by jQuery UI.
The development version I created worked correctly but note that this was not using the default Wordpress versions of jQuery and jQuery UI. I registered versions of both libraries for the purposes of the development version.
Using the same script and dialog contents I attempted to reproduce the dialog for my blog using the default versions of the jQuery libraries.
This produces a result where the dialog opens but in the display the default close button found in the title bar is on the left. When you mouse over this close button the icon moves down, but it still closes on a click.
In addition the resize icon appears in the bottom left as does an additional close button I added.
This led me to suspect that I have a css conflict between my table and the jquery UI css. I've noted posts suggesting that there is a problem with jQuery UI 1.8.16 and dialogs with a large amount of content.
However, I can't locate the css for the default jQuery UI library, I'm assuming that it must exist.
The easy answer to this problem would be to deregister the default versions and register external versions but that seems like a waste when the functionality is already in Wordpress.
Questions:
Where do I find the css in Wordpress for the default jquery UI
Any suggestions as to what may be the cause of this problem
Thanks
1) The CSS files are located at /wp-includes/css/jquery-ui-dialog.css (compressed) & /wp-includes/css/jquery-ui-dialog.css (development).
2) We'd need to see an example to have an idea of what the problem might be.
All the styling for that button is located on line 69 in:
/wp-content/plugins/mailchimp//css/flick/flick.css
I resolved the display issue by simply adding the CSS files from the jquery UI theme. Once that was in place everything displayed correct. Not elegant but it solved the problem quickly.
Facebook has these social plugins:
http://developers.facebook.com/docs/plugins/
that can be plugged into a website very easily. They offer limited customization options, and I was wondering if it is possible to change the default CSS to allow custom fonts and colors, re-size images and re-arrange the placement of the buttons or comment.
The particular plugin that I'm looking at is the comments plug in.
Any help or reference that can help me out is greatly appreciated.
Using javascript, YES you can.
give the iframe a name and using prototype framework it can be done like this
frame1.$('mydiv').style.border='1px solid #000000'
and so on. It is possible with any framework.
Make sure you load this javascript after everything is loaded.
Try adding it just before the </body> ....
You're changing the style locally, not on the remote server. In other words, your browser retrieves the vanilla content from facebook and then the JS does it's work inside your browser w/o FB knowing about it... (might be counter-EULA?)