Skip to content

Instantly share code, notes, and snippets.

@oak-wildwood
Last active March 15, 2016 21:09
Show Gist options
  • Save oak-wildwood/a55b6ab54b62ce50b718 to your computer and use it in GitHub Desktop.
Save oak-wildwood/a55b6ab54b62ce50b718 to your computer and use it in GitHub Desktop.
Horizontal Layout Tweak for BerniePB.com
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