im trying to add an email address on the right top corner along the announcement bar https://unsula.com/
can anyone help?
im trying to add an email address on the right top corner along the announcement bar https://unsula.com/
can anyone help?
Hi @ompee1978 ,
You may check Shopify documentation
https://help.shopify.com/en/manual/online-store/themes/themes-by-shopify/vintage-themes/customizing-vintage-themes/add-credit-card-icons
Hi @ompee1978
do you have any illustrations
Hi @ompee1978 ,
To add the email address under the .announcement-bar__message class in the announcement-bar.liquid file:
<div class="announcement-bar__message">
{{ settings.announcement_text }}
<span class="announcement-email">
<a href="mailto:your@email.com">your@email.com</a>
</span>
</div>
If the email address is not showing in the correct position, add the following CSS code in base.css or theme.css:
.announcement-bar__message {
display: flex;
justify-content: space-between;
align-items: center;
}
Hi @ompee1978
Do you have any illustrations