496 comments found.
update ?
No update for new features. but will keep updating to latest Bootstrap.
Thanks
Hy, is there any “easy” way to show site view on sm (max-width: 991px) like it is on xs (without sidebar). I have some items in header and it gets a bit messy when width is between 767 and 977 px. So I would like to remove sidebar and contents of header when it gets smaller then 991 and show them in dropdown like it is in max-width: 767px.
Tnx
in the “less/app.layout.less”, change the @media (min-width: 768px) to @media (min-width: 992px) and regenerate the app.css file.
also need use the “hidden-sm” on the .nav-primary.
Thanks
I’m trying to reproduce the “USD/GBP”-Dropdown Select from /form.html Please, which .js library makes this happen? Is there a .js sequence that I must to follow? Thank you very much for your great work.
You can see the code in the “js/app.js” line 107-139. you need put a “dropdown-select” class on the ul.dropdown-menu
Thanks
Move .btn-info CSS styling to come after .btn-white in app.css to fix button active styling on bootstrap wysiwyg editor.
Unsure if it breaks anything, but seems to work fine.
no breaks. Thanks
Hi, What is the best way to make footer bigger ? I want to put <textarea> in the footer however footer is too small for that. Much appreciated for any help
.vbox > section.w-f-lg {bottom: 150px;}
.vbox > footer.f-lg {height: 150px;}
Can you have multiple sections in a vbox? Like so <section class=”vbox”> <header></header> <section></section> <section></section> <footer></section> </section>
This doesnt seem to work for me
only for one section in vbox. Thanks
That seems extremely limited – how do you suggest we do a complicated layout? I quote your documentation – “use .vbox(vertical box) and .hbox(horizontal box) to build the web application layout. you can build the complicated layout as you want.”
if you want to put multiple section in a vbox. you can use the flex .vbox, check the http://flatfull.com/themes/todo/tasks.html right side.
Thanks
Hi,
It’s me again. This times I’ve got stucked with calling WYSIWYG editor in an ajaxModal. Try to call every function there is but still can’t get Fonts, Sizes and Link button to work. Also there are Bootstrap and Jquery UI required as well.
Any advice on what to call when in an ajaxModal?
Thanks.
when ajaxModal called. the components in that modal need call the plugin function again. if you included the js/wysiwyg/demo.js call the initToolbarBootstrapBindings() and $(’#editor’).wysiwyg()
Thanks
Tried but no luck. I’ve put the whole demo.js inside the modal, but still didn’t work.
Put other dependencies like bootstrap.js and jquery.js (plus the other 3 files in the wysiwyg folder), it does work but no drop-down menus for fonts, sizes and images.
How do you think?
Yep. It worked perfectly. Thanks.
May I have your contact please? I like your work, it’s neat and well-written, I bought 2 of your recent items. I just want to follow you, just in case I find more things in common.
you can send msg on my profile page or follow me on Envato. Thanks
Excellent Jobb
I like your work
Good Luck with sales
Thanks
Do you have some bower.json prepared with all resources you’re using in this template? Thanks!
No bower.json file, Thanks
Dear,
We all ready purchase todo-web-application-and-admin-panel-template/5458827
Item Purchase Code: 6883104f-8a50-4a33-80ea-ec6079a9dd8b
Purchase Date: 2014-07-15 08:43:23 UTC
we checked this template in ie 8 from live preview from your site but your downloaded zip file is issue problem in ie 8.
(Please Check blog.html from downloaded zip file and also check live preview from http://themeforest.net it’s work fine in ie
Please give send me final zip
you can download from your account->downloads. it’s the final zip. Thanks
i cant get the vertical wizard to work (the one shown on the live demo ‘components.html’ page).
notice it does not work in your demo either… something broken, cant figure out what though 
i still cant work this one out, some help would be greatly appreciated.
if you could just fix the vertical-wizard on your live demo that would be awesome 
This bug fixed on “Notebook”, i will update todo soon. but if you want fix it soon. you can send me msg via my profile page. Thanks
Just updated and fixed the bug.
cool thanks! ill check it out 
How do I connect Wysiwyg editor to html tag – textarea?
The html tag wrapped by a div, so you can use a js to get the inner html from the div and put it in a hidden textarea when you post the form.
Hello, I like this admin template. And i want to use it for my business. Are you interested to make the templlate working for me?
Sent me a msg via my profile page and we discuss the details. Thanks
I really like your designs. Reminds me a lot of the PROUI template on this site. Actually yours I believe are a little more pleasing to the eye but PROUI is a little more polished on functionality and links actually doing something. Great work though. I will keep an eye out for changes and hopefully would like to purchase your designs.
There are many jQuery plugins, Thanks
Hi there,
Is there a simple way to load tab content via ajax (something like ajaxModal)?
Thank you.
To be clearer, I’d like the ajax to load when mouse-over (not onClick as current).
you can use the code below.
<a href="#profile" data-toggle="tab" data-tab-src="a.html">Profile</a>
$(document).on('mouseover', '[data-tab-src]', function(e){
var $this = $(this)
, $target = $this.attr('href')
, $remote = $this.attr('data-tab-src');
$.ajax($remote).done(function(r){
$($target).html(r);
});
});
I have high hope that I’ll get answered in minutes (considering the time zone difference as well) – don’t know why. And I am not disappointed. You rock!
Thank you author. Such a concise yet beautifully working answer. You made my day.
Cheers, Nghi
Somehow this still works on Click and not MouseOver. Can I have it right?
I think the ajax and mouseover do work, but the tab class is not toggled, so it does not appear. Can you fix it?
Ok. Self-fixed. Hehe. Thanks.
$(document).on(‘mouseover’, ‘[data-tab-src]’, function(e){ var $this = $(this) , $target = $this.attr(‘href’) , $remote = $this.attr(‘data-tab-src’); });
$.ajax($remote).done(function(r){
$($target).html(r);
});
$(this).tab('show')
you got!
I want a page, there are several select2-option elements,how do?
check the online document http://ivaynberg.github.io/select2/ Thanks
When using a mobile phone browser, I want the bottom or the top has been floating on the screen, how to do? thank you.
use the ”.navbar-fixed-top” or ”.navbar-fixed-bottom” to fixed the position. http://getbootstrap.com/components/#navbar-fixed-top
Thank you for your help. Good Luck.
would you send me document of modal? thanks.
ajax-modal. when click button,show the new page on modal.
Bootstrap Modal documents here http://getbootstrap.com/javascript/#modals
The ajax-modal likes the modal “remote” option, but it does not need a .modal-content, you can define the content as you want.
Thanks
Hi, I have left menu that height more than the screen height.. It give problem in whole page..how to make left menu have scrollable without move it to aside. because I need to make it offset too..
I’ve made it..thank you for great template
Thank you.
Hi, I think app.js is conflict with highcharts. If i remove app.js, highcharts works fine. But, your apps not working. Plz help me..
You can use the firebug to check which line goes error. Thanks
I’ve got a big problem with IE9 and vertical scroll bars. It keeps showing a gap between the scroll bar and right-hand side. This is with your demo site so no code has been changed.
Please help!
See screenshot.
http://i.imgur.com/LN2MItr.jpgTested on IE9 on Windows 7, no gap. Thanks
Thanks so much, I guess it just be me!
Hi Flatfull!!
Awesome theme! Congratulations!!
I´m trying to freeze the landing page “intro” for different resolutions (1920×900 and 1200×600), but it just works with horinzontally (width), not works vertically (height)... There is a way to do that?
I having problem with background images on Landing Page… I´m using this code, that works fine on Firefox, but doesn´t work on Chrome:
body {
background: url("../images/hand_classroom_1170_400.png") no-repeat center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.panel-default {
opacity: 0.95;
margin-top:45px;
}
.form-group.last { margin-bottom:0px; }
#escola {
background: url("../images/school2.jpg") no-repeat center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
Do you have any idea what I could do in this case?
Thank´s!!
you need set the height for different size
@media (min-width: 1200px) {
#escola{height: 600px}
}
@media (min-width: 1920px) {
#escola{height: 900px}
}