719 comments found.
hi, i’m using your theme now for a webapp; i want to mask every required field with an icon, it’s working with the splashy class on an i-tag. now i’v used an select-box, with uniform styled, and on that box i cannot get the icon on the right side of the selectbox (textbox is already working)
you can see html/wrong result here
$(".uni_style").uniform({
selectClass: 'uni-selector my-select',
});
now you need to add rules for this element, paste this rules
div.my-select {display:inline-block;vertical-align:middle;margin-bottom:0}
into style.css. That should help.
nice, i tried that solution but forgot to add the uni-selector class. 
Thank you for update, 1.7!

Hello,
First, congratulations on the job.
I’ve already started my project using Gebo 1.7, I’m using datatables (example dt_e server-side) with TableTools and Editor and I’ve tried several times to run correctly displaying a modal for editing data.
Have you followed all the steps in the tutorial http://editor.datatables.com but I could not believe it and have done everything right with datatables.
Probably I did not know the way to properly include the Gebo. Could you help me? Link my project http://4criativa.com.br/gebo-1.7/datatables.html
Thank you!
Hi, thank you. Please check path to dataTables.editor.bootstrap.js It seems that this file is missing
The TZD fought for support. Really missing include file link quoted. But I think there’s some conflict with css theme Gebo.
Once you’ve added the file dataTables.editor.bootstrap.js when selected some row (more precisely the white row) they eat. Could you help me.
To see what I’m talking about go http://4criativa.com.br/gebo-1.7/datatables.html
Thank you.
/lib/datatables/extras/Editor/examples/support/bootstrap/dataTables/dataTables.bootstrap.css and add !important to .table tbody tr.active td, .table tbody tr.active th (around line 83)
.table tbody tr.active td, .table tbody tr.active th {
background-color: #0088CC !important;
color: white;
}
tank you very much
What’s the css class I need so I can have a button go to an absolute URL? a href=http://google.com class=btn btn-primary | GOOGLE /a creates a dim button with an icon indicating it’s offsite. There’s a CSS class you added to prevent this from happening, but I can’t remember what it is.
ext_disabled class to this button or if you want to disable external links styling for all buttons open gebo_common.js find
gebo_external_links = {...} and add .btn class to .not() method
$("a[href^='http']").not('.thumbnail>a,.ext_disabled,.btn').each(function() {
$(this).attr('target','_blank').addClass('external_link');
})
As Bootstrap has the LESS files available, would it be possible to get the LESS files, instead of the CSS files when purchasing this template? Or doesn’t this template use LESS?
Hi, sorry, Gebo Admin doesn’t use LESS.
There seems to be some issues with the horizontal scroll datatables, when resizing the window the headers doesn’t correspond with the columns. Could you look into this?
Hi, yes, I know about this issue, I’ll try to fix this in next release but it only happens when you resize your browser (quite rare scenario when using admin panel). If you resize your browser and refresh content everything will be ok.
Thanks tzd for an awesome theme! I bought it way back on version 1.1 and because of the regular updates I’ll be purchasing from you again! Very good work.
Hi, thank You, I’m glad that you like it.
Nice hard work there. Also look into this http://kushagragour.in/lab/hint/ this is simple css hints rather than having qtip js and css it does the same thing with css only and has same level of browser compatibility. Also easy to include your own colours and styles. Source is on github https://github.com/chinchang/hint.css
Hi, thanks for the info, I’ll add this tooltip as an alternative to qtip.
Thanks for the update. Once again questiion about sub-menus. when you click on parent it just close the whole menu. Bit annoying when people expect parent to go to main page while you have child items linked to other details. Can we make parent and child menu items all linked as well as open on hover?
$('header li.dropdown > a').click(function(){
if($('body').hasClass('menu_hover')) {
window.location = $(this).attr('href');
}
});
so it should look like this
gebo_nav_mouseover = {
init: function() {
$('header li.dropdown').mouseenter(function() {
...
$('header li.dropdown > a').click(function(){
if($('body').hasClass('menu_hover')) {
window.location = $(this).attr('href');
}
});
});
}
};
Hi, we bought this theme time ago. It’s a incredible theme. But we have a big problem with IE8.
It is very very slow. We noticied expecialy in navbar dropdowns and in combobox dropdown.
It has also some glitches on input-prepend but those are minor problems.
Have you a solution ?
Hi, thank you, I’ll check this issues. Please send me message with more info (your os, resolution etc).
We saw that on : Windows XP – IE8 (the max IE for XP) – 1360×768 Windows 7 – IE8 – 1920×1200 No toolbars in either case All can be tested directly on your demo site
I’m also wondering about the 1.7 update, so we can plan for the upgrade. What’s the approximate timeframe?
Hi, sorry for delay. Update should be ready for download tomorrow (awaiting review).
Thanks—can you also update http://tzd-themes.com/gebo_admin/index.php?uid=1&page=dashboard, so we can see the new features in action?
Hi, thanks for the info, I forgot to change demo site 
Get in the habit of his prophecy 
What will you do when you update to 1.7? I waited for the end of January as you said but did not.
What is the forecast?
Hi, sorry for delay. Update should be ready for download tomorrow (awaiting review).
Hi, Liked your theme. Please let me know which elements have highest browser compatibility. Thanks
Hi, What do you mean by “which elements have highest browser compatibility”?
Hi, I mean any particular components as basic buttons/ charts/ tables etc. How could we increase the browser compatibility?
Hi, some elements are from bootstrap framework, You can check compatibilty here https://github.com/twitter/bootstrap/wiki/Browser-Compatibility I tested this template on many browsers and os and everything looks ok. Are you having issues with any element?
Hi, Any update on next version (saw that you will be updating end of Jan )?
Hi, sorry for delay. Update should be ready for download tomorrow (awaiting review).
How do I keep the parent accordion in the menu open to active menu?
The active page should keep the accordion open. The demo don’t have this feature… Possible to achieve?
in to accordion_body
<div id="someID" class="accordion-body collapse in"> ... </div>Please check http://twitter.github.com/bootstrap/javascript.html#collapse
Hi great theme!
I would like to use the style switcher inside my “setup form” and not on the right side of the page. How can I achieve this disabling the right gear icon and let the css appear as I wish inside of my form? Best regards!
Hi, please send me message from my profile page with this request. I’ll send you html/js code for this.
Hi I have sent the message but no reply yet. I will be very glad if you could help.
I have fould an issue: When we use colorbox, it seems that it cumulates the selected option and it triggers the event again repeateadly. For example if I program to show an alert(‘helo’), if I click once in the confirm option I will see one hello alert. If colorbox is loaded the second time I will see the alert 2x and so on depending upon the number of times it is triggered. How to fix this issue? Many thanks!
// Confirm before delete the row
function delete_row(unique_id){
// Remove hidden class from dialog
$('#confirm_dialog').removeClass('hide');
$.colorbox({
initialHeight: '0',
initialWidth: '0',
href: "#confirm_dialog",
inline: true,
opacity: '0.3',
onComplete: function(){
$('.confirm_yes').click(function(e){
e.preventDefault();
$.colorbox.close();
$('#confirm_dialog').addClass('hide');
// Ajax function to delete selected rows
//do_delete(unique_id);
alert('here');
});
$('.confirm_no').click(function(e){
e.preventDefault();
$.colorbox.close();
$('#confirm_dialog').addClass('hide');
});
}
});
};
Hi, about style switcher please check you email. About this issue with colorbox could you check latest Gebo Admin? There is latest version of colorbox plugin included.
Hi many thanks for your attention. We have upgraded the colorbox plugin before we have sent this question and gives the same error.
For example, if we select an item and then select on the delete confirmation the option “cancel”, then if we select another item and we confirm the deletion for this item only, the plugin will delete both (the previously selected but canceled and the current one). It seems it accumulates somehow all the checkboxes previously selected and the events “cancel” or “confirm”. Did you face this issue already?
Regarding the e-mail I still didn’t receive it, could you please send it again? Many, many thanks for you attention.
Cheers!
Hi, I just checked this datatables again and I don’t see this issue. Do you see this issue on demo site? Please check your email (I’m sorry, there was some issue with my email server)
Hi, I decided to use http://bootboxjs.com/ instead of colorbox due this strange error. No matter if we clicked in cancel or confirm, tha action was “cached” somehow and when we would make the next confirm (without refreshing the page) the previously selection that was canceled was also executed.
Regarding the e-mail with the code I didn’t receive yet. Could you post the code at Fiddle, Gist or Pastie? That way other users can also have this code if they need. Many thanks for all your attention!
Hi, sorry, I just got message from my email server that message to you has not been deliverd, I don’t know why. This is a link to inline style switcher code http://tzd-themes.com/gebo_admin/style_switcher_inline.txt
Many thanks! All the best for you!
The file upload is not working, if I upload an image it doesn’t show the change remove buttons nothing happens
Hi, what do you mean by “file upload is not working”? I just checked form_extended.html “File upload” elements and they are working fine.
If I upload an image nothing happens, the buttons don’t change to “removo, change” I try it on firefox, chrome and safari
Hi, please send me link to your site or .html file with code that is not working. Thanks
Hi friend, please tell me: Can I use this template to admin online a HTML5 (Kallyas template, from themeforest) website, just to change texts and images???
I need it for a customer, who need an admin panel to just edit text and images.
Many thanks in advance
Hi, yes, you can use Gebo Admin as a backend admin panel. Gebo Admin is a html/css template that you can use for anything you want.
The sidebar generates a scrollbar in Chrome even if not needed. Any possible fix to this?
js/gebo_common.js and remove
$('#side_accordion').on('hidden shown', function () {
gebo_sidebar.make_active();
gebo_sidebar.update_scroll();
});
// and
gebo_sidebar.make_scroll();
gebo_sidebar.update_scroll();
from $(document).ready(function() { ... })
Sorry, your actions will not remove the sidebar scrollbar. The problem is that it is very ugly to have a scrollbar in the left sidebar, always even if not any content…
...there is…
Please send me more info about this issue and some screenshots. Thanks
Not needed, you can reproduce the same issue at your demo regarding the scrollbar in the sidebar when using Chrome. But I will publish some screenshots so that it will be super clear what I mean 
How it should look (using FF): http://min.us/lbxWNeMo2B2iBz How it looks in Chrome: http://min.us/lS9zxZrZFa7oe How my theme looks i Chrome: http://min.us/lU1ZmtuYLtzhE
I can’t help you without more info (browser version, os, resolution etc). You are the first person who is reporting this. I just checked this again using chrome and everything is ok (os x 10.8.2, win 7).
It’s to bad. I have to use another theme
I’m using OSX10.8.2 and Chrome 26.
Hi, sorry about that but like I said before everything is ok on my side using latest stable chrome version (not beta or dev). I just instaled chrome v26 (dev) and indeed there is a issue with this sidebar. I’ll fix this issue when this version reach stable state and if still there will be issue with sidebar. Thanks
ok, perhaps Chrome will come with some issue about this in the future… Yes, I uninstalled dev and the error disapered
Thanks!