Hi
You can change the space header and sidebar on your site with my tweak
- Open templates/ja_wall/css/layout.css file
#sidebar {
margin-left: -240px;
position: fixed;
top: 200px; /* Space for header */
width: 250px;
}
#container .main {
padding-top: 200px; /* Space for header */
padding-right: 0.1%;
}
to
#sidebar {
margin-left: -240px;
position: fixed;
top: 60px;/* Space for header */
width: 250px;
}
#container .main {
padding-top: 60px;/* Space for header */
padding-right: 0.1%;
}
- About to add new position, you can follow step
Open templates/ja_wall/index.php file and add it code anything on your site
<?php if ($this->countModules('new-position')): ?>
<jdoc:include type="modules" name="new-position" />
<?php endif; ?>
Regards