How can I change the color of the links in my sc_categories widget copy?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-29-2018 01:16 PM
I copied the sc_categories widget and set it up in a grid style using bootstrap - we wanted it to look more similar to the sc_category_page widget. However, the links to each category keep showing up in a lighter gray font with a gray background upon hover. I need the links to show up in black font with no additional background color upon hover.
I have tried to edit my theme colors, and edit the HTML and CSS directly to change the color (which worked for the footer panel coloring), but I haven't had any luck. Screenshot below shows how it looks currently - I was hovering over the first category -"Access, Passwords, & Identity", but my cursor didn't show up in the screenshot. I need "Access, Passwords, & Identity", along with all of the other category names below, to show up in black font and not have a background color upon hovering.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-29-2018 01:58 PM
You can change it by applying CSS on it.
Go to table sp_instance_link
Then open the form for kb_view2 page.
CSS :
a.top_icon{
background-color: blue; // OR MENTION THAT ATTRIBUTE YOU WANT TO INCORPORATE IN YOUR STYLE
}
Something along those lines
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
‎01-29-2018 02:12 PM
Where is that form? I can find sp_instance_link table if I navigate from system definition-> tables-> sp_instance_link, but then I don't see any form associated with it. Thanks for your help!