āFamous Nathanā documentary film logo and identity system by GRAPHIC HAVOC
I'd rather be in outer space šø
"I'm Dorothy Gale from Kansas"
Cosimo Galluzzi

Andulka
tumblr dot com
Alisa U Zemlji Chuda
Stranger Things

Janaina Medeiros
No title available

Discoholic šŖ©
almost home
KIROKAZE
d e v o n
Keni
RMH
styofa doing anything

PR's Tumblrdome

if i look back, i am lost

ā
hello vonnie
seen from United States

seen from Saudi Arabia

seen from Indonesia

seen from United States

seen from United States
seen from United States
seen from Canada
seen from United States
seen from Hungary

seen from India

seen from United States

seen from Malaysia

seen from Malaysia
seen from Germany
seen from United States
seen from United States
seen from United States
seen from Japan

seen from Canada

seen from United States
@ghava
āFamous Nathanā documentary film logo and identity system by GRAPHIC HAVOC
Building the custom theme design for this blog (part 10)
By default Tumblr will show the Source URL even if {SourceURL} is not included in the theme. Because this theme is primarily focused on publishing unique content as opposed to reposting, I added the below code to comment-out the Source URL from appearing.
{block:ContentSource} <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} --> {/block:ContentSource}
Also decided to not implement AddThis any longer.
High-res images in Tumblr text posts
Tumblr text posts have the limitation of images being a maximum width of 500 pixels. Gabrielle Wee's post āHow to use high-res images in text postsā provides a method of uploading accessing the 1280 pixel wide images for inclusion in text posts. This method works when viewing the post outside of Tumblr's backend Dashboard.
Even though Gabrielle's method describes a workaround to basically get {PhotoURL-HighRes} work with text posts, it does not account for how the text post is showing images in the Dashboard as grey boxes.
Tumblr presents externally hosted images in the dashboard (web browser & mobile app) as a grey illustration that looks like this...
When the grey illustration is clicked the images for that post are then shown.
In order to get the maximum 1280 pixel wide images in tumblr text posts and have the images show up correctly in the dashboard, the number in front of āmediaā in the source URL has to be removed.
So...
<figure class="tmblr-full" data-orig-height="720" data-orig-width="1280" data-orig-src="https://64.media.tumblr.com/59fee831294a45c3c79178c3f041d8a7/tumblr_n99t49GyzR1s29b8do2_1280.gif"><img src="https://64.media.tumblr.com/59fee831294a45c3c79178c3f041d8a7/tumblr_inline_paxb9utAzM1rd4vpm_540.gif" data-orig-height="720" data-orig-width="1280" data-orig-src="https://64.media.tumblr.com/59fee831294a45c3c79178c3f041d8a7/tumblr_n99t49GyzR1s29b8do2_1280.gif"></figure>
...should be
<figure class="tmblr-full" data-orig-height="720" data-orig-width="1280" data-orig-src="https://64.media.tumblr.com/59fee831294a45c3c79178c3f041d8a7/tumblr_n99t49GyzR1s29b8do2_1280.gif"><img src="https://64.media.tumblr.com/59fee831294a45c3c79178c3f041d8a7/tumblr_inline_paxb9vezkb1rd4vpm_540.gif" data-orig-height="720" data-orig-width="1280" data-orig-src="https://64.media.tumblr.com/59fee831294a45c3c79178c3f041d8a7/tumblr_n99t49GyzR1s29b8do2_1280.gif"></figure>
... or if using Markdown

