Web

WP Engine Migration Encoding Issue

Before the migration there should be the those defines within the wp-config file so you could check to see what they are set to. I used one of the standards: define('DB_CHARSET', 'utf8'); define('DB_COLLATE', 'utf8_unicode_ci'); But you could use sftp and go to the wp-config.php file and these should be listed right below the database credentials […]

How to style Infusionsoft forms

Example: <div class="infusion-field" style="display: inline-block; width: 30%; padding-right: 5px;"> <input class="infusion-field-input" style="width:100%;" id="inf_field_LastName" name="inf_field_LastName" placeholder="Last Name *" type="text" /> </div> &nbsp; <div class="infusion-field" style="display: inline-block; width: 30%;"> <input class="infusion-field-input" style="width:100%;" id="inf_field_Email" name="inf_field_Email" placeholder="Email *" type="text" /> </div><br>

SFTP Issues/Host Keys

Delete Host Key on Mac/Linux To delete your local host key, you just need to remove your “known_hosts” file, which you can do using the following command in your local Terminal window: rm .ssh/known_hosts

How to download a zip file presentation on Slides.com

Login to slides.com on Firefox. When you are logged in paste this URL: https://slides.com/api/v1/decks/1021175/exports/153231.json Once pasted, remove /153231.json from the end of the link. You will then see a list of files and the most recent one is the at the top of the link. Triple click the URL HTTPS post and past in in […]

How to make a video fluid width responsive

Place the code below in an html/text element and place the video URL after the first Div class. <div class="videoWrapper"> <!-- Copy & Pasted from YouTube --> <iframe width="560" height="349" src="http://www.youtube.com/embed/n_dZNLr2cME?rel=0&hd=1" frameborder="0" allowfullscreen></iframe> </div> Then Paste the below code in the Theme's CSS file: .videoWrapper { position: relative; padding-bottom: 56.25%; /* 16:9 */ padding-top: 25px; […]