1192 comments found.
do you have procedure to use less as a client-usage in html with less.js need I import in head all four less file : style+mixins+var+theme? because I didn’t see reponsive.css file as .less, we don’t need it ?
Hi there, no you simply import the style.less all the other less files imported automatically, btw the new release has reponsive.less file but not included in the package, we can email it to you 
:s lol yes please send it to me asap
because I want start somethings….
otherwise I juste need to replace style.css and responsive.css by style.less and responsive.less and add less.js and it will works? on a server of course because less do xmlhttprequest and in local I cant do that
That way you will remove less.js include and overhead time used to compile, what we usually do in webarch is we add any change to the less and use these compilers to make the CSS file, these compiler will compiler on the fly on click of the save button, then all you need to do is upload the css files, no changes to the include etc 
yes you are right
but on production it’s nice to do what you said….but on developement it purposed to add less.js just on developement
...sooo thank you for your responsive.less but I’m thinking I import it wrong way… look lol http://i.imgur.com/kXL6211.jpg
Hi, yes if we you do it your way you might have to import responsive.less, but Im sure you can include it and it will compile
I import style.less and responsive.less and it wont works why ?
did you include the less.js inside the head tag ?
i’m thinking less.js goes after .less file… I includ it before ...just one thing : it works fine with style.less and responsive.css but yet when I put your file responsive.less it wont works
Just sent you a new version 
lol thx it works 
juste another question please: in normal barebone we have included in headtag only style.css and responsive.css but .less compiled into css file we must put all css files created by WinLess in our head-tag ?
OH NOOOO ! I just compiled less file and the less folder don’t allow me switch menu on tablet-landscape… please can you update less file too …i’m thinking you forget it and resend me the barebone zip with less updated and allowed to switch condesed menu 
:S:S and please fix me the layout.less file when I compile with WinLess all is OK just it fail for theme.less “name error: .placeholder is undefined in c:\....layout.less on line1, column 1: 1 . placeholder(’#333843’); .... I want to start something but I can’t because there are a few little prob 
Hi there
This is quite strange, as this is the first time this has happened, The LESS files in the barebone are updated
I have remailed you the LESS folder. Let me know
it worksssssssssssss thank youuuu 
great! 
in your last less.zip when I compile style and responsive I have this : http://i.imgur.com/nVLufKY.jpg 3scrollbar on opening chat sidr, can you tell me what fileand what file need I change to my less file to avoid this
thx?
Hi Sorry about that, sent you the instructions 
Does this admin come functional? is there any way to get installation help from you as a premium?
Hi there, This is a full UI Framework, its there to make things easier in the development phase, We do have a separate customer support, if there are any issues with the framework or if you have any doubts we’ll be there to assist you with. 
hi I just see page to custom LAYOUT… it will be very nice if you add others options to layout like add sidebar left and right ….close left or right …and another awesome is RESIZE sidebar
(I don’t talk about sidr…) juste open left and right aside
and resize it … i think also top and bottom … this will be very nice and awesome to show all posibilities of your template
and i’m not thinking that’s difficult coz jqueryUI have resizable() method
take care
Hi there
Hope the one that we sent is in order ?
true but resize we might have small issues because of the text width and profile image width
it’s idea ….i know it’s will be very nice if we have 2 sidebar left and right and when the screen is small …so close both sidebar and open it with sidr… something like this
(otherwise yes the things you sent me is OKKK thankyou very much)
it’s problem for you to update the barebone you sent me…and show 2 sidebar (left and right) juste duplicate the actual left menu to the right side… and juste switch to close when on small screen …or if you haven’t time plase add more option to your next release for the layout possibilities…. thank you very much
Any plans to add heatmaps and fullscreen toggle to any div? btw… Awesome theme!!
Hi there
Thank you!
appreciate it, Div toggle fullscreen is quite interesting, will see if we can find an heat map API 
you can check this out http://www.patrick-wied.at/static/heatmapjs/demo/maps_heatmap_layer/gmaps.php
Thanks! 
Hi, looks very promising! Very slick, nice animations, nice look & feel. We’re looking at buying it, but one problem though. I had a look at it on my iphone 4 from the link on this themeorest page, and it loaded very slow, started flipping (kind of refreshing all the time), and eventually crashed by browser.. What did display, didn’t display in responsive mode.. Any idea what the problem could be? Tnx!
Hi there
Its the themeforest header
we had some complaints that it crashes on the iphone 4 occasionally, the themeforest loads up the full preview without the responsive one
Please try the real demo link below 
Thank you very much for the wonderful comments
looks better already, but still crashed the browser once. It takes some time to load, and when I started scrolling before it stopped loading, it crashed. Second time it worked better, but still “flashes” from time to time. I’ll test it some more on a wireless connection, as am at slow 3G connection. But I must say even on iphone it looks great! Tnx for your quick response!
Hi there Just a quick analysis as you see the dashboard page on the desktop view contains over 20 widgets and its only for demo purposes, so probably running out of memory
we can try our old dashboard
http://revox.io/webarch/HTML/dashboard_v1.htmlor much more simpler pages
http://revox.io/webarch/HTML/buttons.htmlor any other sub link, let me know
Thank you
Ok, the old dashboard worked just fine! And indeed you Will never use that much widgets i guess.. Tnx!
Do you have a complete task manager? not just the widget.
Regards.
Hi there
No its actually the working UI
no web service of any sort to save data
Hi, How can i force to make grids collapsed on page load. I have lots of grids so i want that, these grids may opened when the visitor click.
Regards.
Hi well you can do this
open up style.css
you can place this code anywhere you want
.grid.closed .grid-body {
display: none;
overflow: hidden;
}
and in the grid div and the class .closed and in the .collapse div button change the class to .expand
so it will look like this
<div class="grid simple closed">
<div class="grid-title no-border">
<h4>Grid <span class="semi-bold">One</span></h4>
<div class="tools">
<a href="javascript:;" class="expand"></a>
<a href="#grid-config" data-toggle="modal" class="config"></a>
<a href="javascript:;" class="reload"></a>
<a href="javascript:;" class="remove"></a>
</div>
</div>
<div class="grid-body no-border">
Your Content
</div>
</div>
After putting the code in style.css, should i only write the div class=”grid simple closed”
and you see the arrow “collapse” div which is the arrow pointing down change it to “expand” so it points up
Thank you for your reply but it is not working 
Hi Just uploaded for it for you
http://revox.io/webarch/HTML/test.htmlits same thing with the style.css changed, by the way can you add that code to line 4160 and see again
Thank you very much, i have found my fault, i put style=”overflow: hidden; display: block;” into the grid-body, manually, When i removed it its solve.
One more question please : how can i push the page open with the left menu collapsed ?
With the green mini bar ? 
you will find the DIV with the id main-menu to that add the class .mini
since your not using the latest version you will have to display:none the top black bar 
Thank you but another problem accured
http://modularica.com/capture.png
sorry one last thing you need to change .page-content to
and remeber to add display:none to the black header 
in the latest version we have a simple class to the body and it condense
This would be easier for you
This is from the latest version 2.0.3
body.condense-menu .header-seperation {
display: none;
}
body.condense-menu .page-content {
margin-left: 50px;
}
body.condense-menu .footer-widget {
display: none;
}
body.condense-menu .scrollup {
left: 34px;
}
body.hide-top-content-header .header {
width: auto;
}
body.hide-top-content-header .header-quick-nav {
display: none;
}
body.hide-top-content-header .page-content .content {
padding-top: 25px;
}
body.hide-top-content-header .page-sidebar.mini .page-sidebar-wrapper > ul {
padding: 0;
}
body.hide-sidebar .header-seperation {
display: none;
}
body.hide-sidebar .page-sidebar {
display: none;
}
body.hide-sidebar .page-content {
margin-left: 0;
}
body.hide-sidebar .scrollup {
left: 34px;
}
body.boxed-layout {
background-color: #F2F4F6;
}
body.boxed-layout .header {
width: inherit;
padding-right: 30px !important;
}
body.menu-non-fixed .page-sidebar {
position: absolute;
}
add it to style .css
and simply Add condense-menu to the body tag
Actually, a little bit confused
... I put mini class to the main-menu. But what should i do to the . page-content ? And what is the black header
Sorry for my missunderstood.
Forget the mini one simply follow the last comment instruction 
Hoops, i just see your new comments.. Thank you very much..
I think i need to upgrade my theme
Is there a procedure for upgrading my theme ?
yes simply add the code that I have sent to style.css 
Hi , I put the body class=”condense-menu” and the result. http://www.modularica.com/condensed.PNG
I have also problem on my select2 dropdowns.. We have already talked with you.. I think i need to update my theme fully ?
Here is select2 problem, http://www.modularica.com/select2.PNGHi I guess we need to update your Theme to get the condense-menu that way
lets do that, btw could you update the responsive.css from the new package downloaded ? or simply from here would do
What is the files should i need to update, to catch the last update for this theme ?
Only style.css and responsive.css ? is there any plugin files ... ?? Should i download whole theme and replace the all files ??
No its not needed to do that, but simply if you can update those two files that would be great! 
Thank you, i will do this but, can i call $(“body”).condensMenu(); with only changing css?
Hi, for the JS API you will have to update the core.js in assets/js folder 
Sorry but i have still the same problems. with select2 and condense-menu… Could you please help me ?
Hi yes I can help you
first if you can upload your entire project into a temporary place so I could help you debug your problem alot faster and easier
Sure, i published my project for your.. Do you have an email address that i can send the link via ?
You can always send to support@revox.io
Hi! Thx for your reply! Problems are opening a menu on the left or opening the chat on the right…doesn’t work scroll for chat and big flickering for menu. For chat if you start to write message the layout became messy. Let me know if you need more details. Kind regards.
Hi this is on windows phone is it ? I think I got what your saying but a screenshot would be very helpful
and yes will fix the windows phone issue
Thank you very much! btw could also let me know what your device is so that I know what resolution its operating on 
Nokia Lumia 920. Thanks for your support.
Great! Lets get you that fix
will update the demo link once done and will let you know
Thx. 
and let me know the value of the alert it would be great!
its quite hard to get hold of a Lumia 920 right now 
371
an alert will popup and you could let me know the value for it
Thanks
Hi
http://revox.io/webarch/HTML/test.htmladd a fix
could you check the above link and let me know if the header is responsive now
the right menu works perfectly
The right panel (chat) has wrong behavior as before.
sorry. the left menu works perfectly
Awesome! the black header too ?
so I’ll look into the right side menu, the problem is its not scrolling right ?
Yes left header too and I can scroll it without flickering! The right I cannot scroll and if I try to write message messy layout…
Hi could you check it now
http://revox.io/webarch/HTML/test.htmlRight panel chat always wrong behavior.
Okay, still you cannot scroll is it ? and this wierd behaviour happens when the keyboard popups up ?
Yes. no scroll and messy layout after try to write a message…
Hi there
could you try and see if the keyboard pop still makes the layout got out ? 
I would like to buy it. But there is some problem on Windows Phone. The responsive layout doesn’t work. And on other mobile device? You will solve it? Thanks.
Hi there!
Is there any way you could show me a screenshot, we have tested it out on iphone3gs,45,5s, ipad 3,4 , Couple of android devices and it works great!
let me know
hi! In te official demo i see two scroll bars in almost all pages (dash #1, #2, form elements) with chrome 34.0 and Firefox 28 any hotfix for this?
Hi there
Small conflict on core.js but you should be able to see it properly on the downloaded version from themeforest
and its also fixed in the demo URL
YEAH ALL RIGHT
Thank you for reporting 
do you know how can i speed the Frontend load time. it takes about 5 secs to load, which will sure be a problem with the bounce rate for the website.
do you know what is slowing it down? I mean the spinner, is there something I can remove for it to load instantly
Hi,
Did you remove the video ?
if you want to remove the loading overlay there is a small tweak, first open up you HTML file
At the very bottom of the page you will find
<script src="assets/plugins/pace/pace.min.js" type="text/javascript"></script>
Remove that
and open up assets/css/style.css
and in that in line 38 you will find the class
body.pace-running .main-wrapper{
opacity:0;
}
change the opacity to 1
Also you can try minifying all CSS and JS and enabling GZIP 
when I removed pace.min.js the page is blank
Hi you need to do the css change too like mentioned in the above comment
I did, I changed it to 1 but still blank
<link href="assets/plugins/pace/pace-theme-flash.css" rel="stylesheet" type="text/css" media="screen"/>
removed it still blank… any more suggestions? Thanks for your help
Hi there
Best way to debug is if you oould provide me a demo link so I can debug and let you know whats wrong 
listerkey.com
Hi there got it
style.css line 35
.main-wrapper {
opacity: 1;
}
change it to 1
cool thanks
perfect
Hi Such an awesome theme, Any plans for an RTL version?
Hi there
Yes we have a plan,working on it 
I can’t see anything in the documentation on how to get the email.html page layout to work?
the left sidebar structure is what I’m after.
Hi there
Whats the thing your trying to archive ?
could you elaborate about it so I could help you out
Hi, purchased this theme, and the nav sidebar is not displaying: Details are: spendrpay.com Test login: john@john.com Pass: john
After you login you’ll see the navbar wont load.
Hi there
Please remove the JS include at the buttom of the page
its not needed and its causing conflicts 
<script src="http://revox.io/webarch/assets/js/dashboard_v2.js" type="text/javascript"></script>
Great theme, any plans for e-commerce related pages? have a look at prestashop: Handling of orders, products, people, and ticket support.
Hi there
We have not thought about shopping carts yet
but yea why not will have a look
Thank you
I was mostly talking about administrating orders/products/people and tickets, not so much the storefront.
I think the ecommerce admin would be great in your theme. I’m ready to donate to get these admin pages prioritized.
There is a demo prestashop, you could login to the admin interface to get to know it a little. Prestashop covers most use-cases but their design is far from what you’ve accomplished here. http://itinnovator.co/prestashop1-6-new-version#thx for you last support… i’m ux designer and purpose for the next update of webarch ….it will be important that on tablet we can open the left menu when clicking on menu-switcher… this is important only for ergonomy and user experience…. because yes your condensed menu is very nice, saved alot of space and good for a litle webapp with 1 or 2 menu icon and their submenu, but when the site have very more menu icon the user MUST click on each icon to show their sub-menu text … so user click on an icon before know what he want to display..and that’s not very ergonomic… so please for all …it’s OK to display the first time condensed menu but …. just when we click on switcher open the menu sidr…. like in smartphone or on desktop version… just allow to switch between condensed and opened menu
thank you very much
Hi there
We have a Beta version, I can email you that version 
This feature will be available for the next release
Sorry, I don’t like this question too but: when?
Because it’s very dammage if I start a new project with actual version and after I couldn’t implement this important switcher-menu feature on tablet view 
Hi there, I understand
is it ok to give you the code for it before the release ?
if you have newer version thatyou sent me yes you can resend please, and please on barebone version with last update 
Hi just sent you have a look 
Hi bgvc emails seem to bounce back because the attachment size is big, its only 1.6mb though, do you have an alternative email ?
Sent you a google drive share 
hey guys there is still a menu issue with the last item http://screencast.com/t/3wHbpwZ2Sjy there is no way to scroll to get to the other items in the list.
I reported this defect maybe 2 months ago, it would be good to see this fixed soon.
Thanks
Hi there I believe that the issue of the scroll in the main menu is fixed, did you try http://revox.io/webarch/ and resize the window from bottom
Or your talking about something else ? 
Hi,
When I try to write in the chat from a Nexus 4 / Android 4.4 / Chrome Browser, the sidr closes itself when i touch the textbox
Do you now can i avoid that ?
Thanks
Hi The chat is by default set to close when the window resizes, guess in android when you open the keyboard it resizes the browser window.
You can do a minor tweak 
If you open up assets/js/core.js
in around line 528
you will find window resize function
inside you can see this
$.sidr('close', 'sidr');
Replace it with
if (!(/Android|Opera Mini/i.test(navigator.userAgent))) {
$.sidr('close', 'sidr');
}
Wow, amazing support ! That worked perfectly !
Great! 
Hi, when writing in the chat input from mobile phones , the new comments appear below the keyboard, any idea on how to avoid this ?
Thanks and great work , I’m super happy!
Hi yes, do we have your email address, could be able to send email to support@revox.io
will send you the update chat.js file
hi, great template, loving it!
I have a problem with the chat div, I tried to enlarge the text input area in height, but it seems to block the chat bubbles and affect the scroll action. how do I constrain the chat bubble area so the scroll works normal?
I just need it to work as a mockup for now.
http://screencast.com/t/mCfKsa9oKthank you.
Hi
The chat bubble comes below the chat input is it ?
sorry about the late reply
yes, but it’s more like “behind” the chat input.
hi, I put it on the server, maybe you can take a look?http://test.airdrop.tw/profile_ricebook.html thanks a lot
Hi will send you a hotfix for that 
hi, I still not getting the fix…it’s a bit urgent 
Hi mailed you on the fix, you didnt get it ?
um…I just checked the Junk, no luck. Could you send it again to the email from my profile? thanks
Hi there could you check it now 
Got it! thanks. But still not working, I’ve replied in detail, please help.
Hi there
Sorry about the mix up, will mail you again with your fix 