I’m currently using the Supply theme https://egyptiful.com/ and I’d like to make the announcement and “sign in or create an account” both right-aligned to the right edge of the Cart Button, only in the desktop version, in the mobile version it should be centred like the default setting. I’m new to Shopify and coding, any help?
Thanks
!

1 Like
@egyptiful
Right click is disable in your store. Please enable it. I couldn’t inspect website elements.
1 Like
@egyptiful
can you please update this code
@media screen and (min-width: 769px) {
.grid-item.large--one-half.text-center.large--text-right {
text-align: right !important;
}
}
1 Like
@egyptiful
-
Go to Online Store->Theme->Edit code
-
Asset->/theme.scss.liquid->paste below code at the bottom of the file.
@media screen and (min-width:769px){
.site-header--text-links {
display: inline-block;
font-size: .85em;
margin-bottom: 15px;
width: 80%;
text-align: right;
}
}
1 Like
Thank you both! much appreciated.