pixelgrade
- Sold between 50 000 and 100 000 dollars
- Has been a member for 1-2 years
- Europe
- Exclusive Author
- Referred between 1 and 9 users
- Bought between 10 and 49 items
361
Purchases
Buyer Rating:
4.62 stars
4.62 average based on 34 ratings.
(more information)
-
5 Star
2676%
-
4 Star
514%
-
3 Star
25%
-
2 Star
00%
-
1 Star
12%
| Created | 22 October 12 |
| Last Update | 19 March 13 |
| Columns | 2 |
| Compatible Browsers | IE8, IE9, Firefox, Safari, Opera, Chrome |
| Compatible With | Bootstrap 2.1.1 |
| Documentation | Well Documented |
| High Resolution | Yes |
| Layout | Responsive |
| ThemeForest Files Included | HTML Files, CSS Files, JS Files, PHP Files |
- admin template
- application
- bootstrap
- charts
- css3
- html5
- ipad
- iphone
- jquery
- responsive
- template
- ui
- web app
- widgets
© All Rights Reserved pixelgrade -
Contact Envato Support


When you use two or more file upload inputs, just one works and asks you to choose file as count of file inputs. This is a bug
Hi,
If you add a new file input you need to call a function to render that input too.
So the html markup: <input type=”file” class=”fileinput” id=”upload-input2”>
And Jquery call: $(’#upload-input2’).customFileInput();
Thanks, George
is very complex. cause codes to devote to include. I can not do anything
Have some fun with HTMl/CSS and Bootstrap and then you will find a joy to use this template
i dont understand css bootstrap. if i understand this. i cant buy this template. i make =)))) my job is php
I`m not understanding what you are saying :)) sorry
okay. just this very komplex code. not a clean. dasvidanya!
Hi Pixelgrade.
First, congratulations on your work is very beautiful and professional. My doubt: I use this tool to manage http://piwik.org/. Your templete is compatible with it? Thank you and happy 2013.
As other coder said – this kind of templates are just html/css/javascript – and can be used to style any kind of applications if you have source code access.
Thank you for this excellent template! It comes with almost everything you need to build a great web application and is a massive times saver!
Thanks – we`re glad you like it!
Awesome theme. I’ve built out www.instamap.it with it for a client I’ve worked with prior on other projects and he loves it! Props for the simplicity of using Bootstrap.
WOW! That`s pretty cool!
This template is amazing, really amazing, the problem is that the code is a complete mess, it requires hours of work just to clean it. There are even orphan tags around the theme!
The base.css is a mess, why you included again the whole bootstrap? What is the meaning of that? It’s a nightmare to edit..
Hi – I`m glad you like our amazing template and sorry to consider the code a complete mess. I separate the bootstrap code from my edits because you can easily update the bootstrap when a new version is released.
If you want to edit the css theme please use SASS files (.scss) – they are well organized as you expect.
Thanks
Hi Guys;
I’m getting some problem with response.css and response-unminified.css files. They are different and they are responding different in a pattern resolution of 1024×768. They are reponding fluid like tablet in a pc, breaking all columns, and as a system (admin), it’s bad thing… I tryed minify the unminify file and i compared the both, and they are completly different, shoud not be i supose…
When i use just response.css, the template admin behave fluid, with response-unminified.css the admin looks well in a resoloution of 1024px but lost the behavior in mobile resolutions… If i change the files, the oposite happens… Some guess?
Hi,
The response.css should be the right one. I sent an update to the stuff with the right response-unminified.css version. You should find a folder called unminified where are all the unminified css version.
If you want it quicker, please contact us through contact form from our profile page.
Thanks
Update already approved! Thanks
Hello Pixelgrade;
First of all, i thak you for your fast support, i really enjoy! Thanks!
I saw the new files, but the problem persist. Please, change the link of template to use your response-unminified.css and try preview in a lower resolution, 800px or less… the sidebar doesnt change to hide state and the layout crash. Its happens just when you use the responsive-unminified.css, some guess?
I’m looking foward for your reply;
That`s strange. I`m pretty sure the files are the same. I suppose you have already tried to copy the content from unminified version to responsive.css – right ?
I Just change the names. Please, open the profile.html and change the name of responsive.css to responsive-unminified.css and see the layout in different resolutions. The sidebar navigation doesnt work anymore and tablet and mobile resolutions. The responsive behavior doesnt work.
Hi pixelgrade, I love your template, but can’t seem to get around dynamic tables. I’m building a project on apache, php, mysql and when I tried to get my php code to load the database rows it just froze. Perhaps I’m not supposed to load the tables directly on the file, but via a jquery plugin? Please help me understand how to load those tables with mysql/php. Thanks.
Hi,
The dynamic tables are based on famous DataTables plugin. They have many examples that can help you. Did you check this one: http://www.datatables.net/release-datatables/examples/data_sources/server_side.html ?
Thanks
I did, and I tried following it… I created the php file based on the link you sent me for the DataTables plugin, I made the proper changes at the footer of the tables_dynamic.html file which I renamed tables_dynamic.php for the sake of my project.
The footer used to read…$('#datatable_example').dataTable( { "sDom": "<'row-fluid table_top_bar'<'span12'<'to_hide_phone' f>>>t<'row-fluid control-group full top' <'span4 to_hide_tablet'l><'span8 pagination'p>>", "aaSorting": [[ 1, "asc" ]], "bPaginate": true, "sPaginationType": "full_numbers", "bJQueryUI": false, "aoColumns": dontSort, } );I made this slight change, according to the tutorial you suggested…$('#datatable_example').dataTable( { "sDom": "<'row-fluid table_top_bar'<'span12'<'to_hide_phone' f>>>t<'row-fluid control-group full top' <'span4 to_hide_tablet'l><'span8 pagination'p>>", "aaSorting": [[ 1, "asc" ]], "bPaginate": true, "bProcessing": true, "bServerSide": true, "sAjaxSource": "/scripts/queries/x.php", "sPaginationType": "full_numbers", "bJQueryUI": false, "aoColumns": dontSort, } );In the body, my table looks like this<table id="datatable_example" class="responsive table table-striped table-bordered"> <thead> <tr> <th class="jv no_sort"><label class="checkbox "><input type="checkbox"></label></th> <th class="span2">Column1</th> <th class="span2">Column2</th> <th class="span2">Column3</th> <th class="span2">Column4</th> <th class="span2">Column5</th> <th class="span2">Column6</th> </tr> </thead> <tbody> <tr> <td><label class="checkbox "><input type="checkbox"></label></td> <td /> <td /> <td /> <td /> <td /> <td /> </tr> </tbody> </table>The page does not freeze anymore but now I just get no data. Before this, my tables were loading and though I was experiencing extreme load time (which I called freezing before) I eventually saw the data, so I know my queries are fine.
Please help… what am I missing? Once I get one table to load I’ll understand this, and carry on with the rest of my project.
Thanks
The code above skipped the opening “td” fyi but they’re there. For some reason I can’t get either “code” or “pre” to work on this themeforest comment editor for some table tags.
Did you try with their javascript default call function? Did you check the console if there are any errors that can break the code?
I’m not that good in PHP, but maybe it’s something from javascript.
Thank you for very nice theme! We use it with greate pleasure.
The only thing we have met difficult for now – when we use your editor from from form_general.html, and if this field is not empty like this: <textarea id=”editor1” class=”row-fluid” rows=”5”>Lets test it!</textarea> and also if you focuse this text area not first but after some other form text on a page on iPhone and iPad devices typing becomes not available – it just not typing at all!
Will thank you for solving this bug. If it is bug
Slava
Hi,
Can you point us to a live URL? We will test it again on iPhone and iPad to see if is a bug.
Thanks
When you focuse FIRST on the id=editor1 field it works fine, but if ou jump there from enother field it wont typing at all from apple devise.
Problem can be from other plugins that we used for Elastic Textarea and the one with characters limit. Did you tried in a page with only a default textarea?
yes, in my page i use only one text area. but i also connect all the js stuff for forms.
I will check it tommorow and come back to you – I’m sure we will find a solution.
By the way I have found the following: if you close the popup keyboard on iphone screen between the field there is no problem. The problem appears only if you use “one” keybourd between differnt fields and this textarea.
Hi,
I just tested on an iPhone and everything works pretty well. I create a page just with textareas that you can find here: http://pixelgrade.com/demos/bird/forms_textareas.html and everything it’s ok.
Thanks
As I said we can’t edit preloaded text. Could you please try something like <textarea id=”editor1” class=”row-fluid” rows=”5”>Lets test it!</textarea>, and try to edit it after focuse in other feild. For example type something on a feild above and than go to this textarea and try to edit preloaded text.
Hi,
I just tested again with a preloaded text as you said: http://pixelgrade.com/demos/bird/forms_textareas.html – it’s working. (tested on an iPhone 5 with latest iOS).
Thanks
Hello, great looking template! I’m complete-newbie, please help: I’m want to build a website where users can register and fill out large form(like you have it here). Then, users should be able to login and change their data. Users data should be displayed somewhere… How do I realise that? Is your template suitable for that? What else do I need? Please explane. Thanks and regards
Hi,
You should follow some PHP tutorials first or hire a developer.
Thanks
All of the sudden i now have a message appearing in index2.html. It says
I even see it your demo page. Happens on all my browsers. What’s up with that? It wasn’t happening before!That error text message should come in browsers that are not supporting CSS3.
You’ve been hacked. Please check your demo page and resolve. I’d like to buy this template but there seems to be security issues.
We will fix it now.
Hi,
like your work. (but) it has some errors i would like to see fix before buying. - if i move files around in your file explorer the arror get stuk in + mode - the login page does not seem to work. i’m using ie10
Hi and thanks! The file explorer it’s blocked due to spamming issues.
move untitled file.txt into untitled folder and then move your mouse around see what it’s doing
Thanks for notice – we will if we can find a way to fix it.