293 comments found.
hi, i just discovered these admin themes… it doesn’t appear to use DB so are we supposed to integrate this with other apps? thanks
Hi.
Yes, this is a ushal html/css template with integrated jquery plugins. It will require additional development
Hi. How to disable class=”selector” in a dropdown? I want to insert a dropdown without css.
Tks
Hi. Find in custom.js file this code:
//===== Form elements styling =====//
$("select, input:checkbox, input:radio, input:file").uniform();
and remove “select” from there, dropdowns in this case will have general browser design.
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
This theme is such amazing. Thanks for that. Here are some feedbacks:
on main.css opacity:0 should be opacity=0. I found some of them line 1190: remove . on the end of line.
I found out these error while minifying css files. All js files seem to be ok. BTW: This commit editor really sucks. Envato please use markdown.
Thank you for informing me, will fix it in the next update!
Thanks!
Did you give them permission to use almost all of your ideas? If so, cool. Just don’t think it would be right for them to pass off this idea as their own when you released this months before they did. 
Hey.
Thanks for informing me. No, i didn’t, but they could bought an extended license, not sure about this, but will try to find out.
Hi there,
First off, fantastic admin template!
I’ve been looking at various graphics and features you have in “Amsterdam – Premium Responsive Admin Template”, is it relatively simple to drag coding items from this admin to the Crown or are there intentions to add some of the new widget designs on Amsterdam in to this one?
Many thanks,
Parmee
Hey.
Really, it’s hard to say. because these 2 templates have different structure. There could be conflicts between class names, but anyway you can try to combine them 
Hi! Could you please advise the best way to update theme from the first relase to the current? Thanks!
Hi.
I just uploaded an update, please redownload the package and open documentation, check the change log, i added instructions what exactly needs to be changed.
Thanks
Hello
Does this require any JQuery knowledge to work with? I am asking this because, I want to build an Admin panel for my project which is nothing but PHP and HTML and does not involve any JQuery and I have no knowledge of JQuery.
So, wondering, if i buy this and just wouldn’t be able to use it, if I am limited by my own capability with regard to JQuery.
Thanks
hey.
Actually yes, you need at least basic knowledges to be able to follow documentation and make necessary changes.
Hello Kopyov… how to enable column to sortable in date format dd/mm/yyyy …
I tried the code:
jQuery.extend( jQuery.fn.dataTableExt.oSort, {
"date-uk-pre": function ( a ) {
var ukDatea = a.split('/');
return (ukDatea[2] + ukDatea[1] + ukDatea[0]) * 1;
},
"date-uk-asc": function ( a, b ) {
return ((a b) ? 1 : 0));
},
"date-uk-desc": function ( a, b ) {
return ((a b) ? -1 : 0));
}
} );
and add:
oTable = $('.dTable_depoimentos').dataTable({
"bJQueryUI": true,
"sPaginationType": "full_numbers",
"sDom": '<""l>t<"F"fp>',
"aoColumns": [
null,
null,
null,
null,
null,
{ "sType": "date-uk" }
]
});
but not function….
Nevermind, i’ve got it.
Hi Kopyov,
It’s me again. Im working at: http://www.descontonaweb.com.br/
When i access my website from my iphone, he “changes” his layout. It’s like a fluid layout. How do i stop this? I want to keep same proportions always. It’s hard to change css width’s?
Thnaks.
hi there, I just bought this great theme, congrats. Unfortunately, I’m having some trouble with the charts.
I need to make a line chart, like the first example, but I need the X axis to use strings instead of integers, is that possible? For example, I’d like to write month names, hours, days of the week.
Can you guys help me? thanks!
Hi there.
Unfortunately i am not an expert in flot charts, i’d suggest to search some tutorials. Sorry
Thanks
Hi. Congratulations for the Theme.
Can i have another dropdown menu, same as “Messages [8]”? I tried to duplicate the code, but when i click, both submenus appears at the same time.
Can i change the onclick event to a onmouseover?
Thank you.
Please check your id’s/classes for links, they should be different for each element
I tried to check the classes/id’s. I ll try to explain better:
<div class="topNav">
<div class="wrapper">
<div class="userNav">
<ul>
<li class="dd"><a title=""><img src="images/icons/topnav/messages.png" alt="" /><span>Messages</span><span class="numberTop">8</span></a>
<ul class="userDropdown">
<li><a href="#" title="" class="sAdd">new message</a></li>
<li><a href="#" title="" class="sInbox">inbox</a></li>
<li><a href="#" title="" class="sOutbox">outbox</a></li>
<li><a href="#" title="" class="sTrash">trash</a></li>
</ul>
</li>
<li class="dd1??????????"><a title=""><img src="images/icons/topnav/messages.png" alt="" /><span>NEW MENU ITEM</span><span class="numberTop">10</span></a>
<ul class="userDropdown">
<li><a href="#" title="" class="sAdd">new message</a></li>
<li><a href="#" title="" class="sInbox">inbox</a></li>
<li><a href="#" title="" class="sOutbox">outbox</a></li>
<li><a href="#" title="" class="sTrash">trash</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
Pay attention in:
1. <li class="dd1??????????" />
2. NEW MENU ITEM
I want to show a dropdown menu in the NEW MENU ITEM. I tried just to reply the code, but when i click on “Messages” or “NEW MENU ITEM” both menus appear’s at the same time.
Can i change the onclick action to an onmouseover?
This is the code for current dropdown:
$('.dd').click(function () {
$('.userDropdown').slideToggle(200);
});
where .dd is for li, .userDropdown is for hidden ul.
You can change .userdropdown to some id and use id’s insted of class to keep stylings for dropdown, for example set id=”dropdown1” and id=”dropdown2”, in addition to ul class=”userDropdown” and use
$('.dd1').click(function () {
$('#dropdown1').slideToggle(200);
});
and
$('.dd2').click(function () {
$('#dropdown2').slideToggle(200);
});
Thank you very much for support.
Oh yeah, forgot to mention about mouseover.
You can try simple .hover instead of .click, but in that case you’ll need to reduce top spacing between dropdown and top navigation, because it has a small gap
Hey, Kopyov.
I did what you said, but the menu broken.
JS:
$('.dd1').click(function () {
$('#dropdown1').slideToggle(200);
});
$(document).bind('click', function(e) {
var $clicked = $(e.target);
if (! $clicked.parents().hasClass("dd1"))
$("#dropdown1").slideUp(200);
});
$('.dd2').click(function () {
$('#dropdown2').slideToggle(200);
});
$(document).bind('click', function(e) {
var $clicked = $(e.target);
if (! $clicked.parents().hasClass("dd2"))
$("#dropdown2").slideUp(200);
});
HTML:
<li class="dd1">
<a title="">
<img src="images/icons/topnav/messages.png" alt="" />
<span>Lojas</span>
<span class="numberTop">10</span>
</a>
<ul id="dropdown1">
<li><a href="#" title="" class="sAdd">new message</a></li>
<li><a href="#" title="" class="sInbox">inbox</a></li>
<li><a href="#" title="" class="sOutbox">outbox</a></li>
<li><a href="#" title="" class="sTrash">trash</a></li>
</ul>
</li>
<li class="dd2">
<a title="">
<img src="images/icons/topnav/messages.png" alt="" />
<span>Lojas</span>
<span class="numberTop">10</span>
</a>
<ul id="dropdown2">
<li><a href="#" title="" class="sAdd">new message</a></li>
<li><a href="#" title="" class="sInbox">inbox</a></li>
<li><a href="#" title="" class="sOutbox">outbox</a></li>
<li><a href="#" title="" class="sTrash">trash</a></li>
</ul>
</li>
Please send me a link to your page, i will check what is wrong there.
Here’s the link: http://www.descontonaweb.com.br/
Thanks!
You missed class=”userDropdown” to both id=”dropdown1” and id=”dropdown2”, this class stylize these dropdowns 
Thanks. I got it!
I’ll try the onmouseover now.
Hey Hopyov,
I removed the CSS responsive code, but i’m still having problems with the topo menu and the ”.widget .body” div’s. Do you have a fixed CSS for this theme? Thanks.
Hey.
Please be more specific, what exactly is wrong with those classes? Unfortunately no, this template has a liquid layout only, it will look messy with fixed layout because of the structure.
Hi… the HTML code is encoded… the script contain the auto html encoder? With the html obfuscated the script is very fast… without encode is very slow…
Hi.
Live preview is encrypted, but the code in the package isn’t encrypted
I did that against html rippers.
What the last update in your script?
Do you have a AutoHtml encode to offer?
What script? Latest theme update was on 21st of July, package doesn’t contain any encrypted files, only pure html/css/js/php
Hi, the life preview seems to be broken? Can you fix this, then I can decide on buying this template or not 
Hi.
Weird, i just checked and everything works fine on my side. What exactly is broken?
I receive a connection time-out. For themes.kopyov.com
Could it maybe the case that my IP is block or something like that? Im asking because im at the Technical University of Eindhoven.
Is there maybe a student/school license? I want to use this template for a school project.
wow, never heard about such issues. I didn’t block any ip’s for sure, maybe something is wrong on your side, but previews are working fine..
Hmm ok. I now tried to access your domain directly. So directing my browser to http://kopyov.com/
I got this error:
XML Parsing Error: unexpected parser state
Location: jar:file:///C:/Program%20Files%20(x86)/Mozilla%20Firefox/omni.ja!/chrome/toolkit/content/global/netError.xhtml
Line Number 309, Column 54: <div id="ed_netTimeout">&netTimeout.longDesc;</div>
-----------------------------------------------------^
I am installing a clear WP right now, please check themes.kopyov.com for direct access
I’ve tried it a couple time in the last hour. But still no luck. In about 2 hours I will be at home, then ill try again 
Any luck?
I forgot it yesterday, but I tried it now and its working! The template looks awesome!! however its overkill for my project.
But.. I also work as a webdeveloper and I’m going to need an admin template soon for a project im working on. So then I will look at it again.
Thanks for all your help and quick responses!!
Hi, How can I make regular select with flexible width? .selector class uses fixed width and it’s quite unusefull for me.
try to remove widths for .selector and .selector span, add
box-sizing: content-box;
and set a max-width to some value, it should work this way
Hi, I’m having trouble with the responsive layout. When I shrink the browser the primary sidebar navigation vanishes, but the navigation doesn’t reappear at the top of the screen the same as the demo. Am I missing something? Cheers
Could you please email me a link to your page, i’ll check what’s wrong?
Thanks
Hi thanks for your help. The URL is http://southerncrossdivers.com/newdiary/EventCalendar.asp
Please check the code inside resp class in html, seems like you removed it
ty 4 everthing and gl..
joomla magento system or integrated into systems as you want, so if you Can?
Unfortunately i don’t do such work, sorry
Is there a way to set the tabbed tables (via cookies maybe) to stay selected once a page refreshes or a user leaves the page and comes back?
Unfortunately not at the moment. I will replace these custom tabs with jquery ui tabs in the upcoming update, they are more flexible.
Thanks