Closed s1-ranjan closed 4 years ago
See Flexi/plugins/default/theme/page/elements/sidebar.php , example you can move those elements
<?php
if(!ossn_isLoggedin()){
return;
}
?>
<div class="sidebar ">
<div class="sidebar-contents">
<?php
echo ossn_view_form('search', array(
'component' => 'OssnSearch',
'class' => 'ossn-search visible-xs visible-sm visible',
'autocomplete' => 'off',
'method' => 'get',
'security_tokens' => false,
'action' => ossn_site_url("search"),
), false);
if (ossn_is_hook('newsfeed', "sidebar:left")) {
$newsfeed_left = ossn_call_hook('newsfeed', "sidebar:left", NULL, array());
echo implode('', $newsfeed_left);
}
?>
</div>
</div>
It would be great if the position of the search bar is moved to the top of the side bar list as shown in the following image. Along with this request it would be nice if this theme is capable to render .svg logos in the header.