- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2024 10:19 PM
Hello everyone,
I want to bring the search bar a bit lower on the page in Service Portal.
How can i achieve this?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2024 11:01 PM
Hi @Vamsi26 ,
Yes in CSS field add below code and adjust value according to your requirement.
.input-group {
width: 90%;
left: 50%;
top: 50%;
transform: translate(-50%, 100%);
}
If my answer has helped with your question, please mark my answer as accepted solution and give a thumb up.
Regards,
Ranjit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2024 10:23 PM - edited 04-29-2024 10:28 PM
Hi @Vamsi26 ,
CTRL+ Right Click >> Instance in Page Editor
update the transform value
.input-group {
transform: translate(-50%, -30%);
}
If my answer has helped with your question, please mark my answer as accepted solution and give a thumb up.
Regards,
Ranjit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2024 10:43 PM
Hello Ranjit,
I got page like where do i write the code.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2024 11:03 PM
Hi @Vamsi26 add the below mentioned code in CSS field.
.input-group {
top: 30px;
}
Please mark my answer Correct/Helpful,
Regards,
Siddharam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2024 11:01 PM
Hi @Vamsi26 ,
Yes in CSS field add below code and adjust value according to your requirement.
.input-group {
width: 90%;
left: 50%;
top: 50%;
transform: translate(-50%, 100%);
}
If my answer has helped with your question, please mark my answer as accepted solution and give a thumb up.
Regards,
Ranjit