754 comments found.
Hello, the fonts can’t be rendered on Windows Chrome and Firefox, just on saffari Works.
Here’s https://dl.dropboxusercontent.com/u/55095237/Capturar.PNG if i render locally its work, when i move to my static hosting or local lab or github.io its be like that.
Hi Chama7
The reason why font doesn’t render is because you have included another font family with the same name, or not including Entypo font, or not using the one we have provided in our original installation file.
To check if the problem is part of our theme, try downloading again our theme, and then see if icons render properly.
Is it possible to get a complete list of CSS and JS that need to be included. I having a hard time with figuring out exactly which elements need which CSS files and JS files when I start building my layouts. If I could get a complete list and include this in every new html template and eventually in my MVC framework then it would save a lot of development time for both front end and backend.
Hi fluentd
I know your pain, we will implement this feature in the next update. Our latest theme has this kind of structure:
http://cl.ly/YgbkI think this is what you are talking about.
Thank you for your reply. While I would love to see an update to Neon I have been waiting for quite some time and have not yet seen anything. I have too much time invested into this theme to spend more money on Xenon and start over. Do you have any time frame that you plan to meet on an update to Neon?
Hello Laborator,
Love the theme. However I am having issues with using “sidebar fixed” layout.
When sidebar is collapsed ( < 991px) the ‘hover-to-see-menu’ functionality is no longer working. I am experiencing this in both Chrome and Firefox.
I understand this issue does not happen when sidebar is not ‘fixed’ but due to page including long table, I do not want sidebar to scroll with main content.
Please help!
Hello Arlind,
Have you made this update to the theme yet?
I am trying to use the sidebar-fixed layout. When page is < 991px (sidebar collapsed) I am experiencing:
- Hover menu functionality broken (works sometimes, requires page refresh) - Fixed sidebar does not work when “sidebar-collapsed” – can you provide patch for this? I need collapsed sidebar to be fixed when scroll.
Thank You
Another issue I am experiencing with ‘Sidebar-Collapsed’ is that the sub-menu navigation does not show on hover.
The sub-menu navigation only appears for the ‘active’ root level item.
Can you please fix this?
Hi
As you can see now in the demo:
http://demo.neontheme.com/layouts/fixed-sidebar/It behaves good as the code I have sent to you does fix the issue with menu collapse.
Even with collapsed sidebar in our demo website menu links show on hover.
If you don’t have the neon-custom.js latest version you can download it here and maybe will fix the issue:
http://d.pr/f/1kYo0But everything works fine on my side.
P.S. The browser I was testing is Chrome
Hello!
I’ve got a couple css issues:
One is in the login page in FF – the icon is not aligned with the ’’ Sign in” and is becoming two lines.
The other is in the extra-timeline page. The time is overlaying the icons.
Are you releasing an update to fix these soon?
Thanks
I’m using the latest theme (downloaded yesterday).
Thanks
No recent updates to this theme.
Are you discontinuing support? Should we expect no further enhancements to this theme?
Update to Bootstrap 3.3?
Hi guys, you’ve got great theme! But I’ve got an issue with calendar, when i try to pass existing events to calendar plugin through Javascript
I think scripts and styles I’ve included are identical to styles in your demo page. What it might be?
Thanks.
When I pass events to calendar it displays them like this
but after window resize event positions are correct
Hi
I have created small code that should fix this:
1. Open neon-calendar.js in assets/js/ 2. On line 78-85 you will see this code:
$("#draggable_events li a").draggable({
zIndex: 999,
revert: true,
revertDuration: 0
}).on('click', function()
{
return false;
});
3. Replace with this one:
$("#draggable_events li a").draggable({
zIndex: 999,
revert: true,
revertDuration: 0,
stop: function()
{
$('#calendar').data('fullCalendar').render();
}
}).on('click', function()
{
return false;
});
It should fix the issue.
calendar.fullCalendar({
header: {
left: 'title',
right: 'month,agendaWeek,agendaDay today prev,next'
},
//defaultView: 'basicWeek',
editable: true,
firstDay: 1,
height: 600,
droppable: true,
drop: function (date, allDay) {
var $this = $(this),
eventObject = {
title: $this.text(),
start: date,
allDay: allDay,
className: $this.data('event-class')
};
calendar.fullCalendar('renderEvent', eventObject, true);
$this.remove();
},
events: [
{
title: 'All Day Event',
start: '2014-11-01'
},
{
title: 'Long Event',
start: '2014-11-07',
end: '2014-11-10'
}]
});
this is when my issue happens, so I added your code after this
$('#calendar').data('fullCalendar').render();
but it didn’t worked. after this just to test what happens when i call render function i wrote:
alert('1');
$('#calendar').data('fullCalendar').render();
alert('2');
and it worked, result was what i wanted, it replaced events correctly,
but without alerts it doesn’t work
.
This is video capture of this issue http://tinypic.com/r/bf5ki0/8
Hi Nkadze
Sorry for the long delay of answer, as on the weekend I wasn’t in the office.
Here is a quickfix for this so I hope this will do the trick and you will never have issues with rendering.
$(window).load(function(){
$('#calendar').data('fullCalendar').render();
});
I guess it has to do with the window dimensions and so it will wait till the window loads and re-renders the events, and in that case it will render them properly.
Hello
I’m having an issue using horizontal menu.
Using IE it works fine, but once using google chrome and try to scroll down it doesn’t work. It does not follow my page, and it disappears.
When I try it on demo.neonTheme it works, but on my PC it doesn’t.
Regards.
Yes I’m quite sure.
Because when I try to use your sample(layout-horizontal-menu-boxed.html), it keeps with the same issue on chrome and firefox.
Regards,
thanks, it worked for me too.
Hello. Just purchased the theme; I think this is just what I needed. Only thing that I do not see that I was expecting/hoping to see is all of the Bootstrap elements in the PSD files as well as some of the layouts/options that you show in the live demo. Are these available? I’d like to use them for rapid prototyping and basic wireframe mockups before building final layouts. Thank you. Overall I am very excited to use this theme – great job.
Thanks Art that would be helpful. Where could I download them from? Many thanks and great work!
Hi there,
here are the PSD files of buttons and other UI elemenets: http://cl.ly/381Q0C3R1w3I
Kind Regards,
Art
Hello! Fantastic theme guys! Great job!
Just wondering if there’s a way to format the number that counts up on the stats tiles? I know I can use prefix and postfix which is great however I’d like to format the number as currency with commas and decimal point as it counts up. Is this at all possible?
Thanks!
Hi loganmaire
Firstly thanks for your kind words!
Yes this is possible, here is sample code:
<div class="tile-stats tile-primary">
<div class="icon"><i class="entypo-suitcase" /></div>
<div class="num" data-start="0" data-end="83" data-prefix="-, " data-postfix=" £" data-duration="1500" data-delay="0">0 £</div>
<h3>Prefix and Postfix</h3>
<p>so far in our blog, and our website.</p>
</div>
The attributes of “num” elements describe how to assign prefix and postfix.
hi, will this theme be available for angular.js in the near future?
Hi,
I contacted you with a support question via your profile page a while ago but you haven’t replied.
/Joakim
Hi, I’ve some problems to make the charts work. I Download DevExtreme Web JavaScript library, extracted and copied the folders inside /Lib/ folder and pasted into assets/js/devexpress-web-14.1/ but on the Theme is not desappearing the window How to Include Charts Library in Xenon Theme, of course the charts are not appearing.. I don’t know why..
Good morning, I don’t know why the system direct me on this page..anyway i bought a Xenon admin template just some days ago. I made some other test, using the example pages the charts are not working, but if i use one of the examples shown on the DevExtreme downloaded works.. why it’s happening?
I see the script is checking if the fn dxChart is present or not, that is not finding the function… I don’t know why is not finding it, because as I told you, in a page i produced the charts are working. i f you want i can give you by email the details
Hi pablinho1981
Please follow these directions in order to import the dxCharts properly:
http://cl.ly/YPjBHi,
My Chrome version is ‘38.0.2125.111 m’, the last one, but my ‘sidebar-collapse-icon with-animation’ goes off sometimes. I don’t know why it happens, because I’m doing it exactly the same as it is on the sample.
Hi direitosbc, it is working on our Live Preview on Chrome 38, i think that we can’t reproduce the problem, and the problem is only on your site.
Ylli
hi i have to questions.
How can i use neon charts with php and connect it to my database for the data?
How can i implement the skins (a option to change the skin color)?
Hi,
we can’t help you on the charts issue, we have just included the main charts and you have to connect them in your own.
Please read the documentation for skin change, the skin selector is available only for demo view and not for public use.
Regards,
Art
Hello,
I’m having problem to add this form:
<label class=”col-sm-3 control-label”>Image Upload</label>I’ve checked all css and js imports but still not working…
Regards.
Hi,
if you have purchased the theme please write us with the username that you bought it, we can’t verify if you’re our customer or not now.
Regards,
Art
I need help (Language Bar) how do work code translator bing/yahoo/google? thanks you
Hi,
the language bar is only in HTML version which means it does not work, you will need to integrate your own translator on yourself.
Regards,
Art
Hello, How can I implement RTL in my dashboard? I haven’t found any documentation that shows me how I can change horizontal nav to RTL (arabic) and also page labels to the same.
How can this be achieved?
Hi,
after you download Neon, you have two folders one for the normal Neon and the other with the Neon-RTL, that is the theme that you need to use in order you want to use it in arabic.
Regards,
Art
Thanks. Let me fiddle with that and see how I can change it at runtime. I see the html has a dir=”rtl” and also the rtl css file.
Works perfectly… thanks.
Glad to hear that 
How does look integration design into AngularJS app? Are implemented controllers, views? Best regards Chris
Hi Chris,
Neon is not integrated into the AngularJS app, our other theme Xenon has two versions the plain version and the AngularJS version.
Regards,
Art
How looks AngularJS version? What are the main differences (in code) between plain version and AngularJS version? Best regards Chris
Guys, thank you for this awsome theme!
When you view the ‘mixed menus’ layout in Firefox the header isn’t ‘fixed’ while in other browsers it is. Do have any clue on how to solve this? http://demo.neontheme.com/layouts/mixed-menus/I’ve searched for solutions but could not find any 
Hi rappie
I have now noticed this issue and tried many solutions but none of them worked. It is really strange how this happens, I have never had chance to see something like this. I guess its a bug on firefox because the position is set to fixed!
Arlind
If I press enter while focused on a text input, the page refreshes. Where can I disable that behavior?
Hi dlighteddod,
This can be done easy for any form:
jQuery("input").on('keyup', function(ev)
{
if(ev.keyCode == 13) // 13 - is "enter" key
{
ev.preventDefault();
// Put your code here when enter is press
}
});
Hopefully this will help you
Arlind