1192 comments found.
Hello Ace,
Can’t wait for the update, will it be available this week?
Thanks and more power!
Hi there
Yes
btw this update is not a very major one, but there is a big surprise end of this month. lets keep it a surprise. As promised the webarch update will happen
Hi, was wondering if there were a lightbox or dialog box feature ? thks
Hi there
Apparently not, Im guessing your suggestion for us to go with lightbox ? 
Hi there, actually i found a way by using the Modal bootstrap library already included in WebArch
should be ok for my case. thanks
Hello,
I got one more problem, do you know why the main-menu loads the full way instead of what it was suppose to? I can close it but it should be full width at startup.
http://i.imgur.com/YEJTjhG.png
I made sure that the javascript and style sheets are the same as yours. I am only using one style.css (which is a less file). I also checked my html code and its w3 valid.
Hi there
Did you check if the responsive.css file is also included in the HTML ? 
Sorry, less noob. Thought processing style.less also processed responsive. Thanks!
No worries 
Ah, sorry, first time using LESS. Thanks for the great support!
Great!
glad you solved it, anytime.
Hello,
I have an issue compiling the less files using grunt:$ grunt less
Running "less:dev" (less) task
>> NameError: .placeholder is undefined in assets/styles/modules/layout.less on line 1, column 1:
>> 1 .placeholder('#333843');
>> 2
Warning: Error compiling assets/styles/modules.less Use --force to continue.
My grunt-contribute-less config:
grunt.config.set('less', {
dev: {
files: [{
expand: true,
cwd: 'assets/styles/',
src: ['modules.less',
'responsive.less',
'style.less',
'mixins.less'
],
dest: '.tmp/public/styles/',
ext: '.css'
}]
}
});
Hi there
.placeholder() is a function found int mixins.less could you open that file and confirm if its available ?
what .placeholder does it add
place holder colors and its only used at that place 
&:-moz-placeholder { color: ##333843; } // Firefox 4-18
&::-moz-placeholder { color: #333843; opacity: 0.5; } // Firefox 19+
&:-ms-input-placeholder { color: #333843; } // Internet Explorer 10+
&::-webkit-input-placeholder { color: #333843; } // Safari and Chrome
&.placeholder { color: #333843; } // Fallback
// Placeholder text
.placeholder(@color: @input-color-placeholder) {
&:-moz-placeholder { color: @color; } // Firefox 4-18
&::-moz-placeholder { color: @color; opacity: 0.5; } // Firefox 19+
&:-ms-input-placeholder { color: @color; } // Internet Explorer 10+
&::-webkit-input-placeholder { color: @color; } // Safari and Chrome
&.placeholder { color: @color; } // Fallback
}
// Placeholder text
.selected(@color, @background) {
&::selection {
background: @background; /* Safari */
color: @color;
}
&::-moz-selection {
background: @background; /* Safari */
color: @color;
}
}
.placeholder-height(@height) {
&:-moz-placeholder {
line-height: @height;
}
&::-webkit-input-placeholder {
line-height: @height;
}
&.placeholder {
line-height: @height;
}
}
I changed it to:
// Placeholder text
.placeholder(@color: @input-color-placeholder) {
&:-moz-placeholder { color: ##333843; } // Firefox 4-18
&::-moz-placeholder { color: #333843; opacity: 0.5; } // Firefox 19+
&:-ms-input-placeholder { color: #333843; } // Internet Explorer 10+
&::-webkit-input-placeholder { color: #333843; } // Safari and Chrome
&.placeholder { color: #333843; } // Fallback
}
.placeholder('#333843');
function found in layout.less
to
&:-moz-placeholder { color: ##333843; } // Firefox 4-18
&::-moz-placeholder{ color: #333843; opacity: 0.5; } // Firefox 19+
&:-ms-input-placeholder { color: #333843; } // Internet Explorer 10+
&::-webkit-input-placeholder { color: #333843; } // Safari and Chrome
&.placeholder { color: #333843; } // Fallback
if that doesnt work out,if you can comment that function call that would be great, it will not do any changes to the theme, we need to do a small test with gruntt,
Hello,
Thanks for the reply, but now it doesn’t like the next variable. Is my grunt config correct?
domz@domz-N550JV ~/Seedmybox $ grunt less
Running "less:dev" (less) task
File .tmp/public/styles/mixins.css created: 0 B ? 0 B
>> NameError: .placeholder is undefined in assets/styles/modules/layout.less on line 1, column 1:
>> 1 .placeholder('#333843');
>> 2
Warning: Error compiling assets/styles/modules.less Use --force to continue.
Aborted due to warnings.
domz@domz-N550JV ~/Seedmybox $ grunt less
Running "less:dev" (less) task
File .tmp/public/styles/mixins.css created: 0 B ? 0 B
>> NameError: variable @sidebar-color is undefined in assets/styles/modules/layout.less on line 13, column 23:
>> 12 .direction();
>> 13 background-color: @sidebar-color;
>> 14 color: @base-font-color;
Warning: Error compiling assets/styles/modules.less Use --force to continue.
Hi there
This is quite strange and we use usually develop on LESS not CSS and the live demo runs on LESS not CSS
yes can we check your settings ?
Keep
strictImports, strictMath, strictUnits all set to false 
and could open up layout.less and comment the line
.placeholder(’#333843’);
Hello, here is my whole grunt file:
/**
* Compiles LESS files into CSS.
*
* ---------------------------------------------------------------
*
* Only the `assets/styles/importer.less` is compiled.
* This allows you to control the ordering yourself, i.e. import your
* dependencies, mixins, variables, resets, etc. before other stylesheets)
*
* For usage docs see:
* https://github.com/gruntjs/grunt-contrib-less
*/
module.exports = function(grunt) {
grunt.config.set('less', {
dev: {
files: [{
expand: true,
cwd: 'assets/styles/',
src: ['*.less'
/*'modules.less',
'mixins.less',
'responsive.less',
'style.less',*/
],
dest: '.tmp/public/styles/',
ext: '.css'
}]
}
});
grunt.loadNpmTasks('grunt-contrib-less');
};
Hello,
I updated to your recommendations. Still the same error:
/**
* Compiles LESS files into CSS.
*
* ---------------------------------------------------------------
*
* Only the `assets/styles/importer.less` is compiled.
* This allows you to control the ordering yourself, i.e. import your
* dependencies, mixins, variables, resets, etc. before other stylesheets)
*
* For usage docs see:
* https://github.com/gruntjs/grunt-contrib-less
*/
module.exports = function(grunt) {
grunt.config.set('less', {
dev: {
options: {
strictMath: false,
strictImports: false,
strictUnits: false
},
files: [{
expand: true,
cwd: 'assets/styles/',
src: ['*.less'
/*'modules.less',
'mixins.less',
'responsive.less',
'style.less',*/
],
dest: '.tmp/public/styles/',
ext: '.css'
}]
}
});
grunt.loadNpmTasks('grunt-contrib-less');
};
Hi there
I want you to compile only style.less not *.less 
I think you missed the src to only style.less
not all the LESS files in the dir 
Hello,
I would like to use this for the admin dashboard. I have 2 questions: 1) Will it affect other pages on the website? 2) Will I be able to customize the dashboard, for instance inserting my website logo, unselecting the sections of the dashboard I dont want?
Thanks you
Hi there
1) It will not conflict with any of the front end of your website
2) Yes you can practically do anything with it, insert your logo etc and it comes with LESS so you can select what the elements you want and work from our cleaned optimised folder called barebone code that you will find in the package once you purchase
Hope this info helps you
Thanks Ace. How easy it is to install the dashboard? I assume it’s framework-agnostic, correct? Our website is in django.
Hi
Yes it works like a framework copy paste code
and we provide assist if you run in to trouble, the package contains, HTML / HAML,
LESS / SASS / CSS ,JS and PSD
Any news about the upcoming update….
Hi there slit change on update, it will be released
Monday or early if possible we are also working on something new too with sleepless nights, update will include the all new gantt chart
sass update, bug fixes, angular barebone and horizontal menu
Hi Ace. Can’t wait to see the new update
When do you think we are ready 
Hi there
Lets get you a preupdate!
if you can email to support@revox.io will mail it to you as soon as its ready so that you do not have to wait till themeforest puts it live 
Is the update still happening today?
Hi there slit change on update, it will be released
Monday or early if possible we are also working on something new too with sleepless nights, update will include the all new gantt chart
sass update, bug fixes, angular barebone and horizontal menu
Thanks!
Quick question before I purchase. Do all the plugins and 3rd party assets, IE bootstrap, have direct modifications made inline? IE If I wanted to upgrade bootstrap to fix something or get a new feature, would I have to merge your changes in?
I’ve seen a few themes that modify the bootstrap less files directly, which certainly makes it a pain to manage 
Thanks
Hi there
Nope not at all, we do not touch boostrap or plugin css but is overwritten via the style.css that way upgrade is just copy pasting the plugin to assets directory
yes you can update at any time then
Sold
– I’ve purchased other themes that looked great, but were too intermingled. Glad to see that you’ve done things right!!
Nice theme!
Thank you very much! 
Hi, possible to add this feature/design in your next update?
http://oi58.tinypic.com/ek12rl.jpgThanks.
Hi there
Circular progress bars!
sure we might have to tackle the inner icon
Hey ace, loving the theme so far. We’re planning on upgrading to the Extended License soon. We’re having problems getting the “standard” menu from your theme (white background, with things like the notification dropdown and the quicklinks functionality) to work like the standard Bootstrap navigation menu, i.e. on mobile the menu gets the “three bar” dropdown. We’ve deactivated the side menu that comes automatically with the theme, and cannot get the mobile dropdown menu to work. Any help would be greatly appreciated. Thanks!
Hi there
Oh ok, you want to disable the sidr
sure its best if we can continue it via email, because I can send you the required file updates, how far were you able to get it ? I could send you a template like code with the working boostrap navigation menu, please do drop an email to support@revox.io
Hello,
I would like to know is there easy way to change font family from latin to extended latin? I will be need support for Central-Eastern European languages and this is very important to me.
Thanks!
Hi there We are using open sans as the headings font and arial as the default if you open up assets/css/style.css and on the very first line you line you will see the import to open sans via google font api
If you want to change the font completely I suggest you use LESS and compile it to CSS 
if you go to assets/less/themes/default/var.less
and you will see these two variables on the very top change them and compile 
@base-font-family: 'Arial'; @base-font-family-two: 'Open Sans';
Hope you got it let me know
Hello Ace,
How can make the Craft Map height 100% of the content div? I tried deleting data-sync-height=”true” and adding style with 100% height but the map rendered broken.
Thanks!
Hi there
Did you email us too on this ?
we got a similar request, btw craft map is a bit crafty plugin so it appends an iframe not a div, we have to have a height with px, what data-sync-height does is it takes the width and equals it to height in px not percentage, hope you got what im talking about 
Yeah it’s the same request
Is there away to automatically adjust the height?
Hi there
Sorry about the late replies let set a constant height first to 650 via HTML and afterwards from js we get the content height and set it to the iframe 
$('#my-map').height($('.page-container').height());
Hi Ace,
Do you have a solution for error handling with input-group-addons in conjuction with the form validator? If I manually add the class ‘has-error’ in the css, the correct formatting is enabled. However, if I add that same class inside the form validator script
highlight: function (element) { // hightlight error inputs
$(element).closest('.form-group').addClass('has-error');
},
The class with add but the formatting is still off causing the ‘input-group-addon’ to stretch down. Similar to issue: http://stackoverflow.com/questions/21610787/twitter-bootstrap-3-input-add-on-with-validation-issue
Thanks!
Figured it out!
For anyone else needing this functionality:
$('.nested_validator').validate({
focusInvalid: false,
ignore: "",
highlight: function (element) { // hightlight error inputs
var parent = $(element).parent();
parent.addClass('error-control');
},
unhighlight: function (element) { // revert the change done by hightlight
var parent = $(element).parent();
parent.removeClass('error-control');
},
errorElement: 'span',
errorClass: 'help-block',
errorPlacement: function(error, element) {
if(element.parent('.input-group').length) {
error.insertAfter(element.parent());
} else {
error.insertAfter(element);
}
}
});
Thanks mcarlotta!
appreciate the knowledge among users
Is it possible to put some of the information in the admin panel onto the Front End? Such as DOW Jones, Weather and maybe a news article or something? That would be awesome!
Hi there
Extremely sorry that this comment was not attended, I do not know how we missed it, yes you can!
try copy the widget code and pasting it on the front end, you will need the required JS files too
let me know if you need any assist. Hope you had a great weekend
Hello nice theme by the way
but we whant to put more than 1 Simple Editor on the same page and the bar whit the option dont show.
Can you teel us how this is possible?
Best regards
Hi there Ok you want multiple instances have two text fields with different IDs say example1 and example2
and then in your JS
$('#example1').wysihtml5();
$('#example2').wysihtml5();
Hope you got it 
Hello, First i want to say that you done amazing work.
Question: Do you have page with Advance Editor and no only Simple Editor like you have now ? See Print Screen: https://qsnapnet.com/snaps/yax3o2tsd6phw7b
Hi there
Thank you very much!
currently no advance options available in the boostrap editor, we can do a bit of search and find a great plugin
.
If you do have any recommendation please do send a cross
We will start the work next week and i will be happy to get it before. I dont know any plugin but from the way you work and the style of the html i believe that you will do great work.
Update me when this will be ready 
Hi do you have any repository where we can see the new changes and keep update the bugs? I am interested in the Angular version as well. Thanks
Hi there
Sure we do have a private repo, if you can send me an email to support@revox.io will send you an invite 
I have sent you an email. Thanks
Hello Ace,
Can you please update the DataTables to 1.10.1 and theme the extensions like ColVis and Responsive? http://datatables.net/extensions/index
Thank You.
Hi there
Noted! for the next coming update
, also you can update it manually.
Simply update the files located in assets/plugins/jquery-datatables
Thank You, Yes we can update it manually, but the extensions like ColVis and Responsive isn’t themed for webarch.