Skip to content

Instantly share code, notes, and snippets.

@naqushab
Last active May 2, 2018 03:31
Show Gist options
  • Save naqushab/fe3d9318d91051a43cbaf92223034e33 to your computer and use it in GitHub Desktop.
Save naqushab/fe3d9318d91051a43cbaf92223034e33 to your computer and use it in GitHub Desktop.
Site Cleaners
.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;
}
$(document).ready(function(){
$('#secondary').hide();
$('.leftSideBarParent').hide();
$('.header-gfg-logo').hide();
$('.masterhead-buttons').hide();
$('footer').hide();
$('.site-content').css('width', 'auto')
});
$(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