5407 posts / 0 new
Last post
nagrgk
nagrgk's picture
why FLV not playing on ie -- cosine forum

 
Please add following code to play video flv on all browser
 
<div id="mediaplayer"></div>
 <script type="text/javascript" src="jwplayer.js"></script>
 <script type="text/javascript">
  jwplayer("mediaplayer").setup({
   flashplayer: "http://www.thepixals.com/sites/all/libraries/mediaplayer/player.swf",

412 posts / 0 new
Last post
nagrgk
nagrgk's picture
ajax dependant dropdowns - drupal

Create dependant dropdowns , This functionality required everywhere .
Create wonderfull forms with taxonomy manager , taxonomy , content taxonomy 
find more about this http://drupal.org/project/taxonomy_manager , http://drupal.org/project/content_taxonomy and drupal core module
 
just chill..............................

207 posts / 0 new
Last post
nagrgk
nagrgk's picture
Magento layout file refence -- exccellent tutorial by magsvento

Magento Layout Files Reference
This reference documents Magento’s layout files, i.e. the XML files in a app/design/frontend/<your interface>/<your theme>/layoutfolder. There’s a complete list of layout handles, e.g. default, for every layout file, e.g. page.xml. More importantly, this reference covers all of the XML elements, including their attributes and common values. If possible, examples are given for each element or attribute to further clarify their usage.

17 posts / 0 new
Last post
nagrgk
nagrgk's picture
Wonderfull css hacks

wonderfull css hacks  
 
/***** Selector Hacks ******/
/* IE6 and below */
* html #uno  { color: red }
/* IE7 */
*:first-child+html #dos { color: red } 
/* IE7, FF, Saf, Opera  */
html>body #tres { color: red }
/* IE8, FF, Saf, Opera (Everything but IE 6,7) */
html>/**/body #cuatro { color: red }
/* Opera 9.27 and below, safari 2 */
html:first-child #cinco { color: red }
/* Safari 2-3 */
html[xmlns*=""] body:last-child #seis { color: red }