reduce the height of homepage search widget
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-03-2017 04:32 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-03-2017 05:49 AM
There are different ways to do it.
Easiest is to open the index page in page editor.
and mention this in the css
#homepage-search{
height: 250px;
}
The height will apply only for the index page.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-03-2017 11:52 PM
Hi Sobitha K,
Just take a clone of the original "Homepage Search widget" and there is a class called "hidden-xs wrapper-xl" in body HTML template and in CSS just add the height for the class.
Eg:
.hidden-xs{
height: 160px;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-17-2024 12:19 PM
Thanks I needed to adjust the width
Here is my code:
.hidden-xs{
width: 700px;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-27-2017 01:37 PM