Спасибо за быстрый ответ )! CSS коды высылаю
Edit css/template.css /* Design by VTEM
http://www.vtem.net All Rights Reserved */
@import url(components.css);
@import url(modules.css);
@import url(layouts.css);
@import url(navigation.css);
@import url(forms.css);
@import url(typo.css);
@import url(error.css);
@import url(3rd_party.css);
/* ####################### GENERAL SETTINGS ############################ */
body {
color: #666;
margin:0;
padding:0;
line-height:1.8;
height:100%;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
background:#eee;
}
/* Global Formatting */
h1 {font-size:180%;line-height: 1em;font-weight: 900;}
h2 {font-size:160%;line-height: 1em;font-weight: 900;}
h3 {font-size:140%;line-height: 1em;font-weight: 900;}
h4 {font-size:120%;line-height: 1em;font-weight: 900;}
h5 {font-size:100%;line-height: 1em;font-weight: 900;}
h6 {font-size:80%;line-height: 1em;font-weight: 900;}
a,a:link,a:visited{outline:none;}
a{-moz-transition: color 0.2s linear 0s;}
a:hover{text-decoration:underline;}
img {border: 0 none; margin:2px 10px 2px 2px; padding:0;}
*{margin:0; padding:0}
ul,ol{ margin-left:12px;}
p{ padding-bottom:15px; margin:0px 0px 0px 0px;}
pre, blockquote, h1, h2, h3, h4, h5, h6{
margin: 0px 0;
padding: 0px 0px 0px 0px;
}
/* Clears Divs */
.clr{clear: both; height:0px;overflow: hidden;}
/* Clearfix */
* HTML .clearfix{ height:1%;}
html[xmlns] .clearfix{ display:block;}
.clearfix:after{
clear:both;
content:".";
display:block;
height:0;
visibility:hidden;
}
/* ####################### END GENERAL SETTINGS ############################ */
Edit main page template <?php
/* Design by VTEM
http://www.vtem.net All Rights Reserved */
defined( '_JEXEC' ) or die( 'Restricted access' );
include_once(JPATH_ROOT . "/templates/" . $this->template . '/vtemtools/default.php');
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" class="<?php echo css_browser_selector()?>" >
<head>
<jdoc:include type="head" />
<link rel="stylesheet" href="<?php echo $this->baseurl ;?>/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ;?>/templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ;?>/templates/<?php echo $this->template ;?>/css/template.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ;?>/templates/<?php echo $this->template ;?>/css/styles/<?php echo $TemplateStyle;?>.css" type="text/css" />
<?php include_once(JPATH_ROOT . "/templates/" . $this->template . '/vtemtools/css_var.php');?>
</head>
<body id="vtem">
<div id="vt_body_wrapper">
<div id="vt_main_top">
<div class="vt_wapper_mainmenu">
<div class="vt_container ">
<div class="vt_menufix clearfix">
<!-- /////////////////// VTEM MENU ///////////////////////////////-->
<div id="vt_main_menu">
<?php echo $vtemmainmenu; ?>
</div>
<!-- /////////////////// END VTEM MENU ///////////////////////////-->
</div>
<div class="vt_logo_top clearfix">
<div id="vt_logo">
<?php if($logo == 1){
echo '<a href="'.$this->baseurl.'"><h1>'.$logotext.'</h1><span>'.$slogan.'</span></a>';
}else{
echo '<a href="'.$this->baseurl.'"><img src="templates/'.$this->template.'/css/styles/vt_logo_'.$TemplateStyle.'.png" alt="VTEM Logo" /></a>';
}?>
</div>
<?php if($this->countModules('top')) : ?>
<div id="vt_top">
<jdoc:include type="modules" name="top" style="xhtml" />
</div>
<?php endif; ?>
</div>
</div>
</div>
</div>
<!-- /////////////////// MAIN LAYOUT ///////////////////////////////-->
<?php include_once(JPATH_ROOT . "/templates/" . $this->template . '/vtemtools/base.php');?>
<!-- /////////////////// END MAIN LAYOUT ///////////////////////////-->
<div id="vt_footer_menu_copyright">
<div class="conner_bottom"> </div>
<div class="vt_utility_gotop">
<div class="vt_container">
<?php if ($this->countModules('copyright')) { ?>
<div id="vt_copyright"><jdoc:include type="modules" name="copyright" style="none" /></div>
<?php } ?>
<div id="gotop"><p>
<script type="text/javascript">
window.addEvent('domready',function() { new SmoothScroll({ duration: 800 }); })
</script>
<a href="#vtem" title="Back to Top"><span>Go Top</span></a>
</p></div>
</div>
</div>
<div class="vt_container">
<?php if ($this->countModules('utility')) { ?>
<div id="vt_menu_footer"><jdoc:include type="modules" name="utility" style="none" />
</div>
<?php } ?>
<div class="clr"></div>
<?php echo $vtcopyright;?>
</div>
</div>
</div>
<?php include_once(JPATH_ROOT . "/templates/" . $this->template . '/vtemtools/debug.php');?>
</body>
</html>

Вот, то что сказали, выложила )