Wide sidebar over columns


Author Message
Guillermo

Posted: 10/2/2010
Quote message 

Hello,

I need to add a wide sidebar over my left and right column. I have a template with both columnsat the right side, but I need to add a new position just over both column, I do a photoshop image showing what I need:



So, I know I have to add the new position in the templatedetails.xml, but do I have to add a style in the template.css? (Just as I did to add the search box in the header) and what line of code and where in the index.php to make it possible.

Thanks in advance.
 
Garry

Posted: 10/3/2010
Quote message 

Following threads may be helpful:

http://www.artisteer.com/?post_id=116589&p=forum_post&forum_id=20
http://www.artisteer.com/?post_id=142125&p=forum_post&forum_id=17

 
Guillermo

Posted: 10/4/2010
Quote message 

Hello Garry, thanks for the answer.

Actually I read the threads and can have a search module inside the header working great.

But with this position I have troubles....

1.- I add the new module position in the templatedetails.xml. (I call it Video)
2.- I add the lines to the template.css, I add this lines:
#Video

{
width:350px;
float:right;
margin-right:-350px;
}

3.- I add this lines to the index.php
<div id="Video"><jdoc:include type="modules" name="Video" style="art-block" /></div>

4.- I add those lines just as you can see:
<jdoc:include type="component" />

<?php echo artxModules($document, 'banner4', 'art-nostyle'); ?>
<?php echo artxPositions($document, array('user4', 'user5'), 'art-article'); ?>
<?php echo artxModules($document, 'banner5', 'art-nostyle'); ?>
</div>
<div id="Video"><jdoc:include type="modules" name="Video" style="art-block" /></div>
<?php if (artxCountModules($document, 'left')) : ?>
<div class="art-layout-cell art-sidebar1"><?php echo artxModules($document, 'left', 'art-block'); ?>
</div>
<?php endif; ?>
<?php if (artxCountModules($document, 'right')) : ?>
<div class="art-layout-cell art-sidebar2"><?php echo artxModules($document, 'right', 'art-block'); ?>

<?php endif; ?>
</div>

But... As you can see in the image below, the module shows at the background of the left and right column, and has not the module style.

Thanks a lot for your time... Any Help?
 
Guillermo

Posted: 10/7/2010
Quote message 

Hello Guys!

Any help to this thread?

Thanks in advance.

Guillermo