Hi rocciaseventy and welcome to the forum,
you can download fonts or use google font api.
For example font squirrel on
http://www.fontsquirrel.com/ or the Google Font API on
http://code.google.com/intl/de-DE/apis/webfonts/ or TypeKit on
http://typekit.com/You can write the following code on top inside the template.css or your own css-file:
- Code: Alles auswählen
@font-face {
font-family: "OwnFont";
src: url('newfont.eot');
src: local(' '),
url (fonts/newfont.woff) format ("woff"),
url (fonts/newfont.otf) format ("otf"),
url (fonts/newfont.svg#ID) format ("svg");
}
Be sure to use the right src. It works with different browsers.
If you use your own css-file stored inside the templates css folder, you have to include this file in templates index.php like this:
- Code: Alles auswählen
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/font.css" type="text/css" media="screen" />
Another way for Google Font API is to copy the following line inside the head area of the templates index.php:
- Code: Alles auswählen
<link href='http://fonts.googleapis.com/css?family=Cantarell' rel='stylesheet' type='text/css'>
Now you can use the font for any selectors or tags inside the templates css files. For exampel:
- Code: Alles auswählen
body {
font-family: "OwnFont", sans-serif;
}
or the google example:
- Code: Alles auswählen
html, body {
font-family: 'Cantarell', arial, serif;
}
I hope that can help you.
Flash in Joomla 1.7 is a little bit tricky. The easiest way is to use an extension like Custom Flash. You will get this extension on
http://extensions.designcompasscorp.com/index.php/custom-flashIt is a component, module and plugin. Simply safe your swf-file inside your joomla-folder "images". Then in the component click the "New-Button". Now you can enter the path to your swf-file. For example "images/aha468x60_1.swf".
Now save your configuration and in the new window after saving remember the ID on the left. You can use this id now for module or plugin. For the module you can also use the file path to the swf-file. For the plugin write the following:
- Code: Alles auswählen
{customflashid=1}
Another extensions you will find on
http://extensions.joomla.org/extensions/core-enhancements/flash-managementDoes it help?