Showing posts with label Fix Issues. Show all posts
Showing posts with label Fix Issues. Show all posts

Why didn't embed font style work on IE? How to fix

Why didn't embed font style work on IE? How to fix this isues?
Embed font not work with IE

@font-face {
font-family: MyCustomFont;
src: url("Aspire-DemiBold.ttf") /* TTF file for CSS3 browsers */
}

How to check current page is home/frontpage in joomla 1.5.23

On website joomla 1.5.23, we only want to show something on homepage but not showing on other pages. What code, and how to solve this problem? Below is a way that I want to show to you:
Source Code
<?
$menuitem = & JSite::getMenu();
if ($menuitem->getActive()->name == "Home" && $_GET[page]=="")
{
       echo "Boldownload.com hello the world";
}else
{
      //not homepage
}
?>