Hi, I'm Ahmad. I make websites with Joomla!

Welcome, Feel free to navigate my website and I will be glad to hear from you.

Latest news: Calendar Stamp is UPDATED!!! Version 1.5 is out!

Latest Downloads

What's going on twitter

  • I earned the Bootcamp sticker on @GetGlue! http://bit.ly/bIFZqU
  • @davidwalshblog : Python FTW!!!!!!!!!111111
  • should rethink the way I *HTML/CSS* with handheld sets on my mind :/
Blog
28
Feb
2010
Drop downs, Flash and some CSS! PDF Print E-mail

LayersI've came across this issue a lot on forums and help groups "My drop down menu is hidden by Flash/Banner/Other-Element" First a few principles should be cleared to understand how to get it fixed.

  • The Flash movie must have the wmode set to opaque. This will prevent the Flash movie from playing in the topmost layer and allow you to adjust the layering of the movie within other layers of the HTML document.
  • The menu container have to be positioned with CSS using (relative)
  • The Flash movie container must have a z-index value less than the menu container

So the CSS for the menu container should be like :

#menu-container {
         position:relative;
         z-index:100;
}

and the Flash movie should be :

 wmode=opaque 

This should place the drop down menu in-front of the Flash movie

Before to After

Hope this saves anyone from frustration! Have a nice day Smile

 
17
Jan
2010
DOCman Ultimate Download Module Update! PDF Print E-mail

Yesterday I received an email from Dario saying he's implemented a new feature for DOCMan Ultimate Download Module. Dario's added the ability to filter documents by category ID. I was asked to implement this feature long time ago but I didn't have time cause of my military duties! Thanks to you Dario and thanks to everyone at the opensource community! You're making this a better place!

Download v1.6

 
15
Nov
2009
Calendar Stamp 1.5 Released PDF Print E-mail

New feature in Calendar StampCalendar Stamp 1.5 has been released today and I am happy to announce it's now Language-Issues Free!, The new version fix all language issues reported before. I've moved months names (short and full) to the language file so now no more problems with non-English characters on languages like German, French or even Japanese! Also this release features a minor function when using user_style mode. Now the user can choose to display the months in letters short (like Jan) or full (like January). The code has been cleaned (new version is 100 line less than the previous one!) and optimized for better performance.

Read more...
 
14
Nov
2009
Outputing text in content plugins PDF Print E-mail

plugin In a previous article I wrote about using JText method to output text from the language files. This week I was working on Calendar Stamp and moved all the text to external files. I discovered that JText doesn't work in content plugins unless you call the function getLanguage and load the language manually. Something like this should work:

   $lang =& JFactory::getLanguage();
   $lang->load('plg_content_plugin',JPATH_ADMINISTRATOR);
Read more...
 
21
Oct
2009
New tutorial posted! PDF Print E-mail

Internationalization/MultilingualismI've posted a new tutorial in the series for creating Joomla! extensions. Multilingual Support, Speaking your user's language! explain to beginners how to code extensions ready for internationalization.

I hope you enjoy it. Don't hesitate to contact me if you have any question or recommendation. Have a nice day Smile

 
<< Start < Prev 1 2 3 4 5 6 7 8 Next > End >>

Page 1 of 8