I want to put a search button next to a text. How can I do this? Currently, if I put a text element, the search element will be placed under the text element (see screenshot #1). What I want is a sample as screenshot #2.


Hi Grace,
Thanks for writing in.
I can think of two ways to do it;
One way is by adding 2 columns in a row, put the text element at the 1st column and the search element at the second column.
Another way is to add a class to the text element and add this custom css.
.your-custom-class {
float:left;
}
Change the your-custom-class to what you have added, you may also need to change the padding & margin of the text-element.
Hope that helps.
Thanks!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.