Hi Support,
Please could you advise how I can change the size of the Product Entry Title for each of the Desktop, Tablet and Mobile Versions.
Thanks in advance.
Also, on the mobile version, the product entry title appears below the product images. I would like the entry title to appear above.
Thanks again.
Hey!
Please add following code for desktop, tablet and smart phone respectively
.single h1.product_title.entry-title { font-size: 30px !important; }
@media only screen and (max-width: 1024px) and (min-width: 481px) {
.single h1.product_title.entry-title { font-size: 24px !important; }}
@media only screen and (max-width: 480px) {
.single h1.product_title.entry-title { font-size: 20px !important; }}
Unfortunately it is not easily possible to change elements position as they show up following the order they appear on markup
Best regards,
Yigit