- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2014 03:34 AM
Hi SNC,
Is there a way to change the color of the Global Search? It's by default very un-noticable, unless you know it's there, and I think it would be wise to make it more visible as searching is one of the first things which people do in SNow. Do you know a way to change the colour, or put some coloured label or something in that direction?
Solved! Go to Solution.
- Labels:
-
Knowledge Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2014 04:05 AM
actually just realised it's the text_search_widget UI Macro that's being called, yes looks like you can define the style in there, i just added a border round it via:
function="$('textsearch').submit()"
style="color:#999; border:solid 5px;"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2014 03:40 AM
check out the ui macro called ui_global_text_search
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2014 04:00 AM
mguy, thanks for that - I guess this is the UI macro I need to look at.
One more question - I saw where to modify the text color and the border color, but do you know way I could set the background color to some other?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2014 04:05 AM
actually just realised it's the text_search_widget UI Macro that's being called, yes looks like you can define the style in there, i just added a border round it via:
function="$('textsearch').submit()"
style="color:#999; border:solid 5px;"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2014 05:06 AM
Nice, that was helpful. All I had to do is add the background setting to the line below and refresh.
style="color:#999; border:solid 0px; background: rgb(194, 205, 35);"
And now I have the result I wanted My whole point is to make this somehow more visible, to draw attention.
Thanks!