How to reduce line spacing on Venue theme?

Hello,

I’d like to reduce the general line spacing in Venue. How can I do it?

Thanks for your help

Url : www.theaaa.ch

1 Like

Hello @TClay ,

Admin go to online store → themes → actions → edit code
Find Asset >theme.css and paste this at the top of the file:

.SectionHeader__ButtonWrapper {
display: none;
}
li.footer-nav__item {
line-height: 1.6;
}
p.footer-nav__text {
line-height: 1.6;
}
p {
line-height: 1.6;
}
1 Like

Hello @TClay ,

Admin go to online store → themes → actions → edit code
Find Asset >theme.css and paste this at the top of the file:

.SectionHeader__ButtonWrapper {
display: none;
}
li.footer-nav__item {
line-height: 1.6;
}
p.footer-nav__text {
line-height: 1.6;
}
p {
line-height: 1.6;
}