I just made it with TH only. One CMS control, some code and one hidden custom TH template. You can open sidebar with "Open link" and edit content inside in TH. Ad controls, widgets, menus, all. Position absolute for CMS control, some other small things, all in TH.
It needs some thinking about responsive, right width, scroll. But you do it only once for all next websites in the future.
<div class="wrapper-navbar-nav">
<div class="nav navbar-nav">
<div class="dropdown navbar-right">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="icon-lines"></i></a>
<div class="dropdown-menu pull-left bg-warning" style="min-width:800px;width:100%;">
<?php
$args=array(
// cat'=> 606,
'posts_per_page' => 1,
);
query_posts($args);
//Get the Posts
theme_blog_18();
wp_reset_query();
?>
</div>
</div>
</div>
</div>
I just made it with TH only. One CMS control, some code and one hidden custom TH template. You can open sidebar with "Open link" and edit content inside in TH. Ad controls, widgets, menus, all. Position absolute for CMS control, some other small things, all in TH.
It needs some thinking about responsive, right width, scroll. But you do it only once for all next websites in the future.
<div class="wrapper-navbar-nav">
<div class="nav navbar-nav">
<div class="dropdown navbar-right">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="icon-lines"></i></a>
<div class="dropdown-menu pull-left bg-warning" style="min-width:800px;width:100%;">
<?php
$args=array(
// cat'=> 606,
'posts_per_page' => 1,
);
query_posts($args);
//Get the Posts
theme_blog_18();
wp_reset_query();
?>
</div>
</div>
</div>
</div>