Skip to content

Instantly share code, notes, and snippets.

View visualkom's full-sized avatar

Antonio La Scala visualkom

View GitHub Profile
@visualkom
visualkom / ie67891011-css-hacks.txt
Created July 1, 2021 09:26 — forked from ricardozea/ie67891011-css-hacks.txt
IE CSS hacks - IE6, 7, 8, 9, 10, 11
IE6 Only
==================
_selector {...}
IE6 & IE7
==================
*html or { _property: }
IE7 Only
==================
@visualkom
visualkom / functions.php
Created December 19, 2020 17:01 — forked from paulcollett/functions.php
Remove Yoast HTML Comments “This site is optimized with the Yoast WordPress SEO plugin”
// For Yoast SEO Plugin Version: 14.1+ add to your Wordpress Theme's functions.php...
// Remove All Yoast HTML Comments
// https://gist.github.com/paulcollett/4c81c4f6eb85334ba076
// Credit @devendrabhandari (https://gist.github.com/paulcollett/4c81c4f6eb85334ba076#gistcomment-3303423)
add_filter( 'wpseo_debug_markers', '__return_false' );
// For Yoast SEO Plugin Version: < 14.1 add to your Wordpress Theme's functions.php...
@visualkom
visualkom / ROT13.scpt
Last active March 24, 2025 17:25
[ROT13 service for Mac OS X] #mail #html
# ROT13 service for Mac OS X
#
# Adds a ROT13 option to the text selection context menu in all apps
#
# Use Automator.app to create a new service, and then select the Run AppleScript
# action. Select the "Output replaces selected text" option. Paste this code in
# to the text box, and save as ROT13. Now switch to a new app, select some text,
# and open the context menu to find the new option.
#
# Based on code found at:
@visualkom
visualkom / CSS code to make the WordPress VideoJS plugin responsive
Last active December 5, 2019 15:59 — forked from jameshibbard/gist:3312803
[CSS code to make the WordPress VideoJS plugin responsive] #css #wp
.videoWrapper {
position: relative;
padding-bottom: 56.25%; /* video dimensions - height/width */
padding-top: 30px;
height: 0;
z-index: 1000;
}
video {
position: absolute !important;
@visualkom
visualkom / meta-tags.md
Last active December 5, 2019 16:29
[HTML Meta Tags List] #html

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8' />
<meta name='keywords' content='your, tags' />
<meta name='description' content='150 words' />
<meta name='subject' content='your website's subject' />
<meta name='copyright' content='company name' />