Tagged: clean retina pro, nav bar, page title, spacing
- This topic has 8 replies, 4 voices, and was last updated 10 years, 2 months ago by Theme Horse Support Team.
-
AuthorPosts
-
August 30, 2014 at 12:58 am #13424VincentMember
I found quite a few things that will help me, but I can’t find anything on removing the “search” at the top of the page. I want to remove it and all the space above the header.
Thanks
August 31, 2014 at 8:55 pm #13451PatriciaParticipantI’ve been trying to reduce space also — below the nav bar and above the page title. I’ve tried to reduce padding around various sections in the css, but I cannot seem to change these two items. I am posting in this thread because the issues seem related … and maybe it will save someone time to be able to answer these in one place.
August 31, 2014 at 9:48 pm #13452VincentMemberI found this one that you can put in your custom css
#main {
padding-top: 10px;
}
input[type=”reset”], input[type=”button”], input[type=”submit”] {
margin: 0;
}
#content ul, #content ol {
margin: 0;
}August 31, 2014 at 10:32 pm #13453PatriciaParticipantThanks, Vincent! That did a great job of moving the page title up … I even reduced it a little more than 10.
But there’s still space under the nav bar … maybe I can play with that a bit.
By the way, I am using a child theme, not working with the original.
I like the Search, but it doesn’t seem to offer a “submit” option; I have to hit “return.” Any thoughts on how to make that work?
As for your issue of eliminating the Search entirely, I did see this:
/* Search Form */
#branding .searchform {
margin-top:20px;
float: right;
}
#branding .searchform div {}
#branding #s {}
#branding #s:focus {}
#branding #searchsubmit {}
#branding .only-search .searchform {}
#branding .only-search #s {}
#branding .only-search #s,
#branding .only-search #s:focus {}
September 1, 2014 at 12:49 am #13458VincentMemberI also found this one:
#access {
margin-bottom: 10px;
}And this to control all the excess space:
.hgroup-wrap {
padding-bottom: 0;
padding-top: 0;
}
#access {
margin-bottom: 0;
}
.hgroup-wrap img {
margin-bottom: 0;
margin-top: 0;
}Put then one by one in the custom css and see the changes and adjust the values as you like.
I am still needing to dump the search and all the space above the header or at least control it.
September 3, 2014 at 3:32 pm #13553Theme Horse Support TeamKeymaster@Vincent To removing the “search” and all the space above the header Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
.hgroup-wrap { padding: 0; } #branding .searchform { display: none; }
Thank you!
September 3, 2014 at 3:34 pm #13554Theme Horse Support TeamKeymaster@Patricia To remove the space below the nav bar and above the page title Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
#access { margin-bottom: 20px; } .breadcrumb { margin-bottom: 0; }
Thank you!
September 4, 2014 at 7:17 pm #13622PatriciaParticipantThanks!
September 5, 2014 at 5:01 am #13637Theme Horse Support TeamKeymasterYou welcome Patricia.
Thank you!
-
AuthorPosts
- You must be logged in to reply to this topic.