Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
CSSlife Posted February 19, 2018 Posted February 19, 2018 I am ideally wanting to change the background color of pinned topics. How would I go about this? I tried adding this to extra.css to no avail: [data-ipstooltip title="Pinned"] .ipsDataItem { background: orange!important; }
bfarber Posted February 19, 2018 Posted February 19, 2018 There's no real way to target the entire row as you are attempting to do I'm afraid. What you would need to do is first edit the HTML template that generates the rows to set a new property or CSS class or similar on the row if the topic is pinned, and then use that in your CSS.
Martin A. Posted February 23, 2018 Posted February 23, 2018 jQuery can be used. $( 'i.fa-thumb-tack' ).closest( 'li.ipsDataItem' ).css( 'backgroundColor', 'red' );
Recommended Posts
Archived
This topic is now archived and is closed to further replies.