Skip to content

Instantly share code, notes, and snippets.

@dandange8005
dandange8005 / siteground-ssh-setup.md
Created April 24, 2017 21:30 — forked from EricBusch/siteground-ssh-setup.md
Here are instructions on setting up SSH access on SiteGround using a Mac.

Open the Terminal app on Mac.

Change directories so that you are in your user's .ssh directory. For example, my user directory is named "Eric" so I would type the following into Terminal:

cd /Users/Eric/.ssh

Now you need to generate your SSH key pairs. Enter the following command into Terminal (source 1, source 2):

ssh-keygen -t rsa

@dandange8005
dandange8005 / caldera-button.css
Created January 20, 2017 12:56 — forked from Shelob9/caldera-button.css
CSS for changing Caldera Forms buttons (including submit button) color, width or centering the button. https://calderawp.com/doc/button/
/** Center the button (inside it's column) **/
.caldera-grid .btn {
display: block !important;
margin-left: auto;
margin-right: auto;
}
/** Make button the full width of the column **/
.caldera-grid .btn {
width:100%