Tell me how to increase search bar width and how to change its search icon color?
This topic has 220 replies, 6 voices, and was last updated 10 years, 4 months ago ago by Jack Richardson
Tell me how to increase search bar width and how to change its search icon color?
Hello,
You can change search icon color only using some image editor because this icon is an image which is loaded from wp-content/themes/legenda/images/icon-zoom.png.
To increase search form width, add this code in custom.css file:
header .et-mega-search {
width: 350px;
}
How to create custom.css is described in our video tutorial.
Thank you.
Regards,
Eva Kemp.
I updated custom.css file as you say but their is not any change in search form. Please do this for me, i send you user name password of my wordpress in private content
Hello,
Please give us with permissions to be able to view all settings in wp-admin panel.
Thank you.
Regards,
Eva Kemp.
Yes, you have permission to do this
Hello,
I’ve added this code in custom.css file:
.search .et-mega-search form input[type="text"] {
width: 300px;
}
Please check the search form now.
Thank you.
Regards,
Eva Kemp.
And how to add border color of search form and want put search bar in center of header, because i don’t want cart icons.
Hello,
Try to add this code into custom.css file
.top-cart-disabled .logo {
width: 250px !important;
}
Regards,
Robert Hall.
Tell me how to change search form border color
Are you making any changes now? Here is screenshot of your site: http://prntscr.com/632yac
Regards,
Robert Hall.
This is my website http://goforkart.com/, please tell me how to change border color of search form?
Please add this code into custom.css file.
.top-cart-disabled .header-type-2 .search input[type="text"]{
border: 3px solid green;
}
Regards,
Robert Hall.

Hello,
Sorry, but increasing width of the text can make it distorted.
You can increase font size with the code in custom.css and add some spacing between letters:
.et-mega-search .et-search-result ul {
font-size: medium;
}
.et-mega-search .et-search-result ul a {
letter-spacing: 0.3em;
}
Also you can try to decrease the size of search result box using this code:
.et-mega-search .et-search-result {
width: auto;
}
Thank you.
Regards,
Eva Kemp.
what are Static Blocks and where to use them?
Hello,
You can use Static Blocks to create pop up window or footer.
Please read our documentation:
https://www.8theme.com/demo/docs/legenda/index.html#!/static_blocks
Thank you.
Regards,
Eva Kemp.
How to add filters in categories
Hello,
This question is a bit unclear for us. Could you please clarify us with more details?
Regards,
Robert Hall.
How to use different- different fillers in different categories sidebar
Hello,
Sorry, but we don’t have such features. You can use Woocommerce widgets in Appearance > Widgets.
Thank you.
Regards,
Eva Kemp.
how to add price filter as shown in your theme demo
Hello,
You need use Woocommerce Price Filter widget and add it to Shop sidebar in Appearance > Widgets.
Thank you.
Regards,
Eva Kemp.
Which Widget i should use in shop side-bar for filters.

Hello,
Please use Woocommerce layered nav widget to have filters for categories.
Thank you.
Regards,
Eva Kemp.

Hello,
Please provide us with a link to a single product page.
Thank you.
Regards,
Eva Kemp.
Hey i also want to remove more info and review tabs from single product
Hello,
Please add this code in custom.css:
.single-product-page .product-info .tagged_as {
display: none;
}
Please refer to Woocommerce documentation how to remove tabs:
http://docs.woothemes.com/document/editing-product-data-tabs/
Thank you.
Regards,
Eva Kemp.
where to add this code in wordpress
add_filter( ‘woocommerce_product_tabs’, ‘woo_remove_product_tabs’, 98 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs[‘description’] ); // Remove the description tab
unset( $tabs[‘reviews’] ); // Remove the reviews tab
unset( $tabs[‘additional_information’] ); // Remove the additional information tab
return $tabs;
}
You must be logged in to reply to this topic.Log in/Sign up