Css positioning in joomla 1.5 template -
i've been trying make joomla template on left , on right bar fixed width. main div should responsive.
i managed create layout want here: http://dennybeulen.nl/rena/nl/over-ons.html
the thing not working menu on left side. when change css menu works, layout not right anymore.
the menu working if make these changes (just removed '-' in front of 130):
div.fluid{ margin-left: 130px; }
hope can give me hints.
looks div.fluid
covering left column. try making div.left
absolutely positioned , setting div.fluid
having no left margin:
div.fluid{ float: left; width: 100%; margin-right: -290px; margin-left: 0px; } div.left{ position: absolute; width: 130px; min-height: 1px; padding-top: 10px; }
keep in mind, div.left no longer affect elements floating against it.
Comments
Post a Comment