Understanding the News Homepage GadgetIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } hr{ border-top-width: 1px; border-top-style: solid; border-top-color: #cccccc; } ul { list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Overview This article describes the News gadget on the Homepage and explains how to update the gadget title and conditions. Description A gadget is a Homepage item used to show the knowledge search field and notes, for example, pulling up information from knowledge table. The gadget's title and conditions are defined in the sys_widget table in the Gadget record. To access the Gadget record: Navigate to System UI > Widgets. Open the widget record (https://<instance-name>.service-now.com/sys_widgets.do?sys_id=a066bb690a0a0aa300d40d0cce7ed94f). The render_gadget_nets UI page defines what is displayed in the gadget/widget (https://<instance-name>.service-now.com/sys_ui_page.do?sys_id=225c69940a0a0b57008029aaea037e49). Examples This section describes how to make some typical changes to gadgets. To change the title of the gadget that the user selects when adding content on the Homepage: Navigate to System UI > Widgets. Open the Gadget record (https://<instance-name>.service-now.com/sys_widgets.do?sys_id=a066bb690a0a0aa300d40d0cce7ed94f) In line 4, change: News' : { 'type' : 'news' }, to: 'NEWS TEST' : { 'type' : 'news' }, Add the widget again. In the News gadget, to pull articles with Category= News not Topic=News: Navigate to System UI > Widgets. Open the Gadget record (https://<instance-name>.service-now.com/sys_widgets.do?sys_id=a066bb690a0a0aa300d40d0cce7ed94f) In line 29, change: return 'kb_knowledge_list.do?sysparm_query=topic=News'; to: return 'kb_knowledge_list.do?sysparm_query=category=News'; Additional Information Community discussion topic News scroll widget, the records which scroll is in blue color. how to make them in red? (requires login) Product documentation topic Create a widget that displays a ServiceNow UI page