Categories
App Reviews Tutorials Video Tutorials

Laying Out a Website with Inkscape

The other day I decided to revamp my website but with the slightly difference that in my house I have a Linux Unit with Ubuntu 13.12. So I don’t have the option of any Adobe brand product, first because I want to proof that open source rocks, so I give Inkscapeā„¢ a try, my favorite […]

Categories
Resources Tips Tutorials

Making your videos responsive to screen resolution with JQuery

This is a nice piece of code I found in Stack Overflow, but I love the solution posted by Darwin in October 12 2012 and I tweaked to fit my needs and here is my code: function adjustVideoRatioToParent(arr){ var element = (arr.e === undefined)? jQuery(‘iframe[src*=”youtube”]’) : jQuery(arr.e); //set element or elements var eParent = element.parent(); […]