Home Forums WoodMart support forum change text positions

change text positions

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

    hasanarastart
    Participant

    Hi, I want to change the texts positions in the product bar. There are 2 images in the attachment you’ll see what do we want, we want to make title and the attribute at the same line.

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

    Hung Pham
    Participant

    Hello hasanarastart,

    Thanks for reaching to us.

    Please add the following Custom CSS code to Theme Settings > Custom CSS > Custom CSS for desktop:

    	.wd-label-top-lg table.variations tbody .cell {
    			display: inline-block;
    	}
    
    	table.variations tbody .value {
    			width: auto;
    	}
    	
    	table.variations tbody .cell {
    			vertical-align: baseline;
    	}

    Regards,

    #533297

    hasanarastart
    Participant

    Thanks a lot it worked how about I want to make all of them left aligned instead of mid aligned?

    #533333

    Hung Pham
    Participant

    Hello hasanarastart,

    Please add the following Custom CSS code to Theme Settings > Custom CSS > Custom CSS for desktop:

    .single-product table.variations {
        text-align: left;
    }

    Regards,

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