Hello, I have added a second text block and a second button block on to my image banner. This screenshot shows the ‘Desktop content position’ set to ‘Top Left’, and ‘Desktop content alignment’ set to ‘Left’:
However, I want to be able to override these settings for my second text and second button blocks and have these positioned at the Bottom Right and with Right alignment - as per this photoshopped mockup:
Nb. I only need this to be the case on desktop, not mobile. Site: https://1b4c40.myshopify.com/ password: sowbeu
I don’t know CSS particularly but by taking snippets from searching this forum, I made the following changes to achieve what I’ve got so far. It seems to work, but please let me know if you recommend a different way…
- To shift the default positioning of ‘Top Left’ (further to left) and ‘Bottom Right’ (further to right), I added the following to the bottom of base.css:
@media (min-width: 768px) {
.banner__content.banner__content--top-left {
align-items: flex-start;
justify-content: left;
margin-right: 35%;
}
.banner__content.banner__content--bottom-right {
align-items: flex-end;
justify-content: right;
margin-right: 0%;
- To add the second text block, I changed this to ‘2’ in image-banner.liquid:
- To position the 2nd button below 2nd text block, I changed this to ‘2’ in image-banner.liquid:
I added this 2nd button block rather than try to adjust the “Second button” of 1st button block. Thus, the lower button showing on the screenshot is actually the “First button” of the 2nd button block.
Very grateful for any help.




