Home Forums WoodMart support forum set title above variations

set title above variations

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #618123

    k6595177
    Participant

    Hi There,

    How can i set the variations that the title will be above and not inline?

    Thanks

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

    Bogdan Donovan
    Keymaster

    Hi,

    If you use layouts for single products – the cart addition element has a special option that allows you to choose the label position on the side or above the variations.
    If you are using a standard single product, add the following custom code to the Global Custom CSS area in the theme settings:

    @media (min-width: 1025px) {
    
    	.product-image-summary table.variations tr {
    		display: flex;
    		flex-direction: column;
    	}
    
    	.product-image-summary table.variations .label {
    		margin-bottom: 5px;
    	}
    }

    Kind Regards

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