Support Forum

Please note that this forum is only available to you in read only mode. In order to contribute to this conversation you will need to renew your subscription.

Special Webfont,

zentoolsIf you use Zentools please post a review at the Joomla! Extensions Directory.

I need to integrate a web font in the template. Is there a special tool from you?
  • Ralf Roppelt's Avatar
  • Ralf Roppelt
  • 3 Month Basic
  • 22 posts
  • Karma: 0
The administrator has disabled public write access.
Have you created a font pack from a service like font squirrel ?

Is the font licensed for the web?

Cheers
Paul
  • manh's Avatar
  • manh
  • Moderator
  • 45248 posts
  • 2106 Thanks
  • Karma: 603
The administrator has disabled public write access.
What is the font in question and what template / framework version are you using?
  • manh's Avatar
  • manh
  • Moderator
  • 45248 posts
  • 2106 Thanks
  • Karma: 603
The administrator has disabled public write access.
Hi Paul,
this is a free font called Aller". The font file I edited already at fontsquirrel. I use "responsive" in the latest version.
  • Ralf Roppelt's Avatar
  • Ralf Roppelt
  • 3 Month Basic
  • 22 posts
  • Karma: 0
The administrator has disabled public write access.
Its using the T3 framework?
  • manh's Avatar
  • manh
  • Moderator
  • 45248 posts
  • 2106 Thanks
  • Karma: 603
The administrator has disabled public write access.
Yes
  • Ralf Roppelt's Avatar
  • Ralf Roppelt
  • 3 Month Basic
  • 22 posts
  • Karma: 0
The administrator has disabled public write access.
Sorry I should also have asked are you wanting it accessible via the admin or just using the custom.css?

Cheers
Paul
  • manh's Avatar
  • manh
  • Moderator
  • 45248 posts
  • 2106 Thanks
  • Karma: 603
The administrator has disabled public write access.
No matter how, most likely in the admin. A solution without google would be my favorite.
  • Ralf Roppelt's Avatar
  • Ralf Roppelt
  • 3 Month Basic
  • 22 posts
  • Karma: 0
The administrator has disabled public write access.
  • manh's Avatar
  • manh
  • Moderator
  • 45248 posts
  • 2106 Thanks
  • Karma: 603
The administrator has disabled public write access.
this bit

<?php if(($bodyfont || $headingfont || $navfont || $logofont) == "League Gothic") { ?>
@font-face {font-family: 'League Gothic';
src: url('<?php echo T3_TEMPLATE_URL ?>/fonts/leaguegothic-regular-webfont.eot');
src: url('<?php echo T3_TEMPLATE_URL ?>/fonts/leaguegothic-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('<?php echo T3_TEMPLATE_URL ?>/fonts/leaguegothic-regular-webfont.woff') format('woff'),
url('<?php echo T3_TEMPLATE_URL ?>/fonts/leaguegothic-regular-webfont.ttf') format('truetype'),
url('<?php echo T3_TEMPLATE_URL ?>/fonts/leaguegothic-regular-webfont.svg#') format('svg');
}
<?php }?>

and copy this with your font name in the xml section

<option value="League Gothic">League Gothic</option>

Cheers
Paul
  • manh's Avatar
  • manh
  • Moderator
  • 45248 posts
  • 2106 Thanks
  • Karma: 603
The administrator has disabled public write access.
So for example I used the chunk five font

<?php if(($bodyfont || $headingfont || $navfont || $logofont) == "Chunk Vive") { ?>
@font-face {font-family: 'Chunk Five';
src: url('<?php echo T3_TEMPLATE_URL ?>/fonts/chunkfive.eot');
src: url('<?php echo T3_TEMPLATE_URL ?>/fonts/chunkfive.eot?#iefix') format('embedded-opentype'),
url('<?php echo T3_TEMPLATE_URL ?>/fonts/chunkfive.woff') format('woff'),
url('<?php echo T3_TEMPLATE_URL ?>/fonts/chunkfive.ttf') format('truetype'),
url('<?php echo T3_TEMPLATE_URL ?>/fonts/chunkfive.svg#') format('svg');
}
<?php }?>

in the head file

Having already extracting to the font pack to the root of the templates > templatename > fonts folder

and in the xml file

<option value="Chunk Five"></option>

Cheers
Paul
  • manh's Avatar
  • manh
  • Moderator
  • 45248 posts
  • 2106 Thanks
  • Karma: 603
The administrator has disabled public write access.

zentoolsIf you use Zentools please post a review at the Joomla! Extensions Directory.

Happy Campers