new font awesome icons not displaying in Joomla - joomla

I've downloaded the updated FA icons via plg_nsfontawesome_v1.6.zip and installed via Extension Manager into Joomla 3 site; installation appears successful.
All icons I have tried work ok EXCEPT the icons that are new in FA v4.3.0; for example, fa-bus and fa-mercury don't display.
Note I have been using FA for a while; and if I replace fa-bus with fa-car the car icon displays ok

Related

how to add icon to a module on the menu of application?

i'm using odoo 11 and i have installed open HRMS core which install a specific theme. After that i have installed another module which named overtime (bt_hr_overtime_automatic) to satisfy my needs but the problem is in the menu of the apps the new module doesn't has a icon and i want to add one(Ps: the module has a picture named "icon.png" in the folder /static/description/). Any idea on how to do that ?
You must use "web_icon" in your menu to show your own icon. Save your icon in a directory. Size can be 256x256 File format should be .ico
Don't forget to upgrade your module after adding this code. Sometimes cache will show the old icon, if so try this in incognito mode or clear the cache
web_icon="your_module_name,static/description/icon.ico".
Example Code:
<menuitem name="Overtime" id="your_menu_id" action="your_action_id" web_icon="your_module_name,static/description/icon.ico"/>
Front End:
If you want to add it in front end Go to
Settings-->Technical Settings-->Menu Item-->Your Menu-->Web Icon File Please refer screen shot
First: create static folder inside your module directory .
Second: create description folder inside static folder.
Third: Make sure that your icon image is in png format .. like : icon.png .. and put it in static/description/
Finally: Restart Odoo Server and refresh your browser .
i tried it with odoo12 and it works

Adding Image in Magento Customized PDF (Extension)

I have an extension installed on my Magento in which I customized it to fit the my expectations.
But in my PDF that I customized, I want to place an image where the picture is placed on the media folder only,
The link of my image is like this http://xxxxxxxx.com/ecommerce/media/GlobalPdf/default/img/barcode.jpg
I can open the link onm the browser and it shows the image but when I included it on the XML, it does not show, it shows only a black box with a white X on it.
Am I missing something? I tried placing it on other locations but to no avail.

Mac OS X PDF manipulation

I'm new to mac OS developing (I've been only developing on iOS before)
I've created a mac application. That last thing I need to do is the following:
Either:
Open an existing pdf file at given page
or
create new pdf file from the existing pdf file containing pages between given page and given page and open it.
Example:
parameters: given page : 47 --> open pdf file at page 47
or
parameters: given pages : 47, 55 --> create a new pdf file containing 9 pages (pages 47 to 55 from the initial pdf) and open it (somehow).
How should I go about this?
Is it necessary to create another view and process each pdf page using pdf kit on my own mac app control? Or is there any way I could use , say.. , Adobe to open the pdf at a given page?
Any advice should do :)
Thanks
Wound up using NSPanel with PDFView (Quartz framework) to open the pdf at specified page.. Maybe this will help someone

How do I prepare fresh magento install (ver. 1.8.1) for local theme developement?

Just installed a fresh copy of Magento and I would like to know what settings/configurations have to be made in order to begin theme development. I'm running php 5.4 on a mac and for coding the theme I will use SCSS.
You have to create a new theme folder and theme package folder (optional) as followig
app/design/frontend/{theme package name}/{theme folder name}/
then create two folders layout and template and work in them.
Then create the skin related folders in skin/frontend/{theme package name}/{theme folder name}/ and place all your theme related css and images here.
Note that you have to keep the theme package name same for both.
To activate this theme on the site, log-in to your admin panel, go to
system >> configurations >> Design and click the Package Tab and enter your theme package name then open the Theme tab beneath it and enter the Template, Skin and layout theme folder names, if the theme folder name is same for all of them then just enter it in the Default field and leave others empty and save the settings. Now clear the site Cache by going to system >> Cache Management, select all the options and click Submit button and reload the frontend. The new theme will be in action.

Windows Phone 7 Development - Image Source Issue

While developing a project for Windows Phone 7, I'm adding an image control onto the Grid and using the following code in C# to set the image source:-
Uri nUri = new Uri("/TestImage.png", UriKind.Relative);
BitmapImage nBitmapImage = new BitmapImage(nUri);
FacebookImage.Source = nBitmapImage;
The problem is that whenever I use custom images, they do not show up when I build and run the app on the emulator. Whereas, if I change the image file name in the above code to one of the images that are included in the project by default (ApplicationIcon.png), the image shows up upon running. I would like to know if this is a problem with the code or with the custom image files I'm using. I'm ensuring that the images I'm creating are proper and have the same attributes as the images included by default.
Could someone please help me out with this.
Thanks.
Click on your custom picture in Visual Studio's Solution Explorer. Then, look at the property window (press F4 if it's closed), and at the "Build Action" line. It basically tells the compiler how to embed your file in the application. The build action of ApplicationIcon.png should be "Content", just set the same one for your custom pictures.

Resources