Home Forums Basel support forum Variation labels are not showing with sticky product layout

Variation labels are not showing with sticky product layout

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #8028

    raul
    Participant

    Hello

    With the sticky product layout, variation labels are not showing. For some reason, they have display: none. See screenshot.

    Also, the combo box for the third variation is misaligned.

    Thanks.

    Attachments:
    You must be logged in to view attached files.
    #8035

    Artem Temos
    Keymaster

    Hello,

    Yes, we have hidden labels for this layout to free more space since the right column is sticky and all information can be higher than window height. Anyway, you can easily display them with this simple code fix. Add it to the Custom CSS

    .product-design-sticky .variations td {
    	text-align:left;
    }
    
    .product-design-sticky .variations td.label {
    	display:table-cell;
    }
    
    .product-design-sticky .variations td {
    	text-align:left;
    }
    
    .product-design-sticky .variations {
    	width:200px;
        margin:0 auto;
    }
    
    

    Also, you can fix last dropdown offset by fixing margin for “Clear” button

    .product-design-sticky .variations .reset_variations {
        margin-right: -64px;
    }

    Regards

    #8051

    raul
    Participant

    Hello,

    That solution makes the dropdowns too small! I added a fixed width, and it’s better.

    However, your solution for fixing the “reset variations” link just pushed the last dropdown up…

    See attachment.

    Raúl.

    Attachments:
    You must be logged in to view attached files.
    #8057

    Artem Temos
    Keymaster

    Hi,

    Please, provide your website URL so we could see it live to provide you with more accurate solution.

    Regards

Viewing 4 posts - 1 through 4 (of 4 total)