Created
November 29, 2012 01:11
-
-
Save quicksnap/4166048 to your computer and use it in GitHub Desktop.
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
// Remove white space between table cells | |
$('.wysiwyg-content table').attr('cellspacing', 0).attr('cellpadding', 0); | |
// 100% Width content area. Useful for making full-width backgrounds that | |
// span the page, and centered width-restrained inner content. Current | |
// width is 978px for reference. | |
// Remove these lines to return to normal width. | |
$('.container-right').width('100%'); | |
$('.container-right #header').width('978px').css('margin', '0 auto'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment