I need some fresh eyes to look at this. It's a joomla template, with 2 or 3 columns.
Now on the 2 columns the text is perfect, but once a third column is added it ignores the class applied, and the text is flush to the edge. Once a third colum is introduced a class "contentrite" is applied instead of "content"
Heres the template:
<?php if($this->countModules('right or user3 or user4')) {?> <!-- Text banners Start --> <!-- Text banners end --> <?php } else { ?> <!-- Text banners Start --> <!-- Text banners end --> <?php } ?>
Here's the css
.content { margin: 20px 75px 20px 75px; background: url(images/rightend.gif) no-repeat; background-position: bottom right; } .contentrite{ margin: 20px 75px 20px 75px; background: none; }
Can't see anything relevant in what's provided. The class change only removes a background, presumably a corner or border image. Maybe you can give the source of the output with the includes rendered ?
I would ditch the scrollbars and add 25 padding to .contentrite and set the .contentrite #scroll height to 100%
If you want to keep the srcolled pane :
.contentrite #textbanners{ margin:25px 25px 0 25px; } .contentrite .blog{ margin:0 25px; }
Thanks - unfortunately the scrollbars has to stay. I'll try your suggestion out, and will let you know.