You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem: the up/spacer/down vote icons align vertically and not horizontally.
Cause: Probably Tailwind messing with some Isso CSS classes.
Fix: Add code to Tailwind's style.css (works in v4)
`
/* Target the footer container /
.isso-comment-footer {
display: flex; / Use flexbox /
align-items: center; / Vertically center items /
gap: 0.5rem; / Add spacing between items */
}
/* Ensure SVG icons are aligned properly /
.isso-upvote svg,
.isso-downvote svg {
display: inline-block;
vertical-align: middle; / Align icons with text */
}
/* Optional: Style the spacer /
.isso-spacer {
margin: 0 0.25rem; / Add spacing around the spacer */
}
`
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Problem: the up/spacer/down vote icons align vertically and not horizontally.
Cause: Probably Tailwind messing with some Isso CSS classes.
Fix: Add code to Tailwind's style.css (works in v4)
`
/* Target the footer container /
.isso-comment-footer {
display: flex; / Use flexbox /
align-items: center; / Vertically center items /
gap: 0.5rem; / Add spacing between items */
}
/* Ensure SVG icons are aligned properly /
.isso-upvote svg,
.isso-downvote svg {
display: inline-block;
vertical-align: middle; / Align icons with text */
}
/* Optional: Style the spacer /
.isso-spacer {
margin: 0 0.25rem; / Add spacing around the spacer */
}
`
The bottom one is without the added css.
Beta Was this translation helpful? Give feedback.
All reactions