- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-15-2024 01:59 AM
Hello,
How to change the size of the "Search" text in the search bar.
I have highlighted in the image with yellow color
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-15-2024 02:22 AM
Hi @zeerodger27 ctrl right click on that search --> click on instance page editor like below
Paste this css code like shown above
input {
box-shadow: none;
font-size: 50px; // here you can mention the font size
font-family: inherit;
color: #656E81;
padding: 1.2rem;
height: 4.4rem;
border-bottom-left-radius: 0.8rem;
border-top-left-radius: 0.8rem;
}
Harish

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-15-2024 02:32 AM - edited ‎03-15-2024 02:33 AM
Hi,
Out of box, you can only increase that to "large" and that can be done by using the following. If you press ctrl+right-click on that widget and go to instance options:
{title: 'Not today', size: 'lg'}
Otherwise, you may have to try and tap into the css of this particular element and increase it even larger that way, but then, the page starts to look a little off.
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-15-2024 02:22 AM
Hi @zeerodger27 ctrl right click on that search --> click on instance page editor like below
Paste this css code like shown above
input {
box-shadow: none;
font-size: 50px; // here you can mention the font size
font-family: inherit;
color: #656E81;
padding: 1.2rem;
height: 4.4rem;
border-bottom-left-radius: 0.8rem;
border-top-left-radius: 0.8rem;
}
Harish

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-15-2024 02:32 AM - edited ‎03-15-2024 02:33 AM
Hi,
Out of box, you can only increase that to "large" and that can be done by using the following. If you press ctrl+right-click on that widget and go to instance options:
{title: 'Not today', size: 'lg'}
Otherwise, you may have to try and tap into the css of this particular element and increase it even larger that way, but then, the page starts to look a little off.
Please consider marking my reply as Helpful and/or Accept Solution, if applicable. Thanks!