Hi Robbie,
1. Replace the below code in index template
With this
2. Also add this at the end of css3.css
Hope it help
1. Replace the below code in index template
Code:
<div class="sections">
<div class="section-forums">
{$forums}
</div>
<div class="section-side">
{$dvz_stream}
</div>
</div>
Code:
<div class="forum">
{$forums}
</div>
<div class="sidebar">
{$dvz_stream}
</div>
2. Also add this at the end of css3.css
Code:
.sidebar {
overflow: hidden;
}
.forum {
width: 74%;
float: left;
margin-right: 10px;
}
@media only screen and (max-width: 420px) {
.forum {
border: 0 none;
float: none;
margin-right: 0;
width: auto;
}
}
Hope it help