1192 comments found.
Hi!
This is a great theme, but I have a problem with scss compilation: 10/6/2014 9:10:38 PM: SCSS: style.scss compilation failed: The service failed to respond to this request Possible cause: Syntax Error!
How to fix it? Thanks!
Hi there
Just tried compiling it and it worked out just fine
lets help you out to find what went wrong, what is the compiler that you are using ? its from RAILS or something like this
When is the next update coming ? Will it feature any PHP examples or Angular.js ?
Hi there
There is going to be something awesome by next week
thats all the information we can give now stay tuned
Hello, do you heave PSD files ??? on your ADM panel?
thank you Martin
Hi there
Yes we do, is there a specific PSD file that you are looking for ?
We have included them
Hello in horizontal menu layout, I can’t make `Search Dashboard` input working – when I click it it goes to index.html
Also simple footer thing would be nice – © 2014 webarch…
Thanks
I found it, and it’s `demo-center-logo` this is badly placed here, overlapping top bar, how can I center that image without it? :))
I’ve resolved it too: I put logo thing in the top place inside `navbar-inner` it may help anyone :))
Thanks
Hi there Sorry about that, small mistake with the link a href=
It should be like this
<span class="demo-center-logo"> <a href="index.html" class=""><img src="assets/img/logo-b.png" class="logo" alt="" data-src="assets/img/logo-b.png" data-src-retina="assets/img/logo-b2x.png" width="106" height="21" /> </a> </span>
Wrap the Logo Link with span and add the class 
Hi Ace.
any news about ganntt/timeline?
Best regards Christian
Hi there
We did not forget you!
I dropped you an email
Hello i’m thinking a draw is better thant text to explain my problem
so when I have a lot of menu …thr menu go to next line and when I open it… I have two problem, check here : http://i.imgur.com/i6TGYg5.png
Hi there
I see, thank you for reporting this!
will get a fix on this.
please can you tell me when it’s fixed and how can I fix it…thank you in advance for keeping me informed
Will do 
no news from you since….? and please check and tell me why in my div.header-quick-nav > .pull-left I can’t click on the icon…. if I click it do nothing…. i have a link there but i’m thinking the class ..demo-center-logo is over these quicklinks … beause in “inspect element” when I delete dinamically the ..demo-center-logo class it works fine … idea ?
Hi there Sorry about the delaying your request bgvc, That is a known bug, and to over come it, simply remove .demo-center-logo class from the A Link
and wrap the A link with a span and the span class should have .demo-center-logo
Like this
<span class="demo-center-logo">
<a href="index.html"><img src="assets/img/logo-b.png" class="logo" alt="" data-src="assets/img/logo-b.png" data-src-retina="assets/img/logo-b2x.png" width="106" height="21" />
</a>
</span>
I have no demo-center-logo on A link … I already wraped my a link with span-demo-center-logo remember I tell this bug to you but…this span is always over the navbar… and If I put a link on the .pull-left div ….I cant click on it….. ...
Oh! right, if you can add this to you stylesheet it would work fine 
.horizontal-menu .header-quick-nav > .pull-left,.horizontal-menu .header-quick-nav > .pull-right{
position: relative;
z-index: 10;
}
.horizontal-menu .header-quick-nav .demo-center-logo{
z-index: 1;
}
A z-index issue
very very nice thank you 
I’ve uploaded files to ftp server. and I open “index.html” side bar menu just show link1,2,3….... I want to display full pages of link menus like live preview. how can I do? thanks.
Hi there
You must have uploaded the barebone/index.html
you can go to webarch/html/ folder and upload all the files, these are all the demo files 
thank you very much 
Why a simple checkbox with no text is invisible? It happends in asp.net only.
Example:
<asp:CheckBox ID=”CheckBox1” runat=”server” /> works fine but no style applied <asp:CheckBox ID=”CheckBox2” runat=”server” CssClass=”checkbox” /> totally invisible
Hi there What we did was we styled the native HTML check box and hide it with the label
so usually you code will look like this
<div class="checkbox check-info"> <input id="checkbox4" type="checkbox" value="1"> <label for="checkbox4">With Label </label> </div>
Without Label
<div class="checkbox check-info"> <input id="checkbox4" type="checkbox" value="1"> <label for="checkbox4"></label> </div>
Remove the text in the label tag but have the tag in place, it will not take up space 
I did not see your code previously
Ok so you want to add ASP tag too
<div class="checkbox check-info"> <asp:CheckBox ID=”CheckBox2” runat=”server” /> <label for="CheckBox2"></label> </div>
You need to wrap the check box with a parent div with the class “checkbox” and have a label inside to tick you can leave the label blank when you dont need any text in it
You should not add the class “checkbox” to the check box but only to its parent
Same thing. Both below examples are invisible.
<asp:CheckBox ID=”CheckBox3” runat=”server” /><asp:CheckBox ID=”CheckBox4” runat=”server” />
You have to keep you div structure like this
<div class="checkbox check-info"> <asp:CheckBox ID=”CheckBox2” runat=”server” /> <label for="CheckBox2"></label> </div> <div class="checkbox check-info"> <asp:CheckBox ID=”CheckBox3” runat=”server” /> <label for="CheckBox3"></label> </div> <div class="checkbox check-info"> <asp:CheckBox ID=”CheckBox3” runat=”server” /> <label for="CheckBox3"></label> </div>
Do you have an asp.net gridview example?
In your example the checkboxes are not clickable.
Lets try a bit different approach, to have asp label instead of HTML
<div class="checkbox check-info"> <asp:CheckBox ID=”CheckBox3” runat=”server” /> <asp:Label AssociatedControlId="CheckBox3" Text="" runat="server" /> </div>
Nice. It works. So, now, in asp.net, everytime I want to place a checkbox I need to add the label tag with AssociatedControlId. Is this really necesary? Is it possible to change something in the theme itself and not to require a label for every checkbox with no text?
Glad it works!
Apparently no, if we have to style it to webarch style we need to have label with AssociatedControlId but we can leave the label blank, the click is triggered from the label for=””. The biggest advantage is you dont need any JS or 3rd party library its very efficient then but then again there comes the downside where you need the label tag.
Let me know
Will have a look at your request on asp gridview
Thanks. A working asp.net webforms gridview example would be nice for anyone interested to use this theme in asp.net projects. I tried many times in the past to use this theme on several asp.net projects but gave up after many hours trying to make checkboxes, gridviews, modals, masterpages and other controls to act and look the same as in the html version.
I am having a hard time with gridview pagers look and feel and gridview & datatables javascript.
Oh I see, I have not yet tried out ASP gridviews, do you intend to use datatables plugin too ?
Did you try this
<asp:GridView ID="table" runat="server"
CssClass="table table-hover table-striped" GridLines="None"
AutoGenerateColumns="False">
</asp:GridView>
adding
CssClass=”table table-hover table-striped”
and
GridLines=”None”
This works fine but try to add a column with a checkbox and try to make the pager look like in the html example.
Is it possible for you to share the code of the gridview with me, that has checkbox and also columns ? 
Hi,
I saw in a different comment that you give access to the GIT repo, any chance you can do that for me?
Hi there
sure I can send you an invite to the private repo, can you email to support@revox.io 
Hello,
I am confused between buying Social Network – Admin & Website Template and this Webarch template.. Both are awesome. Please help. My usage will be to create website like facebook.
Hi there
Had a look at your email
we have a-lot of widgets include social, but I think you should wait for our surprise, we are working really really hard and trying to get it released within the next two weeks 
Oh thank you so much Ace.. Looking forward to purchase the magic.. 
Hello Ace, Waiting for that update.. Can you please provide me a hint about how, what and when it is coming? Actually I on an edge to buy this product. Please let me know.
Hi there
I understand
We are working on the documentation so its at the later part of the release, so by next week end it will be, if you could email to support@revox.io
great..
didn’t understand last part “if you could email to support@revox.io” though.
Is it gonna be an update of this template? I am asking this as if it is so, i can buy this template now and can get the update in future.
Hi there
No its not going to be an update of this template its a new product, but we have tons of updates coming afterwards for webarch
and all updates are free
Hello ace, any update? (I am already following you just making sure)
Hi there!
Thank you for checking up, we will releasing the new product in a few days time, working on the documentation and a few bugs ! 
Thank you Ace, I ll be in touch.
Hello Ace, May i get few hints about new release, as in how different it is gonna be from this theme? How will it differ in pricing? As i am in critical hurry in finalizing it. My email id: hrdktanna10@gmail.com
Sure, prices will be the same, I will drop an email 
waiting.. 
Hi there
Sorry about not sending you the email, I will in a moment 
Thank you.. 
Thank you.. 
Follow Us on twitter for updates
@revoxltd
following you there..
one (probably) last question, Does this template has infinite scroll feature? I can not find it on demo.
Hi there
Im assuming your talking about the scroll where you reach and end and it loads more content, like in facebook ? apparently both do not have that 
oky..
(i was being little greedy..
) any chance the new one will be launched within 1-2 days?
Yes! we are in the final bit of task and preparing for launch 
good luck.. 
Thank you! 
hey there.. just checking in.. I will get to know abt the launch from your portfolio right?
Hi there
We are finally coming to an end and yes will info in the comment section too 
ok thanks..
will be waiting..
The count down begins
http://revox.io/

