Skip to content

Instantly share code, notes, and snippets.

@MAXHEADR0OM
MAXHEADR0OM / current-year.html
Last active July 25, 2018 14:48
Get Current Year for Footer
<script type="text/javascript">document.write(new Date().getFullYear());</script>
@MAXHEADR0OM
MAXHEADR0OM / index.html
Last active July 25, 2018 14:48
Prevent Google Maps Zoom
<div id="map-wrapper">
<iframe id="map-canvas"></iframe>
</div>
@MAXHEADR0OM
MAXHEADR0OM / map.css
Last active July 25, 2018 14:47
Display Counties on Google Maps
.map-wrapper {
width: 100%;
height: 400px;
}
@MAXHEADR0OM
MAXHEADR0OM / form.html
Last active July 25, 2018 14:46
Basic HTML Form
<div id="form-messages"></div>
<form action="mailer.php" method="POST" id="ajax-contact" class="contact-form">
<p>All fields are required.</p>
<label for="name">
Full Name
<input type="text" name="name" id="name" required>
</label>
@MAXHEADR0OM
MAXHEADR0OM / image-upload-http-error.php
Last active July 25, 2018 14:45
Wordpress Image Upload HTTP Error.
/* Paste in functions.php file in your active theme */
add_filter( 'wp_image_editors', 'change_graphic_lib' );
function change_graphic_lib($array) {
return array( 'WP_Image_Editor_GD', 'WP_Image_Editor_Imagick' );
}
@MAXHEADR0OM
MAXHEADR0OM / image-upload-http-error-alternate.php
Last active July 25, 2018 14:45
Alternate Wordpress Image Upload HTTP Error.
/* Paste code on the first line of the .htaccess file */
SetEnv MAGICK_THREAD_LIMIT 1
@MAXHEADR0OM
MAXHEADR0OM / index.html
Created January 19, 2017 16:51
Prevent Google Maps Zoom
<div id="map-wrapper">
<iframe id="map-canvas"></iframe>
</div>
@MAXHEADR0OM
MAXHEADR0OM / style.css
Last active February 3, 2017 18:54
Float secondary menu items to the right for Divi.
@media only screen and (min-width: 768px) {
#et-info { float:right !important }
}
@MAXHEADR0OM
MAXHEADR0OM / style.css
Created February 3, 2017 18:55
Prevents Logo Stretching on Mobile for Divi
@media only screen and (max-width: 981px) {
#logo {
width: 225px; /*change this to adjust the size*/
max-width: 225px !important; /* change this to adjust the size */
height: 100px !important;
max-height: 100px !important;
padding-bottom:12px;
}
}
@MAXHEADR0OM
MAXHEADR0OM / style.css
Created February 6, 2017 17:47
Hide Divi Theme Header
#main-header { display:none; }
#page-container {
padding-top:0px !important;
margin-top:-1px !important
}
#main-content .container {
padding-top: 58px !important;
}