I did this long ago but have since forgotten how to do it.
I want to see what it looks like with both sidebars on the Right rather than on each side.
Where do I do that from? Spent a lot of time in CSS and cant figure it out.
thanx
RJ
Moving sidebars
Re: Moving sidebars
As usual, it depends on the actual template you're using. Even better would be an url to the blog in question ...rj wrote:I did this long ago but have since forgotten how to do it.
I want to see what it looks like with both sidebars on the Right rather than on each side.
Where do I do that from? Spent a lot of time in CSS and cant figure it out.
YL
http://rackjite.com
Orginally it was called CARL CONTEST, but in the past year I changed it so much I dont know if that matters any longer.
But its still called that in the directory.
Thanx
RJ
Orginally it was called CARL CONTEST, but in the past year I changed it so much I dont know if that matters any longer.
But its still called that in the directory.
Thanx
RJ
It does, since it still uses the table layout. Oh my.rj wrote:Orginally it was called CARL CONTEST, but in the past year I changed it so much I dont know if that matters any longer.
Find this part in your index.tpl:
Code: Select all
<table id="mainpane">
<tr>
{if $leftSidebarElements > 0}
<td id="serendipityLeftSideBar" valign="top">{serendipity_printSidebar side="left"}</td>
{/if}
<td id="content" valign="top">{$CONTENT}</td>
{if $rightSidebarElements > 0}
<td id="serendipityRightSideBar" valign="top">{serendipity_printSidebar side="right"}</td>
{/if}
</tr>
</table>Code: Select all
<table id="mainpane">
<tr>
<td id="content" valign="top">{$CONTENT}</td>
{if $leftSidebarElements > 0}
<td id="serendipityLeftSideBar" valign="top">{serendipity_printSidebar side="left"}</td>
{/if}
{if $rightSidebarElements > 0}
<td id="serendipityRightSideBar" valign="top">{serendipity_printSidebar side="right"}</td>
{/if}
</tr>
</table>YL