Hi, I’m using the template: https://demo.tagdiv.com/newspaper_week_pro/
Could you help me understand how to modify the css so that I can assign a certain color to each category item link? And the same thing for the subcategories?
For example: I want the politics category to turn blue on hover and when selected.
Hello,
You can achieve something with custom code css; you can check this topic => https://forum.tagdiv.com/topic/mobile-theme-duplicate-titles-missing-categories-category-tag-colour/
Thank you!
Hi, I’ve seen this post before but to no avail. The Template I use is this: https://giuseppeerrico.it/molaliberanew/, could you help me understand how to assign a specific color to each category tag? Mega menu items included? Thank you
Hi,
You need to set the menu item id for each element from menu https://i.imgur.com/kyOsD0S.png -> https://i.imgur.com/aPhOxga.png .menu-item-25410, .td-module-image a[href$="/politica/"], .td-meta-info-container a[href$="/politica/"], .td-module-container a[href$="/politica/"], .single .td-category a[href$="/politica/"], .tdb_single_categories a[href$="/politica/"]
{
background-color: green;
}
Thank you!
Hi,
You can do it with custom code css -> https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Thank you!
Hi,
Please use this code https://i.imgur.com/FRqO9wB.jpg .tdb_header_menu .tdb-menu>li>a[href$="/politica/"] You need to do it for each category.
{
color: green;
}
.tdb_header_menu .tdb-menu>li>a[href$="/cultura/"]
{
color: red;
}
Thank you!