Ok so the issue is that on the right side of Transparent Bliss we have a DIV that holds all the modules called:
#farrightinner2 {
padding-left: 10px;
padding-right: 10px;
overflow: hidden;
}
As you can see it has padding left and right which means nothing published right can actually go all the way to the edge - it's being pushed out by 10px on the left and overflowing on the right...
We could tackle this in a couple of ways - you could give your menu a class suffix which will let us target it with some specific css - we could then give tis menu a -10px margin which would pull it back inline.
But perhaps easier and what I'm going to suggest first is simply creating a module position outside of the farrightinner2 DIV so that it is not being padded.
Open index.php and find:
| Code: |
<div id="farright">
<div id="farrightinner2">
<jdoc:include type="modules"
name="user4" style="xhtml" /
>
<jdoc:include type="modules"
name="right" style="xhtml" /
>
</div>
</div>
|
Simply move the following:
| Code: |
<jdoc:include type="modules"
name="user4" style="xhtml" /
>
|
So that it now looks like:
| Code: |
<div id="farright">
<jdoc:include type="modules"
name="user4" style="xhtml" /
>
<div id="farrightinner2">
<jdoc:include type="modules"
name="right" style="xhtml" /
>
</div>
</div>
|
Let me know if that works - user4 will obviously be where you want to publish your menu and right can be used for anything you want to keep within 10 px of the bounds of the right column.
Cheers BB<br><br>Post edited by: Big Bear, at: 2008/07/18 19:33