“Famous Nathan” documentary film logo and identity system by GRAPHIC HAVOC

pixel skylines
I'd rather be in outer space 🛸
i don't do bad sauce passes

★

祝日 / Permanent Vacation
Three Goblin Art

Kaledo Art
DEAR READER
Cosimo Galluzzi

roma★
let's talk about Bridgerton tea, my ask is open
tumblr dot com

Janaina Medeiros
🪼
Stranger Things
Misplaced Lens Cap
Claire Keane

Origami Around
taylor price
art blog(derogatory)

seen from Switzerland
seen from United States

seen from Lithuania

seen from United States
seen from United States
seen from United States

seen from United States
seen from Albania

seen from Netherlands
seen from United States

seen from France
seen from France

seen from United States
seen from Türkiye

seen from Germany

seen from Canada

seen from United States

seen from Singapore
seen from Türkiye

seen from United States
@ghava
“Famous Nathan” documentary film logo and identity system by GRAPHIC HAVOC

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
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.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
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.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
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)

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
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”