high-mind.com
Hi. I’d like to remove the entire ‘Home’ menu that is under my header. I have searched through these forums and tried the custom CSS codes you’ve given other people but none have worked. I’ve been able to change the BG color of the menu to match my home page background color, but like I said I’m trying to entirely remove the home menu.
I would also like to add a ‘sticky’ menu that stays on top (similar to this website when you’re at the top of the webpage, however I’d like it to stay fixed at the top when you scroll down: higherperspective.com ) my custom CSS is below.
@media screen and (min-width: 1061px) {
.site { position:center; }
#masthead {
background-color: #B9D6B1;
display: block;
left: 0;
position: fixed;
top: 0;
width: 100%;
z-index: 999;
}
#hgroup-wrap,
#header-menu {
margin: 0 auto;
width: 0px;
}
}
@media screen and (min-width: 0px) {
#hgroup-wrap,
#header-menu {
width: 0px;
}
.home #main {
padding-top: 0px;
}
}
.site {
background-color: #B9D6B1;
color: #000;
}
<?php query_posts(
'showposts'=>10,
'order'=>DESC
); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
#header-right .widget_search { display: none; }
#hgroup-wrap { padding: 0; }
/* Padding Above Logo */
#site-logo {
padding-top: 0px;
}
/* Padding Above Site Title */
#hgroup {
padding-top: 0px;
}
/* Padding Below Site Description */
#hgroup-wrap {
padding-bottom: 4px;
}
.page .page-header { display: none; }
.entry-header .entry-meta { display: none; }
#featured-post img,
#main-slider img {
box-shadow: none;
}
.home #access { display: none; }
I’d also like to say WOW, I’ve never seen customer service as good as yours.