XF 1.3 Separate links with |

tommydamic68

Well-known member
Anyone have thoughts on how to seperate my footer links with this? |
It's not just sitting that separator in- there must be more to it, it sits above text when dropped in between the links.

Like: Contact Us | Help | Home | Terms and Rules | Privacy Policy | Top

image.webp
 
Code:
.footerLinks li a:before {
  content: " | ";
}

.footerLinks li:nth-child(1) a:before {
content: "";
}

Should work.
 
Last edited:
Top Bottom