Hello, Please paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: body, a, p, h1, h2, h3, h4, h5, h6 { font-family: Arial; } Thanks, Praveen
Hello ! You can use custom fonts please follow below links. http://www.inkthemes.com/community/threads/problem-with-google-fonts.7237/ http://www.inkthemes.com/community/threads/new-font-throughout-whole-site.13734/#post-51068 Thanks & Regards Pramod
This worked! However, there are still two places that have a different font. I have provided screenshots of these areas. Is there a way to resolve this?
Hi, Please paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: ul#menu-footer-menu li a { font-family: arial !important; } ul.product_list_widget span, ul.product_list_widget li a { font-family: arial !important; } Thanks, Praveen
Hi and thank you! The codes have worked well. Now, I just need to change all of the text to the color purple. So just like I changed the overall font throughout the site to be a certain font, I need that same font to all be purple. Here is the code I currently have: body, a, p, h1, h2, h3, h4, h5, h6 { font-family: 'Raleway', sans-serif; } ul#menu-footer-menu li a { font-family: 'Raleway', sans-serif !important; } ul.product_list_widget span, ul.product_list_widget li a { font-family: 'Raleway', sans-serif !important; }
Hi, Use the given below css code. Code: body, a, p, h1, h2, h3, h4, h5, h6 { color: purple !important; } ul#menu-footer-menu li a { color: purple !important; } ul.product_list_widget span, ul.product_list_widget li a { color: purple !important; } Thanks, Praveen