Last active
May 2, 2018 03:31
-
-
Save naqushab/fe3d9318d91051a43cbaf92223034e33 to your computer and use it in GitHub Desktop.
Site Cleaners
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
.themonic-nav ul.nav-menu,.themonic-nav div.nav-menu>ul { | |
background: none repeat scroll 0 0 #111111; | |
} | |
a { | |
color: #0000ff; | |
} | |
#menu-top>li a { | |
color: #ffffff | |
; | |
} | |
.themonic-nav li ul li a { | |
background: #111111; | |
} | |
#secondary, .leftSideBarParent, .header-gfg-logo, .masterhead-buttons, footer, .layout { | |
display: none; | |
} | |
.site-content { | |
width: auto; | |
} | |
button.gsc-search-button.gsc-search-button-v2 { | |
color: #ffffff; | |
background-color: #000000; | |
} | |
div.gsc-input-box.gsc-input-box-hover { | |
background-color: #0a0a0a; | |
color: #1f1c1f; | |
} | |
span.nav-previous a { | |
background-color: #ebebeb; | |
border-style: none; | |
border-color: #ffffff; | |
} | |
span.nav-next a { | |
background-color: #ebebeb; | |
border-style: none; | |
border-color: #000000; | |
} |
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
$(document).ready(function(){ | |
$('#secondary').hide(); | |
$('.leftSideBarParent').hide(); | |
$('.header-gfg-logo').hide(); | |
$('.masterhead-buttons').hide(); | |
$('footer').hide(); | |
$('.site-content').css('width', 'auto') | |
}); |
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
$(document).ready(function(){ | |
$('.header-nav').hide(); | |
$('footer').hide(); | |
$('#sidebar-primary').hide(); | |
$('#comments').hide(); | |
$('#main > div').removeClass("wrap"); | |
$('.post-navigation').hide(); | |
$('.sharedaddy').hide(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment