How to make popup content appear fully

Solved

How to make popup content appear fully

undercoverfresh
Excursionist
138 0 19

I’m looking to make the hoodie t shirt and  sweats section of the pop up centered and wide enough to show the whole chart for mobile and desktop  (mostly mobile) 

 

url knmb1c-pf.myshopify.com

password samurai 

 

IMG_8129.jpeg

Accepted Solution (1)
CodingFifty
Shopify Partner
901 135 164

This is an accepted solution.

 

@media (max-width: 768px){
.product-popup-modal__content-info table{
    height: auto !important;
    overflow: inherit !important;
   justify-self: center !important;
}

.product-popup-modal__content-info table tbody> tr:nth-child(2) {
    background: white !important;
}

.product-popup-modal__content-info table tbody> tr:nth-child(4) {
    background: white !important;
}
}

 

Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com

View solution in original post

Replies 4 (4)

CodingFifty
Shopify Partner
901 135 164

Hi @undercoverfresh,


Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

@media (max-width: 768px){
.product-popup-modal__content-info table{
    height: auto !important;
    overflow: inherit !important;
}
}

 

Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com
undercoverfresh
Excursionist
138 0 19

The code worked but could you center header text and the sweatpants section and remove the lines where I circled?

IMG_8148.jpeg

IMG_8149.jpeg

CodingFifty
Shopify Partner
901 135 164

This is an accepted solution.

 

@media (max-width: 768px){
.product-popup-modal__content-info table{
    height: auto !important;
    overflow: inherit !important;
   justify-self: center !important;
}

.product-popup-modal__content-info table tbody> tr:nth-child(2) {
    background: white !important;
}

.product-popup-modal__content-info table tbody> tr:nth-child(4) {
    background: white !important;
}
}

 

Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com
undercoverfresh
Excursionist
138 0 19

This worked thank you