I have a problem with the size of the font used for the product title and price on the main pages etc
Where would I find the proper place to change this?
I have a problem with the size of the font used for the product title and price on the main pages etc
Where would I find the proper place to change this?
Hi tonyaprile,
Kindly add this code on your Quick CSS (located in Replete > Theme Options > Styling) or at the bottom of custom.css file (located in wp-content/themes/replete/css):
h1.product_title {
font-size: 32px;
}
#top .price span {
font-size: 14px;
}
Just change the font-size value. Product title default is 38px and Price default is 12px. Hope this helps.
Regards,
Ismael
I am sorry I think I explained myself wrong the price was an issue and you provided me with the fix, now what would I do to increase the font size on the words before price so on the main page you have the image, the product description and the price. how would I increase product desctription font
Hi tonyaprile,
Try:
.products .product h3 {
font-size: 15px;
}
That should do it for all the title texts if you are using the same or a similar layout to the demo. If you have something else in mind, can you take a screenshot or link to your site and point out some the specific text?
Regards,
Devin
How about changing the size of font whenever text shows on the website? Under product categories, description of products, contact form etc, I feel as if the overall font size is too small.
Thanks
Generally, you can change the body paragraph font size with:
body {
font: 13px/1.65em "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #444;
}
Where the font size is 13px and the line height is 1.65em .
Regards,
Devin
You must log in to post.