______________________________________
Reverse Columns Tutorial
These changes will reverse the order of the columns so that you have a small left column, medium middle column and large right column with the news. Click here for an example screenshot.
Open up /css/style.css
Code:
#leftcol {
width: 550px;
float: right;
overflow: hidden;
}
#leftcol-wide {
width: 790px;
float: right;
overflow: hidden;
}
#midcol {
width: 220px;
margin-right: 20px;
float: right;
overflow:hidden;
font-size: 12px;
}
#rightcol {
width: 150px;
margin-right: 20px;
float: left;
} 2 Column Tutorial
To combine the middle column and right column into one column so that Wistie becomes a 2 column template, follow this guide. This will need some additional tweaking, but it covers the basics. Here is a screenshot example of the result.
----------------
Open /pligg.tpl and Find:
Code:
{if $pagename eq "submit"}
{elseif $pagename neq "story" && $pagename neq "user" && $pagename neq "profile" && $pagename neq "login" && $pagename neq "register" }
<div id="leftcol">
{else}
<div id="leftcol-wide">
{/if} Code:
{if $pagename eq "submit"}
{else}
<div id="leftcol">
{/if} Code:
</div> <!-- END MIDDLE COLUMN -->
Code:
<!-- END MIDDLE COLUMN -->
Code:
<!-- START RIGHT COLUMN -->
<div id="rightcol"> Code:
<!-- START RIGHT COLUMN -->
Open /sidebar.tpl
Replace line 1 with:
Code:
{if $pagename eq "story" || $pagename eq "login" || $pagename eq "register"}<div id="midcol">{/if} Open /css/style.css and replace all instances of 550px with 660px.
Also Replace:
Code:
#midcol {
width: 220px; Code:
#midcol {
width: 280px; 





Linear Mode




