Skip to content

Instantly share code, notes, and snippets.

@kslambert
kslambert / gist:c068b9cf05265709167b
Created July 9, 2014 18:00
Welcome Message with Links
<p><strong>Questions? Come chat with us! We're here, send us a message.</strong></p><p>Or check out some great links:</p><p><strong><a href="http://www.olark.com/help">➞ Help Center</a></strong></p><p><strong><a href="https://www.olark.com/help/guide">➞ Getting started guide</a></strong></p><p><strong><a href="http://www.olark.com/help/clients">➞ Setting up a chat client</a></strong></p>
### What
[what's the pr for?]
[Trello Card]()
and/or
[JIRA Case]()
### Screenshot (if needed)
![Screenshot]()
@kslambert
kslambert / helpscout-nav.js
Last active March 27, 2019 18:46
Helpscout Nav
// Most of this code is reorganising elements placed by helpscout
$(document).ready(function() {
var navUl = $("#mainNav .nav-collapse .nav");
navUl.empty(); // removes current links
navUl.append('<li class="home-link"><a href="#">Home</a></li>'); // for responsive only
navUl.append('<li><a href="#">Features</a></li>');
navUl.append('<li><a href="#">Tour</a></li>');
navUl.append('<li><a href="/">Learn</a></li>');
navUl.append('<li><a href="#">Reviews</a></li>');