Il css è compreso in un template di joomla ora ti posto il codice:
questo è il css
Codice PHP:
/* ####################### GENERAL ############################ */
html.body{
font-family: Arial, Verdana, Helvetica, sans-serif;
font-size: 12px;
color: #00000;
margin-top: 0px;
}
/* Global Formatting */
h1 {font-size:16px;line-height: 1em;font-weight: 900;}
h2 {font-size:15px;line-height: 1em;font-weight: 900;}
h3 {font-size:14px;line-height: 1em;font-weight: 900;}
h4 {font-size:13px;line-height: 1em;font-weight: 900;}
h5 {font-size:12px;line-height: 1em;font-weight: 900;}
h6 {font-size:11px;line-height: 1em;font-weight: 900;}
/*td{font-size: 11px;}*/
th{font-size: 12px;}
a {
color: #2650b3;}
a:hover {
color: #FF0000;}
a:visited {color: #2650b3;}
a.image, a.image:hover {border:0;}
li{ list-style: square;}
ul { list-style: square;}
/* ####################### END GENERAL SETTINGS ############################ */
body {
font-family: Arial, Verdana, Helvetica, sans-serif;
font-size: 12px;
color: #687898;
text-align:center; /*center hack*/
background-image: url(../images/background.png);
background-repeat: repeat-x;
background-position: bottom;
background-attachment: fixed;
padding: 0em;
margin-top: 1em;
margin-bottom: 1em;
}
div#container {
min-width:800px;
max-width:800px;
width: auto !important; /*IE6 hack*/
width:800px; /*IE6 hack*/
margin:auto; /*center hack*/
text-align:left; /*center hack*/
background-image: url(../images/main_box_background.gif);
background-repeat: repeat-y;
color: #000000;
font-size: 12px;
}
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearfix {
display: inline-block;
}/* Hides from IE-mac \*/
* html .clearfix {
height: 1%;
}
.clearfix {
display: block;
}/* end hide from ie-mac */
#div#top_header{
background-color: #E0E8F5;
width: 800px;
float: left;
}
div#header {
font-size: 2em;
font-weight: bold;
background-color: #E0E8F5;
width: 800px;
float: left;
border-bottom: 0px #79555A solid;
background-position: bottom;
background-image: url(../images/logo_top.png);
}
.inside_header {
padding-top: 0px;
padding-left: 8px;
padding-bottom: 0px;
height: 142px;
color: #79555A;
}
div#top_maune_div {
float: right;
overflow: hidden;
font-size: 12px;
padding-right: 8px;
}
div#leftside {
width: 21%;
float: left;
overflow: hidden;
padding-top: 1px;
background-repeat: no-repeat;
*/background-image: url(../images/left_leafes.gif);*/
background-position: 0px 0px;
}
.inside {
padding: 4px;
}
div#main {
width: 78%;
float: left;
overflow: hidden;
}
.inside_main {
width: 95%;
float: left;
overflow: hidden;
padding-left: 22px;
}
div#footer {
text-align: center;
width: 100%;
height: 80px%;
float: left;
margin-top: 4px;
border-top: 0px #000000 solid;
background-color: transparent;
background-image: url(../images/footer_background.png);
}
div#footer_bottom{
width: 100%;
height: 100%;
float: left;
background-image: url(../images/footer_background.png);
background-repeat: no-repeat;
background-color: transparent;
background-position: bottom;
}
/* ###################### End LAYOUT SETTINGS ############################## */
La parte interessata è "footer"
questo è l'index.php
[PHP]
<?php
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
$iso = split( '=', _ISO ); echo '<?xml version="1.0" encoding="'. $iso[1] .'"?' .'>';
?>
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; <?php echo _ISO; ?>" />
<?php mosShowHead(); ?>
<link href="<?php echo "$GLOBALS[mosConfig_live_site]/templates/$GLOBALS[cur_template]/css/template_css.css";?>" rel="stylesheet" type="text/css" media="all" />
</head>
<body>
<div id="container" class="clearfix">
<div id="header">
<div id="top_maune_div">
<?php if (mosCountModules('user3')>0) mosLoadModules('user3',0); ?>
</div>
<div class="inside_header">
<!-- [img]<?php echo [/img]logo.gif" alt="logo" width="67" height="78" longdesc="company logo" /><?php echo $mosConfig_sitename; ?>
--> </div>
</div>
<div id="leftside" >
<div class="inside" >
<?php if (mosCountModules('user4')>0) mosLoadModules('user4',0); ?>
<?php if (mosCountModules('user2')>0) mosLoadModules('user2',0); ?>
<?php if (mosCountModules('user1')>0) mosLoadModules('user1',0); ?>
<?php if (mosCountModules('left')>0) mosLoadModules('left',0); ?>
</div>
</div>
<div id="main">
<div class="inside_main">
<?php if (mosCountModules('top')>0) mosLoadModules('top',0); ?>
<?php if (mosCountModules('banner')>0) mosLoadModules('banner',0); ?>
<?php mosPathWay(); ?>
<?php mosMainBody(); ?>
</div>
</div>
<div id="footer">
<?php if (mosCountModules('bottom')>0){mosLoadModules('bott om',0);} else {echo ""; } ?>
<hr width="98%" align="center" />
<?php include_once('includes/footer.php'); ?>
<?php mosLoadModules ( 'debug', -2); ?>
</div>
</div>
[url="http://lady-beetle.com">
</body>
</html>
[/PHP]
Hai bisogno di qualcosaltro
Grazie ancora
Daniele