How can I shift my size guide to the right on my website?

Hi all,

im looking to move my size guide to the right. My site is https://luxurymrkt.com

Hi @Luxurymrkt ,

This is Kate from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/theme.css->paste below code at the bottom of the file:

.size-chart__standalone {
    text-align: right !important;
}

I hope it would help you

Hello @Luxurymrkt ,

Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->theme.css->paste below code at the bottom of the file:

@media screen and (max-width: 767px){
.size-chart__standalone {
    text-align: end;
}
}

Sorry doesn’t work

Hi @Luxurymrkt ,

I’m sorry to hear that. Please give it a try with this new solution:

Try inserting the code below on top of the theme.css file:

.size-chart__standalone {
    text-align: right !important;
}

I hope it would help you