extra.less

  1. XenFrodo

    XF 2 Tip extra.less - lightweight (overview) Styling

    Why fill your extra.less template when you can simply create a new template for each of your changes and then insert this new template into your extra.less template in just one line. Adding all custom code into extra.less will quickly make this very messy in favor of clarity In this method, we...
  2. ENXF NET

    Xenforo 2.0 [cXF] Hide user extra info and show it on hover

    Add code to your extra.less template: /* Hide user extra info */ .message-userExtras { opacity: 0; max-height: 0px; overflow: hidden; transition: all 0.5s ease-in-out; } .message-cell.message-cell--user:hover .message-userExtras { opacity: 1; max-height: 300px; } /**********/
  3. ENXF NET

    Xenforo 2.0 Highlight and Separate Sticky Threads

    Simple css (extra.less) modifications to highlight/separate sticky threads Separate sticky and normal threads Insert code in template: extra.less /* Border between sticky/normal threads */ .structItemContainer-group--sticky { border-bottom: 6px solid; color...
Top