Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • assadniang Friend
    #132603

    Hello,

    I would like to reduce the Slideshow width to 500px so that I can make room for another module position to the right of the slide show. Please see the attached image for clarification.

    Thanks for your help


    1. test
    hanifahmed Friend
    #267226

    If you go to Extensions – Modules and click on Slideshow – you should be able to change the width on the left hand side menu.

    assadniang Friend
    #267228

    I know that, but I want to be able to add a module position to the right of the slideshow.

    Thanks

    mj1256 Friend
    #267232

    its more than a matter of the width of the module, you are going to have to restructure the template.

    assadniang Friend
    #267443

    Well, I tried this in index.php with user10 as the new module position, but it is showing up below the slideshow, not to the right as I want it:

    <!-- BEGIN: SLIDESHOW -->
    <div id="ja-topsl1">
    <jdoc:include type="modules" name="slideshow" style="raw" />
    </div>

    <?php if( $this->countModules('user10') ) {?>
    <div class="ja-box<?php echo $botsl['user10']['class']; ?>" style="width: <?php echo $botsl['user10']['width']; ?>;">
    <jdoc:include type="modules" name="user10" style="xhtml" />
    </div>
    <?php } ?>

    <!-- END: SLIDESHOW -->

    mj1256 Friend
    #267445

    i wish it was that simple, but its not, you are going to have to rebuild or restructure the template layout in order to do it.

    the right hand column and the content section are going to have to be moved down in the template and then the area you want to use will need to be positioned for two modules side by side. But that will affect every page, no just the home page as the template works globally for the site.

    Menalto Friend
    #267812

    <!-- BEGIN: SLIDESHOW -->
    <div id="ja-topsl1">
    <jdoc:include type="modules" name="slideshow" style="raw" />
    </div>

    <?php if( $this->countModules('user10') ) {?>
    <div id="ja-topsl2">
    <jdoc:include type="modules" name="user10" style="xhtml" />
    </div>
    <?php } ?>

    <!-- END: SLIDESHOW -->
    In the css file find ja-topsl1 and change it to how it is below here:

    #ja-topsl1 {
    border-bottom:1px solid #E6E6E6;
    height:250px;
    float: left;
    position:relative;
    width: yourwidth;
    }

    And then add this here:

    #ja-topsl2 {
    float: left;
    width: yourwidth;
    }

    Remember to change the width to the width you need to have.
    Let us know if it works out for you.

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

This topic contains 7 replies, has 4 voices, and was last updated by  Menalto 16 years, 2 months ago.

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