By Mobile Ink LLC on Saturday, 08 March 2014
Posted in Technical Issues
Replies 5
Likes 0
Views 734
Votes 0
A couple of weeks ago I installed version 3.9.15245 and noticed that the menu compact but not collapsed and then I upgraded again the yesterday to version 3.9.15278 and the menu was collapsed again I would prefer that the menu bar not be collapsed. Can you please let me know how to get the menu to not be collapsed. Thank you.
Hello,

Take a look at the code here, /components/com_easyblog/themes/default/toolbar.php
·
Monday, 10 March 2014 12:50
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

You can actually disable the responsive scripts in the back end settings of EasyBlog under Settings > Layout . Just disable the responsive script
·
Sunday, 09 March 2014 02:41
·
0 Likes
·
0 Votes
·
0 Comments
·
I did see this option in the back-end but I still want my blog to be responsive if being viewed on a tablet or mobile device, so is there any way to change this in the code so that the whole blog will still be responsive. Thanks Mark....
·
Sunday, 09 March 2014 15:09
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

Unfortunately there's no work around for this unless you have a "larger" component area on the site. The reason why we have such javascript in place is because we cannot control how the Joomla template behaves. Not all Joomla templates has the necessary "mobile" device tags on the header. So we need to rely on our own javascript to give a nudge to our responsive script when certain width of the screen matches.
·
Sunday, 09 March 2014 21:31
·
0 Likes
·
0 Votes
·
0 Comments
·
If you could please tell me what file the following script is in. I just want to change the size a bit. Thanks.


EasyBlog.require()
.script('layout/responsive')
.done(function($){

$('#ezblog-head #ezblog-search').bind('focus', function(){
$(this).animate({ width: '170'} );
});

$('#ezblog-head #ezblog-search').bind( 'blur' , function(){
$(this).animate({ width: '120'});
});

$('#ezblog-menu').responsive({at: 540, switchTo: 'narrow'});
$('.eb-nav-collapse').responsive({at: 560, switchTo: 'nav-hide'});
$('.btn-eb-navbar').click(function() {
$('.eb-nav-collapse').toggleClass("nav-show");
return false;
});

});
·
Monday, 10 March 2014 01:37
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post