Font Helvetica

Professional Joomla restaurant template comes with a custom animated modules and advanced typography elements.
GK User
Fri Aug 30, 2013 7:02 pm
I would like to change the Fonts as "Helvetica" how can I do that? I couldn't find within standart fonts and I don't know how to use "Google Fonts" or "Adobe Edge".

Thanks in advance!
User avatar
Expert Boarder

GK User
Fri Aug 30, 2013 10:55 pm
Hi,
so you have to override/overwrite default font with Helvetica for selected elements.
This should be easy if you know:
1) Basic of CSS, I mean

Code: Select all
HTML ELEMENT NAME {font-family:  Helvetica, Arial, sans-serif;}


2) Read this: http://www.gavick.com/documentation/joo ... -template/
User avatar
Platinum Boarder

GK User
Sun Sep 01, 2013 9:38 am
Thanks a lot! How about the Main Menu font? How can I change it? I actually now learned how to use Google fonts but there is no Helvetica bold in google fonts.
User avatar
Expert Boarder

GK User
Sun Sep 01, 2013 9:55 am
Code: Select all
body, footer, .gkMenu > ul > li, .gkMenu > ul div.childcontent small, .panel h3, dl#tabs, dl.tabs, #loginForm h3, #loginForm h4, article li time {
    font-family: Helvetica,Arial,sans-serif;
}


this should help, use this css in custom css field
User avatar
Platinum Boarder

GK User
Mon Sep 02, 2013 7:39 pm
upss, so we/you have to hack php file with some css.
User avatar
Platinum Boarder

GK User
Mon Sep 02, 2013 8:01 pm
Open in text editor
gk_restaurant\layouts\default.php

before closing </head>
add my code (this same as I used before), remember about <style......</style>, so you should get that
Code: Select all
(...)
   <?php $this->layout->loadBlock('cookielaw'); ?>
   
   <style type="text/css">
   body, footer, .gkMenu > ul > li, .gkMenu > ul div.childcontent small, .panel h3, dl#tabs, dl.tabs, #loginForm h3, #loginForm h4, article li time {
    font-family: Helvetica,Arial,sans-serif;}
   </style>
   
</head>
(...)


and this 100% works
User avatar
Platinum Boarder


cron