Hi @jenghei ??
Currently I wanted to separate my product picture and my product’s title to left and right, but I’m not sure how to do it.
This can be fixed with some custom CSS. Under Customize > Additional CSS, you can add the following code:
?
/* Change positioning for product's images and title */
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
float: right !important;
}
.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
float: left !important;
}
Results:
https://www.screencast.com/t/xVy7m22wTIns
?
If you’d like to learn more about CSS, I highly recommend using the free tutorials at w3schools. Here, you can find the basics of selectors (how to target the right element on the page), and properties (how to change the element on the page).
I wanted to add some product description into it, could it be done?
And for this, you can add a description for any of your products by going to WordPress Dashboard > Products > All Products > Select the product. From there, add the description in the text field that displays under the Add Media button, as demonstrated in the screenshot below:
https://www.screencast.com/t/8B9WX2Ui