Hey,
Happy you got it going.
Hopefully with the new Shopify Sections changes the process will me more straightforward.
Good point, I will try to update the install guide.
There are no section settings for what particular case but you can solve it with CSS.
Assuming that your “mobile” breakpoint is at 660px, you can use a mediaquerry to make the title white:
@media (max-width: 660px) {
.tooltip-title {
color: white;
}
}
Looking forward to see a link when this goes live!