653 comments found.
There seems to be a recent little bug when viewing the Dark version of this theme on windows (not sure about MAC ) computers with Chrome. The header(s) now has a black strip running through them. When I bought this that wasn’t happening but it seems that as google has updated Chrome that is the result. Its fine on other browsers though. Please check out this problem on Google Chrome! Please see: http://67.199.34.216/dark-theme.jpg
Purchased this theme yesterday, it’s very nice.
How would you make elements in a table selectable for some sort of action, e.g. CRUD -like?
Thanks!
I don’t know how exactly, it depends on the table specs. Basically you can use AJAX or simple onClick event
Awesome theme! I can’t seem to figure out how to change the default sort column in a dynamic table. I’m sure it’s a quick fix, just not sure where it is. Any help would be appreciated. Thanks!
Oh i had a little error with my js files integration. It’s okay now !
ArkhAnik.
Thx for your answer Hakimny, but i already did that. And it works, sure. I only have some problems : - the menu on the left is not dynamic (the error pages are not display). - the dynamic table doesn’t work !! But the other things well work (i guess because i didn’t test the whole template).
ArkhAnik.
@ArkhAnik
I am using it with CodeIgniter and it is working fine, it is just an HTML template so it should be framework independent.
just make sure you create an assets ( or whatever name you like ) on the root of the your website folder so you can end up with the folowing folder tree
Application System Assets
then copy all js,css,and images folders there, make sure you make one slight modifications when you reference your JS files or css file you need to use the full URL
for example for:
<script type="text/javascript" src="js/custom.js"></script>
modify this to be:
<script type="text/javascript" src="<?php echo base_url(); ?>assets/js/custom.js"></script>
Assuming you creates an assets folder.
Hope this will help.
thx Hakim
Hi. Really nice design. But somebody did use it with CodeIgniter ? Cause it doesn’t work by me.
<form id="form1" runat="server">
<div id="topNav">
<div class="fixed">
<div class="wrapper">
<div class="welcome"><a title="" href="#"><img alt="" src="../images/userPic.png" /></a><span>
<asp:LoginView ID="HeadLoginView" runat="server" EnableViewState="false">
<AnonymousTemplate>
[ <a href="~/Account/Login.aspx" id="HeadLoginStatus" runat="server">Log In</a> ]
</AnonymousTemplate>
<LoggedInTemplate>
Welcome <span class="bold"><asp:LoginName ID="HeadLoginName" runat="server" /></span>!
[ <asp:LoginStatus ID="HeadLoginStatus" runat="server" LogoutAction="Redirect" LogoutText="Log Out" LogoutPageUrl="~/"/> ]
</LoggedInTemplate>
</asp:LoginView>
</span></div>
<div class="userNav">
<ul>
<li><a title="" href="#"><img alt="" src="../images/icons/topnav/profile.png" /><span>Profile</span></a></li>
<li class="dd"><a title=""><img alt="" src="../images/icons/topnav/messages.png" /><span>Messages</span><span class="numberTop">8</span></a>
<ul class="menu_body">
<li><a class="sAdd" title="" href="#">new message</a></li>
<li><a class="sInbox" title="" href="#">inbox</a></li>
<li><a class="sOutbox" title="" href="#">outbox</a></li>
<li><a class="sTrash" title="" href="#">trash</a></li>
</ul>
</li>
<li><a title="" href="~/Account/login.aspx"><img alt="" src="../images/icons/topnav/logout.png" /><span>Logout</span></a></li>
</ul>
</div>
<div class="fix" />
</div>
</div>
</div>
Thanks, I really like the template and just staring to customize to my needs.
Hello there.
I am sorry, but i don’t know asp
Can you show me your page with this issue?
Hi Kopyov,
I’m working with this template for a client (Who purchased it under their own account). I’m doing partial pageloads using ajax, and found that I need to re-run some or all of the code in custom.js to have layout appear properly (for example form/radio + labels)
However, it appears it has some undesirable side effects if the code is repeatedly executed for sections of the HTML document that has already been handled (radio elements get duplicated/show as a ‘shadow’)
I think ideally the custom.js code could be executed only on the content just loaded by the ajax request. How would I go about that?
Any alternative solution that works would also be fine!
Thanks, Ronald
Hey Ronald.
There was some issue with ajax and form elements. As documentation says, you need to update the element
$.uniform.update("#yourid");
or simply update all elements on the page:
$.uniform.update();
If that’s not your issue, please provide a screenshot or email me your direct link so i can check, i need to see your issue visually
Thanks
Hi KopyovI was trying to add a widget to a toggles group dynamically with jquery using .prepend() so it is added to the top of the list, although it is added fine, but arrow on left side is not showing and it is is added in an open status, so you can’t close it.
Do you have any idea on how to fix this
Thx in advance.
Could you please show me your code or a live example? I just dont completely understand what did you do 
Hi Kopyov Just as a side note this problem is observed if I use toggles or accordion the sample code below shows accordion implementation I removed ajax call (I am still working on a local version of the code), but behavior is still the same with ajax or with not.
Html
<input type="button" id="getDriverRanks'" value="Get Last Drivers Ranks" class="basicBtn" onclick="getLastRankingList();" />
<div class="widget">
<div class="head"><h5 class="iList">Ranking List</h5></div>
<div class="curves" />
<div id="rankingList">
<br />
<br />
</div>
</div>
<br /><br />
javascript/jQuery
function getLastRankingList()
{
var html2 ='<div class="widget acc">';
html2 +='<div class="head"><h5>. Active</h5></div>';
html2 +='<div class="menu_body">This is an accordion. This one is opened by default</div>';
html2 +='<div class="head"><h5> Inactive</h5></div>';
html2 +='<div class="menu_body">This is an accordion. This one is opened by default</div>';
html2 +='<div class="head"><h5>Toggles group. Inactive</h5></div>';
html2 +='<div class="menu_body">This is an accordion. This one is opened by default</div>';
html2 +='</div>';
html2 +='<div class="fix" />';
$('#rankingList').html(html2);
}
Again thank you for your help
Hakim
Ah, just trying to understand your code, but still no luck, seems like i’m off
Sorry, will check tomorrow
NO worries do what you can.
This has been driving me crazy for over a week, searched everywhere did not find any solution, if you can help me with this i’d really appreciate it
thx again.
Any Luck on this?
thx
The only thing i can suggest is to check .normal and .active classes, which are adding to the toggle title. Those arrows are depending on these classes and changing in the h5 tag with the proper parent class (normal and inactive). Maybe your code doesn’t add any of these classes? Would be great if you can send me a link to your current development version
Hi Kopyov
Sorry I don’t have a Dev website online yet , I am working locally on my station for the moment, but if you noticed from the code ,I just copied and pasted YOUR CODE from the widget.html page for the accordion .
basically instead of showing it directly on the html page, i chose to use a button (id =getDriverRanks with an onclick event:getLastRankingList() )
when clicked it will show the accordion inside a div (id=rankingList)
You can copy my code inside any of the pages of your template and you will see the behavior.
OF COURSE THIS IS JUST A SIMPLIFIED VERSION OF WHAT I AM IMPLEMENTING SINCE I AM USING AJAX CALL TO RETRIEVE MY DATA IN MY DEV SITE .
But the behavior of the accordion is exactly the same, if you build it dynamically you lose the effect of open/close. I spent days looking for this problem, with no luck I tried to refresh the accordion or the css but did not find how. can you may be direct me the official site for the plug in ( in case it is not your own version) may be I can find any extra help there.
Thank you very much.
I didn’t use any plugins for accordion, i used this jquery code in custom.css:
$('div.menu_body:eq(0)').show();
$('.acc .head:eq(0)').show().css({color:"#2B6893"});
$(".acc .head").click(function() {
$(this).css({color:"#2B6893"}).next("div.menu_body").slideToggle(300).siblings("div.menu_body").slideUp("slow");
$(this).siblings().css({color:"#404040"});
});
By default accordion doesn’t have any arrows, only color changing. Toggles have the arrows and they are controlled by Collapsible plugin with parameters which you can find in custom.js.
Arrows are adding to the titles with direct dependence on .normal and .inactive and placed in H5 tag. So depending on the parent class, arrows are changing from one to another.
If you’re experiencing this issue in toggles, not in accordion, check if your classes change on click or stay the same. Also please check params for collapsible, they should be:
$('.closed').collapsible({
defaultOpen: '',
cssOpen: 'inactive', // adds .inactive to the closed toggle
cssClose: 'normal', // adds .normal to the opened toggle
speed: 200
});
@rkulkarni & Kopyov
I confirm that the workaround worked for me, The only difference is that
I used $.uniform.update(); since i had multiple dropdown lists and it did update all of them.
Hi, Thank you for a great template. Multiple Select form element is not working in IE7 . Kindly check.
Hi.
The whole template wasn’t tested in IE7 , i will try to add its support a bit later
Very impressed with this theme. It’s well thought out and well executed.
Sometime back I spotted in a previous post about a feature request to be able to switch the vertical sidebar menu to a top horizontal menu. Unfortunatly I can’t find that post now. Do you have any plans to do this?
Thanks! 
I didn’t promise to do that, it can be hidden on click, but horizontal menu appears only on small resolution screens with media queries, to see that just resize your browser 
.content {
overflow: hidden; /*here you want to clear the content but some bug apears*/
padding-bottom: 80px;
}
you can reproduce this bug when you try an “selecet input” with more the “20 options” as an example. than it will cut the content.
But thats an mini bug which i want to tell you because some other users don´t know how to solve it.
Thanks!
Yep, i know about this, usually a simple solution is to add a fixed height to the dropdown aith overflow: auto 
Next question – where is a “Select File” in psd to change?:P
I didnt add these images to the .psd file, sorry.
This is what is available on the DOM post script execution. I see the options there in DOM but not visible!
<div class="rowElem noborder">
<label>Inventory Type: <span class="req">*</span></label>
<div class="formRight searchDrop">
<div class="selector" id="uniform-inventorytype"><span style="-moz-user-select: none;" /><select id="inventorytype" tabindex="-1" style="width: 100%; height: 100px; display: none; opacity: 0;" class="chzn-select required chzn-done" data-placeholder="Choose the inventory type...">
<option value=""></option>
<option value="1">iPod Touch</option><option value="2">iPhone 3</option><option value="3">iPhone 3GS</option><option value="4">iPhone 4</option><option value="5">iPhone 4S</option></select></div><div id="inventorytype_chzn" class="chzn-container chzn-container-single chzn-container-active" style="width: 512px;"><a class="chzn-single chzn-single-with-drop" href="javascript:void(0)" tabindex="-1"><span>Choose the inventory type...</span><div><b /></div></a><div style="left: 0px; width: 510px; top: 25px;" class="chzn-drop"><div class="chzn-search"><input type="text" autocomplete="off" style="width: 475px;" tabindex="2"></div><ul class="chzn-results" /></div></div>
</div>
<div class="fix" />
</div>
<code /></code>
Hi,
I’m facing the same issue reported by hakimny, the solution you pointed to doesn’t work either. Below is the code, any help is really appriciated.
$("#newinventory").click(function(event) {
$.ajax({
url : "http://localhost/inventory/inventorytype",
type : "GET",
data : "UserId=" + readCookie("userId") + "&SessionKey=" + readCookie("sessionKey") + "&UserAgent=1",
success : function(data) {
var stats = jQuery.parseJSON(JSON.stringify(data));
$.each(stats["InventoryType"], function(k, v) {
//alert(v.InventoryId + ", " + v.TypeName);
$('#inventorytype').append($('<option></option>').val(v.InventoryId).html(v.TypeName));
});
$.uniform.update("#inventorytype");
}
});
});
On the other hand another strange issue is that when i place option manually, the list shows only couple of elements. I’have placed the form div inside tab div and my ddl is almost near the end of form. Not sure how to resolve this one either.
Regards, RK
If you’re talking about uniform update, it should work, i tested it several times + it was solved for Hakimny.
Could you please show me at least a screenshot, because i don’t get your issue 
Thanks
Hi. Very nice theme. I especially love the dark version. Just a quick note that the latest version of Chrome 18.0 has a bug that makes the dark theme’s gradient background behind headings (class=head) appear broken. This is reported as issue http://code.google.com/p/chromium/issues/detail?id=113726. One of the Chrome developers feels ashamed about it!
Thanks 
Yeah, this issue was reported long time ago, but it’s still there
Very nice. I may use this for a new project.
Found a bug in the demo however using Chrome. If you scroll down sometimes the top bar get stuck somewhere in the middle of the page, and it creates two bars. One top and one in mid. If you scroll down again they merge.
Thanks.
P.S. Are you available for hire to customization the theme? I want to change some stuff graphically so it looks a little more unique.
Hmm, which browser shows you this issue?
No, sorry, i’m unavailable at the moment. Will be available only from the first of May
Hi there,
I’m having some difficulty figuring out the form elements. I am trying to reduce the amount of padding that surrounds the text box. What fields should i look at in the CSS ?
Thank you
You mean to reduce the padding for input field or the box around?
For the second you need to change padding in .formRight and .rowElem