Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • cameron62 Friend
    #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 Friend
    #243954

    Have you tried to add -no to the module suffix there?

    cameron62 Friend
    #243960

    I 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-up

    Menalto Friend
    #243962

    Open 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 } ?>

    cameron62 Friend
    #243964

    Menalto,
    thanks for the assistance, it has almost worked, there is still a partial border on right2

    http://www.georgebrent.net/gbc15x

    Menalto Friend
    #243973

    Find 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.

    cameron62 Friend
    #243975

    that did the trick…thank you!

Viewing 7 posts - 1 through 7 (of 7 total)

This topic contains 7 replies, has 2 voices, and was last updated by  cameron62 16 years, 1 month ago.

We moved to new unified forum. Please post all new support queries in our New Forum