@Emiway1 open code editor and enter code in theme.css
.product-info__price {
display: flex;
align-items: center;
}
A user wants to reposition GST (tax) text on their Shopify product page to appear next to the product price, with styling matching the vendor text (normal weight, low opacity).
Proposed Solution:
Multiple respondents provided nearly identical CSS code to add to the theme’s CSS file:
.product-info__price {
display: flex;
align-items: center;
}
Implementation Steps:
The solution uses flexbox to align the price and tax text horizontally. However, the code provided addresses positioning only—additional styling for font weight and opacity would need to be added separately to fully match the vendor text appearance.
Status: Multiple solutions offered, awaiting user confirmation of resolution.
@Emiway1 open code editor and enter code in theme.css
.product-info__price {
display: flex;
align-items: center;
}