Content from the main area flows around the menu to the left - Joomla! Forum - community, help and support
i using custom template made. first 1 have ever tried , joomla beginner. of content being wrapped around left menu item not desire. not in milkyway template sure there don't know how do. here picture of happening. front end editing happens @ other places such when displaying form made fabrik component.
here code.
and css sorry css not real organized.
thank you
here code.
code: select all
<?php defined( '_jexec' ) or die( 'restricted access' );?>
<!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; ?>" >
<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" />
</head>
<body>
<div id="container">
<div id="header"></div>
<div id="crumbs"><jdoc:include type="modules" name="crumbs" /></div>
<div id="left"><jdoc:include type="modules" name="left" /></div>
<div id="content"><jdoc:include type="component" /></div>
<div id="footer"><jdoc:include type="modules" name="footer" /></div>
</div>
</body>
</html>
and css sorry css not real organized.
code: select all
body {
background-color: #964111;
font-family: arial, helvetica, sans-serif;
font-size: 12px;
margin-top:30px;
}
#container {
margin: auto;
width: 802px;
}
#crumbs {
height:30px;
}
#header {
background-image: url(../images/header.jpg);
height: 281px;
}
#footer {
clear:both;
}
#footer div {
padding:5px;
background-color: #964111;
font-size: 10px;
color: #feba77;
}
div {
background-color: #fff;
}
#turnkey-credit {
display: none;
}
#left {
float:left;
margin-right:30px;
padding-bottom:20px;
width:200px;
}
#left ul {
list-style-type:none;
margin:0px;
padding-left:30px;
}
#left li {
padding:5px;
}
a {
text-decoration:none;
}
.active {
color:#964111;
font-weight:bold;
}
a:link {
color:navy;
}
a:visited{
color:navy;
}
a:hover{
color:#964111;
}
.active {
color:#964111;
font-weight:bold;
}
#content {
padding:15px 40px 0px;
}
thank you
Comments
Post a Comment