Remove search bar from top of page
-
I have the Chronicle wordpress theme and I want to get rid of the search bar at the top of the page. Then bump the header image up closer to the top menu bar so there isn’t all that white space. How can I do this? I have the CSS upgrade. Below is the site.
The blog I need help with is: (visible only to logged in users)
-
To get rid of the box, use
form.searchform button.searchsubmit {
display: none;
}To get rid of the button, try
form.searchform input.searchfield {
display:none;
}Hope it helps!
-
That did get rid of it. Thanks. How can I get my header image to move up closer to the top menu bar? The search box is gone but the there is still that white space.
-
-
Right now that container has a padding-top of 20px. You can change that to 0px and that brings it up a little.
.container {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
padding-top: 20px;
}
- The topic ‘Remove search bar from top of page’ is closed to new replies.