Resource icon

XF 2 Tip Create a time-line in Xenforo

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,121
Points
823

Reputation:

ENXF NET submitted a new resource:

Create a time-line in Xenforo - Use Custom BB Code and CSS to create timelines in your xenforo posts

Here's how you can use BBCode and CSS to create a timeline in a xenforo post.

(based on this code here)

Step 1​


Paste the following into your extra.less file
CSS:
/* Start timeline css */


.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
    background:black;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: white;
  top: 0...

Read more about this resource...
 
Top