Highlight and Separate Sticky Threads

Unmaintained Highlight and Separate Sticky Threads 2017-12-04

No permission to download
Compatible XF 2.x versions
  1. 2.0
Simple css (extra.less) modifications to highlight/separate sticky threads

Separate sticky and normal threads
98482959639066a9cc06b6bd9ab8d730.png

Insert code in template: extra.less
CSS:
/* Border between sticky/normal threads */
.structItemContainer-group--sticky {
    border-bottom: 6px solid;
    color: xf-diminish(@xf-borderColor, 6%);
}


Subtle accent
0df8b511298e69ad3d6f5cd8bec9595d.png

Insert code in template: extra.less
CSS:
.structItemContainer-group--sticky {
      background-color: @xf-paletteColor1;
}

.structItemContainer-group--sticky .structItem-title a:link,
.structItemContainer-group--sticky .structItem-title a:visited {
    color: @xf-paletteColor4;
}


Highlighted accent
5bcce4654621f80476d9251b428cd4be.png

Insert code in template: extra.less
CSS:
.structItemContainer-group--sticky {
      background-color: @xf-paletteAccent1;
}

.structItemContainer-group--sticky .structItem-title a:link,
.structItemContainer-group--sticky .structItem-title a:visited {
    color: @xf-paletteAccent3;
}


You can also put in any other colours you like. Just familiarizing myself with xenforo 2.0 thought this may be helpful to others looking.
Author
Koala_Steamed
Downloads
85
Views
2,912
First release
Last update

Ratings

4.80 star(s) 5 ratings

Latest reviews

Works great, excellent change with great effect for very few lines of css code. Thank you for sharing
Works great, thanks for this add-on. I appreciate the three different options included. Simple, but I think it's an important feature.
Very simple, does what it says on the tin, thank you! best of all, it is 100% free :) fngcommunity.com is my website if you want to see example.
Excellent, thanks for sharing this, works perfectly. I am migrating from a SMF 2.0 forum which has this feature which really helps to distinguish a sticky topic from a regular topic.
Thanks, this was extremely helpful. It's great not to have to edit a different template or use an addon to make the sticky threads stand out. I modified it a little to just have a border. Works great!
Top Bottom