Which will look like this...
Responsive YouTube Embed - problems with black bars
Started out with the method described here and here among many others discussing the same process.
This works fine on desktop browsers... with a little tweaking. The poster-frame looks good on page load, but video playback has black bars on left and right side.
The problem is on iOS because the controller is automatically hidden on page load so the padding-top: 25px; causes black bars to appear at the top and bottom of the video during playback.
Then attempted this...
#mediayt { padding-bottom: 56.25%; padding-top: 0px; height: 0; overflow: hidden; position: relative; margin-bottom: 20px; } #mediayt iframe, #mediayt object, #mediayt embed { top: 0; left: 0; width: 100%; height: 100%; position: absolute; z-index: 1; }
withā¦
<div id='mediayt'> <iframe width="960" height="540" src="//www.youtube.com/embed/yCyyaznaedY?rel=0&showinfo=0&controls=0&color=white&theme=light" frameborder="0" allowfullscreen></iframe> </div>
Which produces a player without the controller and without black bars on the desktop version and a very fine line at the top of the video when on iOS iPad.
YouTube no longer supports the hd=1 parameter.
āThe border, color1, egm, hd, and showsearch parameters, which are all only supported for the deprecated AS2 Player API, have been moved to a new section named deprecated parameters only used in the AS2 Player API.ā
Because controller is disabled, along with losing the ability to select quality, users also lose the ability to select to view in full screen.
On iOS iPad once video is clicked to play, user is unable to click video to stop playback and the controller is hidden so can't view in fullscreen.
Setting controls=2 produces better results. On the desktop video is presented without controls on page load then when video is clicked to play controls appear and then hide. So user has ability to select quality and fullscreen.
The problem occurs on iOS iPad. When the video is clicked to play it responds to a click but does not play. There is a quick flash as if something happened but the video does not start. If clicked once more the video does begin to play. Buggy.
Then attempting...
#mediayt { padding-bottom: 56.25%; padding-top: 0px; height: 0; overflow: hidden; position: relative; margin-bottom: 20px; } #mediayt iframe, #mediayt object, #mediayt embed { top: 0; left: 0; width: 100%; height: 100%; position: absolute; z-index: 1; }
withā¦
<div id='mediayt'> <iframe width="960" height="540" src="//www.youtube.com/embed/yCyyaznaedY?rel=0&showinfo=0&color=white&theme=light" frameborder="0" allowfullscreen></iframe> </div>
This produces best results I've found so far.
The remaining problem is that on iOS iPad there is still a very small, possibly one pixel high, black line at the top of the video.
and then withā¦
#mediayt { padding-bottom: 56.21%; padding-top: 0px; height: 0; overflow: hidden; position: relative; margin-bottom: 20px; }
On iOS iPad there are two very tiny black lines on the left and right side of the video during playback and an ultra tiny line at the bottom of the video on page load before being selected to play.
After attempting a lot of measurements in increments to adjust and remove the black lines, at this point I have been unsuccessful in getting rid of them on iOS iPad.
In addition to the problems outlined above, the uploaded custom thumbnail that appears on the desktop side of things does not show, or is very inconsistently showing up, in the HTML5 player on the iOS side.
Pleased that Graphic Havoc's work for 10.Deep is featured on Branding Served today. The Branding Served Curatorial Team features a small number of projects to appear on the front of their gallery each day. They only pick the best work that effectively promotes the Branding Served community.
View outside the studio today.
Photo of the 184 Kent Ave. Graphic Havoc studio in 2005
Animation still from Current TV Identity
Rudy's Barbershop Identity, overall look/feel development including Art Direction and Design for website, posters, documentary titles, and other miscellaneous promotional deliverables.
GraphicHavoc.com 1996 website
Flashback to the first Graphic Havoc website built in 1996.
Restaurant identity development for Miller Union in Atlanta Ga. Art direction and design of logo, signage, menus and printed collateral materials. A stamp and recycled paper based identity was developed for on site printing to accommodate daily menu changes. Miller Union was ranked as āone of Americaās 10 best new restaurantsā by Bon ApĆ©tit Magazine in 2010.
Album packaging art direction, design and illustration by GHAVA for Beneath Atumn Sky āEnki-Dus Monoā released by Hefty Records in 2001.
10.Deep Spring 2013 Delivery 2 Marketing Campaign & Lookbook Art Direction & Design
Established in 1995, 10.Deep is one of the original New York streetwear clothing brands. Graphic Havoc worked closely with founder Scott Sasso on the art direction and design of seasonal campaign imagery for use in the brands lookbook and online marketing and promotional endeavors.
# Work in progress on website design for Derek-Lerner.com For well over a year I wanted to create an art portfolio website that was focused on presenting work in such a way as to be close as possible to viewing the art in person at a gallery. I wanted to create a site with no immediately visible navigation elements or descriptive text (i.e "clutter") and to utilize access keys to get around the site by keyboard. For the primary navigation system I utilized a right-click contextual menu and implemented click through pagination with hidden left and right "hot areas" for next and back links. As minimal as this design is, it turned out to be quite complex in terms of considering its usability. The home page initially presents viewers with information about how to navigate the site. I would have liked to avoid this, but is completely necessary due to the learning curve involved with this design. The site is best viewed in full screen. I spent some time attempting to implement a link that would easily switch the browser to full screen mode which did work, but would close out of full screen mode when moving from page to page, so I abandoned that idea. I'm close to completing the development of this and wanted to share some screen shots of work in progress. ~ [Derek Lerner](http://ghava.tumblr.com/tagged/derek-lerner)
A server side solution - āAdaptive Images detects your visitor's screen size and automatically creates, caches, and delivers device appropriate re-scaled versions of your web page's embeded HTML images. No mark-up changes needed. It is intended for use with Responsive Designs and to be combined with Fluid Image techniques.ā
āIE Fix: Bicubic Scaling for Imagesā