How can I fix this sub-note issue in my theme?

sushant

Member
Registered
Joined
Feb 23, 2022
Messages
7
Points
13

Reputation:

Rinovix-Forums-for-Web-Designers-and-Developers.png

Its shows sub forum icon two times?
 

jim

Well-known member
Registered
Joined
Aug 20, 2021
Messages
114
Points
38

Reputation:

UIX Dark? Copy these to extra.less and it should resolve the issue

CSS:
#top > div.p-body > div > div > div.p-body-main.p-body-main--withSidebar > div.p-body-content > div > div > div.block.block--category.block--category31 > div > div > div > div.node.node--id42.node--depth2.th_node--overwriteTextStyling.node--forum.node--unread > div > div.node-main.js-nodeMain > div.node-subNodesFlat > ol > li:nth-child(1) > a > i {display: none !important;}
#top > div.p-body > div > div > div.p-body-main.p-body-main--withSidebar > div.p-body-content > div > div > div.block.block--category.block--category31 > div > div > div > div.node.node--id42.node--depth2.th_node--overwriteTextStyling.node--forum.node--unread > div > div.node-main.js-nodeMain > div.node-subNodesFlat > ol > li:nth-child(2) > a > i {display: none !important;}
#top > div.p-body > div > div > div.p-body-main.p-body-main--withSidebar > div.p-body-content > div > div > div.block.block--category.block--category31 > div > div > div > div.node.node--id42.node--depth2.th_node--overwriteTextStyling.node--forum.node--unread > div > div.node-main.js-nodeMain > div.node-subNodesFlat > ol > li:nth-child(3) > a > i {display: none !important;}
#top > div.p-body > div > div > div.p-body-main.p-body-main--withSidebar > div.p-body-content > div > div > div.block.block--category.block--category31 > div > div > div > div.node.node--id42.node--depth2.th_node--overwriteTextStyling.node--forum.node--unread > div > div.node-main.js-nodeMain > div.node-subNodesFlat > ol > li:nth-child(4) > a > i {display: none !important;}

If it doesn't work please let me know.
 
Top