Ok thank you this worked Fine but!!1
Under your video index.php
the paths:
<link rel="stylesheet" href="[color=red]/[/color]<?php echo $this->baseurl; ?>[color=red]/[/color]templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="/<?php echo $this->baseurl; ?>/css/template.css" type="text/css" />
are wrong!!
and intead of :
<link rel="stylesheet" href="/<?php echo $this->baseurl; ?>/css/template.css" type="text/css" />
you must have this:
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template; ?>/css/template.css" type="text/css" />
for joomla to work!
anyway thanks for help!!