im trying to add an email address on the right top corner along the announcement bar https://unsula.com/
can anyone help?
A user wants to add an email address to the top-right corner of their store page, aligned with the announcement bar on their Shopify site (unsula.com).
Proposed Solution:
One responder provided detailed technical instructions involving:
announcement-bar.liquid file to add an email link within the .announcement-bar__message classbase.css or theme.css to properly position the email using flexbox layout (display: flex; justify-content: space-between)Other Responses:
Status: The discussion remains open with no confirmation whether the solution was implemented successfully.
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