
Companion is sending me to Salt Lake City for the Uniflow conference. I’m really looking forward to meeting fellow developers of this unique product.
So many questions…
There are 32 posts filed in Programming (this is page 3 of 4).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
/* #Media Queries ================================================== */ /* Smaller than standard 960 (devices and browsers) */ @media only screen and (max-width: 959px) {} /* Tablet Portrait size to standard 960 (devices and browsers) */ @media only screen and (min-width: 768px) and (max-width: 959px) {} /* All Mobile Sizes (devices and browser) */ @media only screen and (max-width: 767px) {} /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */ @media only screen and (min-width: 480px) and (max-width: 767px) {} /* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */ @media only screen and (max-width: 479px) {} |
[iframe src=”http://www.jonathanfricke.com/sandbox/nfl-map/nfl-division-map.htm” width=”100%” height=”900″]
Yoast SEO is a phenomenal plugin for WordPress. It is an SEO tool that can rewrite your site page titles on the fly (in addition to a smattering of other SEO goodies). However, when using the Warp Framework, the Yoast SEO site name may output twice in your page title. This is a result of the Warp framework outputting the site name before it outputs wp_title(); To get rid of the first instance of the site name in your page title you need to alter the following file:
\wp-content\themes\dryer\warp\systems\wordpress\layouts\head.php at line 6:
1 |
<?php bloginfo('name'); ?><?php wp_title(); ?> |
Remove the first php element so that it doesn’t output the blog name. As such, line 6 of head.php now reads:
1 |
<?php wp_title(); ?> |
That’s it! Hope it helps
They will be supporting old versions of IE (aka “The Devil’s Browser”). Continue reading
Did a client just deliver some FLVs but you have no way of viewing them? It happens. Continue reading
Lately, I’ve been spending a considerable amount of time working on my AS3 coding. For those of you that may not know it, ActionScript3 is quite a departure from ActionScript 2. Continue reading