Thu Nov 21 2019
Copied to clipboard! Copy reply
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
$('.masthead h1')
.css({'font-size' :'48px', 'text-align':'center', 'margin-bottom': 0})

// copy style from submit button, we'll apply to a tag later
var style = document.querySelector('.masthead input[type="submit"]').style


$('.masthead .form-wrap')
.find('h3')
.html('Every path to greatness<br>starts with a first step.')
.css({'font-size' : '24px', 'margin-top' : '-3em'})
.end()
.find('p')
.remove()
.end()
.find('input')
.remove()
.end()
.append("<a href='https://smart.link/5dd5612d52b9e' class='testcta'>GET THE APP</a>")

$('.testcta')
.css({
	'margin-top': '3em',
	'background' : '#171717',
	'color': '#F1C516',
	'display' : 'block',
	'font-size': '16px',
	'font-family' : 'effra',
	'text-align' : 'center',
	'border-radius' : '6px',
	'padding' : '1.3em 2em',
	'font-weight' : '700',
	'margin-bottom': '0'
})