Hi
open up sf-blog.php in the includes folder and go to line 186 cut and paste the code for tags below the code for the search box, like below:
// CATEGORIES
$blog_aux_output .= '<li><a href="#" class="blog-slideout-trigger" data-aux="categories"><i class="ss-index"></i>'.__("Categories", "swiftframework").'</a>';
// SEARCH FORM
$blog_aux_output .= '<li class="search"><form method="get" class="search-form" action="'. home_url().'/">';
$blog_aux_output .= '<input type="text" placeholder="'. __("Search", "swiftframework") .'" name="s" />';
$blog_aux_output .= '</form></li>';
// TAGS
$blog_aux_output .= '<li><a href="#" class="blog-slideout-trigger" data-aux="tags"><i class="ss-tag"></i>'.__("Tags", "swiftframework").'</a>';
// ARCHIVES
$blog_aux_output .= '<li><a href="#" class="blog-slideout-trigger" data-aux="archives"><i class="ss-storagebox"></i>'.__("Archives", "swiftframework").'</a>';
// RSS LINK
if ($rss_feed_url != "") {
$blog_aux_output .= '<li><a href="'.$rss_feed_url.'" class="rss-link" target="_blank"><i class="fa-rss"></i>'.__("RSS", "swiftframework").'</a>';
}
Then add this custom css:
.blog-aux-options > li:nth-child(4), .blog-aux-options > li:nth-child(5) {
display: none;
}
.blog-aux-options > li:nth-child(3) a {
border-radius: 0 4px 4px 0;
}
Hope this helps
– Kyle