When will you release the angular version?
Hi there
Working on a big surprise and that will also have Angular support, say within another two weeks 
Just wanted to know why is the timepicker/datepicker is dependent on ios7-switch.js? If I strip out the codes in form_elements.html and retained the the iOS7 slide toggle code block, timepicker and date picker work but if I remove the block it doesn’t work?
Hi there
It is not 
Please do not use form_elements.js for production we only made it for demo purpose. If you remove io7 toggle div from the HTML, the JS will still look for it and if it does not find it, it will through an error and hault everyother operation causing other plugins to fail 
So Start off from the barebone folder, go to that folder and open index.html, its a fresh start for any project 
Next
add this HTML code
<div class="input-append success date">
<input type="text" class="span12">
<span class="add-on"><span class="arrow" /><i class="icon-th" /></span>
</div>
<div class="control-group">
<label class="control-label">Default Timepicker</label>
<div class="controls">
<div class="input-append bootstrap-timepicker-component">
<input type="text" class="timepicker-default span12">
<span class="add-on"><span class="arrow" /><i class="icon-time" /></span> </div>
</div>
</div>
include the css on top of the page
<link href="assets/plugins/bootstrap-datepicker/css/datepicker.css" rel="stylesheet" type="text/css"> <link href="assets/plugins/bootstrap-timepicker/css/bootstrap-timepicker.css" rel="stylesheet" type="text/css">
include JS after jquery plugin anywhere on the bottom 
<script src="assets/plugins/bootstrap-datepicker/js/bootstrap-datepicker.js" type="text/javascript"></script> <script src="assets/plugins/bootstrap-timepicker/js/bootstrap-timepicker.min.js" type="text/javascript"></script>
After that we need to initialise it
you can either create a new JS file and include it at the very bottom of the page or include this code at the very bottom after all includes
//Date Pickers
$('.input-append.date').datepicker({
autoclose: true,
todayHighlight: true
});
Done 
orm_elements.js noted.
Where is the timepicker sample though? Is it timepicker or clockpicker?
I think from version 26 you are using a timepicker and in 27 a clockpicker.
Hi there
Its the bootstrap datepicker I just showed you 
For the timepicker we did not update the documentation but
here is the documentation of the author of that plugin
http://weareoutman.github.io/clockpicker/Same methods
HTML tags then Includes and then JS initialisation
Please do let me know if you find trouble, I can help you get it sorted 
It’s so fustrating that your documentation doesn’t help anything at all, i better go to jquery plugin directory and search for my own and try to implement with bootstrap. This template is not helping me anything since i bought it. Check your documentation and check the javascript references, it’s not matching (for example datatables js libraries). In the other hand, your theme was made for just working with the example, what if i need to use only one datatable from “datatables” where is my help to isolate everything but that item?.
Hi there
Lets guide you through, Firstly you have to work on the barebone
barebone/index.html
Its a fresh start for any project
do not work on demo files
and create a simple table with the ID = “example_table”
Step 1 :
<table class="table table-hover no-more-tables" id="example_table">
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>3</td>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
Add this to your HTML
Step two
Add the following scripts and css to your HTML Its a must that they should go to the very bottom of the page<link href="assets/plugins/jquery-datatable/css/jquery.dataTables.css" rel="stylesheet" type="text/css"> <link href="assets/plugins/datatables-responsive/css/datatables.responsive.css" rel="stylesheet" type="text/css" media="screen"> <script src="assets/plugins/jquery-datatable/js/jquery.dataTables.min.js" type="text/javascript"></script> <script src="assets/plugins/jquery-datatable/extra/js/TableTools.min.js" type="text/javascript"></script> <script type="text/javascript" src="assets/plugins/datatables-responsive/js/datatables.responsive.js"></script> <script type="text/javascript" src="assets/plugins/datatables-responsive/js/lodash.min.js"></script>
Step Three
Add this script to the very bottom of your page
<script>
$(document).ready(function() {
$('#example_table').dataTable();
} );
</script>
Done!
Usually we do not include extensive documentation for 3rd party plugins as they have already done that for us
I started with the barebone and i tried to isolate components of the different examples but it was not easy using your example so i searched in the documentation for a simple example or something that could guide me in the way to get a datatable as i saw in your template but i had no luck. My recomendation is that if you are offering something in your demostration page at least include a code example of what you are using or include it on the template.
Hi there Noted, Will try to make the documentation more descriptive, the steps that I told you, did it do any help to you ?
This is basically how most plugins work
First you have set of HTML code Second you include required JS Third you initialise the plugin
So if you look at the example datatable.html you will extract the required table out, it will have an ID
usually the demo code is as the same name of the html
if you have form_elements.html the JS file would be form_elements.js
incase of datatable its datatable.js
so you’ll see a bunch of code, you take that ID that I told you about and search it using the search in your IDE or editor and you will find that code block 
let me know if you have sorted out the datatable.
I could arrange an online live webcast over skype or any video sharing with voice and explain the entire thing
let me know ?
I think it’s because we might be missing some js for the scroll bar maybe some css , also this is for the bare-bone , not webarc as that one works fine tried my self to re add css ,still not fixed tho, I think it’s a small thing which would take you not long to fix where iv been trying to fix it for 30 min, thanks skecchi
Hi there
Is this from the barebone ?
its powered by
You need to include
<link href="assets/plugins/jquery-scrollbar/jquery.scrollbar.css" rel="stylesheet" type="text/css"/>
<script src="assets/plugins/jquery-scrollbar/jquery.scrollbar.min.js" type="text/javascript"></script>
Afterwards
<script>
$('#main-menu-wrapper').scrollbar();
</script>
main-menu-wrapper is the id of that element
We are revamping the documentation
I tried that now the scroll wont move, also while trying to add some stuff to the horizontal menu boxed layout , all of the widgets don’t work , I think the overall page is missing plugins, and some of the css maybe as when ever I add a widget from the main theme , either the js is not working or the missing css/html classes I’ve messed around with it quite still nothing tho , you try and add a widget etc to the horizontal menu boxed layout and you will see what I mean ,thx
Hi there
First open up chrome and press f12 or on a mac right click inspect element.
Then a window will appear below, go to the console tab, it show any errors that comes in your page, this is very handy when developing.
The thing about jquery is that if you remove an element on the html you have to double check and make sure it will not check for that element in the JS file
$('#elelment-id').somefunction();
So if your going to include a single widget then you need to only have that specific line of code that is required for that widget in the js
not the entire dashboard.js 
Im assuming you want to get the entire dashboard to the horizontal
Step 1
copy the entire CSS links in the <head> tag in your index.html
don’t worry it will not mess your horizontal
Step 2
Scroll down to the bottom of the index page and copy all script tags
In that order
<script>
The order is very important when it comes to jquery
if you include your dashboard.js before jquery include then it will show an error in the console saying “undefined function” means it cant find ”$” function as the jquery was loaded after your dashboard.js and it will just stop everything else
First comes your core jquery script then your 3rd party plugins and lastly your custom js like dashboard.js 
Step 3
Copy the HTML tags inside .content div 
It should work fine
Let me know
by any chance when you finish the profile page could you send me screen shot as i want to know first if I should bother to create my own thanks Skecchi
Hi there
Hope you were able to get the things sorted out, yes I will send you a screen shot but its going to be awesome, still working on the surprise and its almost coming to an end 
Sorry me again , anything update on the profile page and summer note screen shot , I’m really sorry if I being a impatient i’ts just I have to have my clients site done by next week, also you have provided amazing support and overall a great seller on theme forest,
Hi there
We are working a couple few other things, I did drop you an email too 
And thank you again for the wonderful comments!
oh i’m sorry , my account is still hooked to my old email you can send me the screen shot via skecchisama@gmail.com,thanks alot
me again would love to see the screen shot’s of the profile page summer editor , as I didn’t get an email before ,thx skecchi
Hi there
Will email it to you ASAP once done 
me again sorry , how goes the progress , I wouldn’t be asking it;s just I have a dead line to meet and I Just need to to the profile page then im done so will it be done in the next couple of days or should I just making one my self
Hi there
Dropped you an email 
Hi! First of all thank you very much for your excellent work in this theme, I really like it. I would like to know how can I make that the landscape mode for small screen or tablets will work like if the screen is bigger. I mean in tablet the sidebar looks collapsed but even if you click the button it doesn’t work (This could seems strange for the user), so I would like to be able to click the menu button and show the collapsed menu as normal way on nonmobile screens.
And just a little type in your css: .header-seperation it should be .header-separation 
Regards!
Hi there
Thank you for the wonderful comments !
Yes this has been request by many, We did have version on 2.5, I can email you that version just for you to have a look and now Im working on a better way to represent opening of the main menu on 1024 resolutions screens 
Ok, so you’re planning to release in a new version right? I think I could wait them
By the way, is there any way to have horizontal menu together with side bar?
Thank you very much
Hi there
Even the request to have both menus
so adding this all to the next update
Hi, great theme… I am trying to set a horizontal menu boxed layout. I have already set the horizontal menu, but can’t make it boxed, what do i exactly have to change?
Hi there Boostrap natively comes with the div class called .container
<div class="container"> ... </div>
Any thing that you put inside or the same element will make it boxed 
If you look at the code you will see the container class, also if you find trouble attaching it, simply email the code to support@revox.io we will do it for you 
Oooooooohhhh thank you very much =D didn’t see the damn container tag :/
and a better profile page like the others have said ,
Edit: I’m buying the theme as it;s very good 
Hi there
Yes we had the same inquiry of these two things, a better profile page and also a new Editor like summernote, We are planing to issue an update on these and also make user able to migrate from older version to new
, so far thats our list and Thank you!
oh great do you guys have an eta on this
I have some kind of problems with Advance Tables.
Whenever i click on the first checkbox to get all the controls bellow checked, it doesn’t a something. It’s not working, please check it out.
Hi there
The advance table plugin is using
http://datatables.net/It does not have that feature so far, but when you look at
http://revox.io/webarch/2.7/tables.htmlYou can make it work because we wrote a custom script to do that 
//Too Small for new file - Helps the to tick all options in the table
$('table .checkbox input').click( function() {
if($(this).is(':checked')){
$(this).parent().parent().parent().toggleClass('row_selected');
}
else{
$(this).parent().parent().parent().toggleClass('row_selected');
}
});
We can do a work around to write a custom script to make it support on Datatbales but natively it does not, Hope you got what I’m saying
Let me know if you need assists setting up that script
please can you tell me what I have to add to my css to allow my old problem with this update ? do you remember I wan’t to allow to open always condesed menu …when clicking top-menu-toggle-dark … (actually it not works still…) ((please tell me but really I don’t understand why you block to open condensed menu … because only the icons aren’t ergonomic…. i read others post that they want to open condensed menu … because when you haven’t sub-menu ….. the icons is not enough to know where the user will click … I’m thinking it’s very important to allow to open this f* condensed menu 
Hi there bgvc, read your past comments I see that you have faced many difficulties in updating from older version to 2.7
Why don’t we do it for you, so it will not be frustrating for you 
I will also consider your comment of prohibiting users from touching core.js, style.css and responsive.css 
If you could email your previous edited version of style.css, responsive.css and core.js to support@revox.io, I will migrate it for you, does that sound ok ? 
woow that sounds very very good …. really thank you very much but I can’t sent this project because of the confidential data
but thank you very very much … and hope you will take in consideration to do something easy to update for new buyers …. and I hope in your next version you will allow to open condensed menu when little screen….just open it with sidR plugin… it’s enough … but it’s primordial
thank you still 
Oh I understand, ok then lets use a tool
I could give you the guideline to update which line of your code but that will also lead to confusion at times, So if you have used diff tools thats the best way 
If you can revert your project style.css, responsive.css and core.js to the good all fashion way that was working
https://www.diffchecker.com/Open this page up and on the left hand side you copy your old style.css and right you copy the new 2.7 style.css
It will highlight the new changes in Green
I recommend only to use the green for now, RED means removing or deleted, you can ignore that
Repeat the same procedure to the rest of the 2 files
Hope you got it, let me know 
ok thank you very much
will try it thank for this idea
another question in your update with hotizontal-menu layout… when I click on search input or other or those nearby … my page refresh in cause of logo hyperlink with class .demo-center-logo … how can I display the logo only display:block … just reload the page when I click on logo and not nearby
when I inspect element ahref I realize that que is over header and not just on logo
idea to fix that? 
Hi there! 
Thank you very much for reporting this!
yes
instead of the existing link with logo
wrap it with span like this
, it should be fine
<span class="demo-center-logo"> <a href="index.html" class=""><img src="assets/img/logo-b.png" class="logo" alt="" data-src="assets/img/logo-b.png" data-src-retina="assets/img/logo-b2x.png" width="106" height="21" /></a> </span>
works fine thank you
Thank you for the speed up upgrade. What is the 2.7.1 update? What did you fix/change there?
Hi there
2.7.1 will have SASS fixes has some SASS user ran into while compiling 2.7
Only update if you use SASS