Hi JA support team:
I woul like to show my 2 modules ("Seyret All In One" and "Being Watched Videos Seyret Pro") togheter, not separated (or one over the other) as you can see on my test website: http://www.calicristiana.com/nueva/
MODULE1
MODULE2
and
Change their positios to:
MODULE1MODULE2
here is the code i have tried to change:
Code:
<!-- videos--> <?php if( $this->countModules('sey1') ) { ?> <div id="ja-tops1" class="wrap clearfix"> <div id="ja-sey1"> <jdoc:include type="modules" name="sey1" style="jamodule" /> </div> <div id="ja-sey2"> <jdoc:include type="modules" name="sey2" style="jamodule" /> </div> </div> <?php } ?> <!-- //videos -->
Code:
/* MAIN LAYOUT --------------------------------------------------------- */ .wrap { clear: both; width: 100%; } #ja-sey1{ float: left; width: 470px; } #ja-sey2{ float: right; width: 470px; } .main, #ja-topsl .ja-box-ct { margin: 0 auto; width: 940px;
Thanks in advanced!!!!!!!!!
1 answer
Dear ,
Please try to change code under <!-- TOPBLOCK --> …. <!-- //TOPBLOCK --> :
Code:
<!-- videos--> <?php if( $this->countModules('sey1') ) { ?> <div id="ja-topsl2" class="wrap"> <div class="main clearfix"> <div id="ja-sey1"> <jdoc:include type="modules" name="sey1" style="jamodule" /> </div> <div id="ja-sey2"> <jdoc:include type="modules" name="sey2" style="jamodule" /> </div> </div> </div> <?php } ?> <!-- //videos -->
and
Code:
#ja-topsl2 .moduletable { float: left; width: 470px; }