Last active
March 15, 2016 21:09
-
-
Save oak-wildwood/a55b6ab54b62ce50b718 to your computer and use it in GitHub Desktop.
Horizontal Layout Tweak for BerniePB.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function() { | |
var $callGoals = $('#call-goals-wrapper'), | |
$map = $('#map-wrapper').parent('div'); | |
$callGoals.css({ | |
position: 'absolute', | |
left: '0', | |
right: '50%', | |
width: '50%' | |
}); | |
$map.css({ | |
position: 'absolute', | |
right: '0', | |
left: '50%', | |
width: '50%' | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment