Site Search: How to Make it Full Width in Flex Grid?

All WYSIWYG Web Builder support issues that are not covered in the forums below.
Forum rules
IMPORTANT NOTE!!

DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.



PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Post Reply
Base12
 
 
Posts: 71
Joined: Tue Sep 17, 2024 10:12 pm

Site Search: How to Make it Full Width in Flex Grid?

Post by Base12 »

I placed the standard 'Site Search' feature into a Flex Grid.

When previewing the page, the Site Search is around 200 pixels or so wide.

How do I make it automatically fit the full width of the container and have it grow and shrink with RWD?

Here is a simple demo...

https://www.mostholyplace.org/misc/test ... oblem1.wbs

Interestingly, I can get a full width if I put the Site Search in a Layout Grid. It works perfectly.

Thanks!
User avatar
Pablo
 
Posts: 23252
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Site Search: How to Make it Full Width in Flex Grid?

Post by Pablo »

The Flex grid is based on flexbox, so normally you would have to adjust the flexbox properties.
https://www.wysiwygwebbuilder.com/flexbox.html

However, the search box currently does not support this functionality.
User avatar
wwonderfull
 
 
Posts: 1566
Joined: Fri Aug 21, 2020 8:27 am
Contact:

Re: Site Search: How to Make it Full Width in Flex Grid?

Post by wwonderfull »

I have done a checkup of your project. The input element which is the search is inside a form as it works using the on submit post method, so the form has to be responsive along with the input.

In that case to make it grow and shrink if you use below CSS it may bring the result you may have wanted.

Code: Select all

<style>
form#SiteSearch1_form {
    width: 100%;
}
</style>
More information on how to insert custom codes here
https://www.wysiwygwebbuilder.com/add_html.html
Base12
 
 
Posts: 71
Joined: Tue Sep 17, 2024 10:12 pm

Re: Site Search: How to Make it Full Width in Flex Grid?

Post by Base12 »

Pablo wrote: Tue Sep 24, 2024 6:06 am ...the search box currently does not support this functionality.
Got it, thanks!
Base12
 
 
Posts: 71
Joined: Tue Sep 17, 2024 10:12 pm

Re: Site Search: How to Make it Full Width in Flex Grid?

Post by Base12 »

wwonderfull wrote: Tue Sep 24, 2024 8:04 am I have done a checkup of your project. The input element which is the search is inside a form as it works using the on submit post method, so the form has to be responsive along with the input.

In that case to make it grow and shrink if you use below CSS it may bring the result you may have wanted.

Code: Select all

<style>
form#SiteSearch1_form {
    width: 100%;
}
</style>
More information on how to insert custom codes here
https://www.wysiwygwebbuilder.com/add_html.html
Oh wow. It totally worked. 8) The code was easy to implement.

I inserted the code into the 'Custom CSS' tab of the sitesearch object's HTML. I hope that was the right spot.

Here is the Header with Sitesearch before inserting the code...

Image

Here is the Header with Sitesearch after inserting the code...

Image

The Sitesearch now expands to fit the full width of the cell (set to be half the width of the Header) inside the Flex Grid. :D

It seems to conform to the RWD standards as well.

I have uploaded the entire website here in case anyone wants to test it out...

https://www.mostholyplace.org

Thanks for the help!
Post Reply