Archived topic
how to remove drop down arrows
6 replies · Started by Ross Robson on November 15, 2014
Hi Tom,
How can i change or get rid of the arrows next to nav menu pages, like the summer and winter ones?
pontyclundarts.co.uk
First part of this answer should do that: http://generatepress.com/forums/topic/3-questions-dropdown-arrow-resizing-different-fonts-and-hover-box-size/#post-8760
Thanks, i placed new ones in from font awesome, starting to get the hang of it now :)
I want a search box with a button next to it to the right in my nav bar , how could i do this?
pontyclundarts.co.uk
Hi Ross,
You can add this CSS to make the search button show up:
.widget .search-field {
width: 45%;
}
.widget_search .search-submit {
display: inline-block;
}
You can adjust the width of the search field to your liking.
You may want to change the text inside the button, if so, you can use a filter.
1. Install the "Pluginception" plugin, which allows you to easily create plugins.
2. Add this PHP code to your newly created plugin:
add_filter('generate_search_button','generate_custom_search_button');
function generate_custom_search_button() {
return 'Go';
}
That should do it :)
How do i get it to show in the menu?
Ah - you want the regular search bar and button in the navigation instead of the built in navigation search menu?
That's a bit more complicated - I'll have to look into a solution for that.