-
AuthorPosts
-
April 1, 2008 at 4:17 pm #127143
how can I remove the gray border around the modules in the right1 and right2 positions? I don’t see any other module class suffixes other than _menu, _text, _black. I think there should be _none, or _blank, to drop the default style for these positions.
Please help!
Menalto FriendMenalto
- Join date:
- May 2007
- Posts:
- 4736
- Downloads:
- 0
- Uploads:
- 43
- Thanks:
- 2
- Thanked:
- 531 times in 361 posts
April 1, 2008 at 4:26 pm #243954Have you tried to add -no to the module suffix there?
April 1, 2008 at 5:24 pm #243960I have just tried adding ‘-no’ to the suffix, no change, I still have a gray border around the module.
http://www.georgebrent.net/gbc15x see the KOVAR sign-upMenalto FriendMenalto
- Join date:
- May 2007
- Posts:
- 4736
- Downloads:
- 0
- Uploads:
- 43
- Thanks:
- 2
- Thanked:
- 531 times in 361 posts
April 1, 2008 at 5:32 pm #243962Open up the index.php file from the template and find this:
<?php if ($this->countModules('right1 or right2')) { ?>
<div id="ja-colswrap" class="clearfix colw<?php echo $this->countModules('right1 and right2');?>"><div class="ja-innerpad clearfix">
<?php if ($this->countModules('right1')) { ?>
<div id="ja-col2">
<jdoc:include type="modules" name="right1" style="jamodule" />
</div>
<?php } ?><?php if ($this->countModules('right2')) { ?>
<div id="ja-col3">
<div class="ja-innerpad">
<jdoc:include type="modules" name="right2" style="jamodule" />
</div>
</div>
<?php } ?>
</div></div><br />
<?php } ?>
Marked i red where the problem is. If you replace with the code below you get no border around them.
And replace with this:
<?php if ($this->countModules('right1 or right2')) { ?>
<div id="ja-colswrap" class="clearfix colw<?php echo $this->countModules('right1 and right2');?>"><div class="ja-innerpad clearfix">
<?php if ($this->countModules('right1')) { ?>
<div id="ja-col2">
<jdoc:include type="modules" name="right1" style="raw" />
</div>
<?php } ?><?php if ($this->countModules('right2')) { ?>
<div id="ja-col3">
<div class="ja-innerpad">
<jdoc:include type="modules" name="right2" style="raw" />
</div>
</div>
<?php } ?>
</div></div><br />
<?php } ?>April 1, 2008 at 5:46 pm #243964Menalto,
thanks for the assistance, it has almost worked, there is still a partial border on right2Menalto FriendMenalto
- Join date:
- May 2007
- Posts:
- 4736
- Downloads:
- 0
- Uploads:
- 43
- Thanks:
- 2
- Thanked:
- 531 times in 361 posts
April 1, 2008 at 6:44 pm #243973Find this line in the template.css line file, around 548:
#ja-col3 div.ja-innerpad {
border-style:solid;
}
You can delete it and the border should go away. -
AuthorPosts
This topic contains 7 replies, has 2 voices, and was last updated by cameron62 16 years, 8 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum