
Experience Design & Strategy
Trusted by some of the world’s largest brands, Isobar combines research, experience strategy and design capabilities that produce measurable change.
Research & Measurement
Experience Strategy
UI/UX Design
Customer Experience
Other Services
// Truncate the descriptive text on service cards to fit the space comfortably:
// 1. Get all the p tags from the service-cards row at the bottom of the page.
// 2. The even-indexed ones will be the descriptive text; chop each one down to its first 64 characters and add an ellipsis (…) on the end.
const serviceTexts = document.querySelectorAll(“.cs-back p”);
serviceTexts.forEach((el, index) => {
if (index % 2 === 0) {
el.innerHTML = el.innerHTML.slice(0, 64) + “…”;
}
});