This topic has 8 replies, 2 voices, and was last updated 10 years, 5 months ago ago by Jack Richardson
Hi
1. How do I change the Menu Font to another font (google font), there is no option in the Typography section of the Theme Options.
2. I am wanting the overall site body text to be bigger. If is too small with a san serif font.
Thanks
Hello,
1) To change menu font you should go to http://www.google.com/fonts, find desired font and click Quick use. Then copy line of code from the 3rd item and insert it into the header.php before tag. The next step is to copy line of code from the 4th item and insert it into the custom.css as it shown below:
.menu > ul > li > a {
font: 14px 'Open Sans', sans-serif; /* <- Replace this line with the line from the 4th item */
}
2) To change font size of body text please add the following code into the custom.css and adjust font size value:
body {
font-size: 14px;
}
Here is a video tutorial how to create custom.css: https://www.youtube.com/watch?v=Qok2zRedRMY&feature=youtu.be.
Regards,
Jack Richardson
Thanks,
The menu font worked but the body text in the shop is still the small font.
http://amyerbacher.com.au/product/synergie-masquerase-anti-ageing-mask-50ml/
Also how do I change the price colour in the shop it is still the default theme colour?
Thanks
Hello,
Add the following code into the custom.css to change font size and color in the product description section:
.product_description_mainblock p {
color: gray;
font-size: 16px;
}
To change price color use the following code in custom.css:
.amount, .onsale-price .price, .currentprice {
color: #C52222;
font-size: 16px;
}
Regards,
Jack Richardson
Hi Jack
Neither of these worked.
Surely all instances of the primary colour should change the old colour throughout the site? Isn’t that what having a main colour does? There is also menu drop downs and filter icons showing the old colour too.
Hello,
You have missed one curly bracket in code above. It is fixed now, please check!
Regards,
Jack Richardson
Than you so much for your help
Nick
Hello,
You’re welcome!
Regards,
Jack Richardson
The issue related to '‘IDStore Font changes’' has been successfully resolved, and the topic is now closed for further responses