Hi can someone help me on how to move a popup link to be inline with the Size text but all the way at the right of the page?
Topic summary
Goal: Reposition a size-related pop-up link so it appears inline with the Size variant text and aligned to the far right of the product page.
Latest update: A helper requested the store URL (and password, if enabled) to review the theme and provide specific guidance.
Status: No solution or code provided yet; awaiting access details from the store owner.
Notes: A screenshot is attached and central to understanding the desired layout/placement.
1 Like
Hey @steven8
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above </ body> tag
<style>
@media screen and (min-width: 768px) {
dialog-component.popup-link {
position: absolute !important;
top: 9.3% !important;
width: 100% !important;
text-align: -webkit-right !important;
}
}
</style>
RESULT:
If I managed to help you then a Like would be truly appreciated.
Best,
Moeed
1 Like

