Open your_joomla_directory/libraries/joomla/document/html/renderer/head.php and find on line 85…
[php]$strHtml .= $tab.'<title>’.htmlspecialchars($document->getTitle()).'</title>’.$lnEnd;[/php]and change to…
[php]$strHtml .= $tab.'<title>www.yourdomain.com – ‘.htmlspecialchars($document->getTitle()).'</title>’.$lnEnd;[/php]This will place http://www.yourdomain.com – before all the normal page titles
WARNING: Do not replace the ‘.htmlspecialchars($document->getTitle()).’ or all your pages will just have your domain name as the title. This would be extremely bad for SEO.