Discussion on Limitless - Responsive Web Application Kit

Discussion on Limitless - Responsive Web Application Kit

By
Cart 13,880 sales
Well Documented

Kopyov supports this item

Supported

This author's response time can be up to 5 business days.

2227 comments found.

Hello, any updates coming? I do not see anything on github – at least for the landing pages as promised earlier. I shared a couple of links previously, it would help for the landing page + slide out login/tab on the landing page.

Menu Idea: Is there a chance to get a left menu and layout similar to this, http://bit.ly/29RPzeC

And can we get a mini-map on the page as we scroll?

Hello,

Yes, it’s coming. I am unable to work full time on update at the moment due to personal reasons, that’s why this update takes so much time. But this one is going to be the biggest update ever :-)

I don’t use Github for now, but will be using when update is released.

Menu – yes, next update will include layout with mmenu. Next update, not upcoming one.

Mini map – no idea what is it, can you please show some example?

Thanks

Hi,

I am building an ASP.NET MVC5 login page based on the login_advanced template and for some reason – facebook, twitter and google icons (icomoon) would not show up.

I am not getting a 404 in fact some of the icons work example; icon-steam, icon-key, icon-user, etc.

https://s32.postimg.org/h7nadkvut/screenshot_icon_issue.png

Hi,

Can i see your page online somehow? That’s strange, if some of the icons are visible, must be something wrong with class names. Would be great if you have that page online so i can take a quick look.

Thanks

I don’t have it online. But this is the HTML that I have.

I tested it in Chrome, IE11, and Edge and it works. Firefox (v47.0.1) however is broken.

https://s32.postimg.org/spni4171x/html.png

Hi,

This might be related to a well known CORS issue, here is another link. Both related to FontAwesome, but it’s a common FF bug. But that’s weird, i’ve tested in all latest FF versions on Browserstack and on MAC based workstations – i didn’t see any issues, all icons are displaying fine.

Thanks

Hi, You’ve developed a great product. Good job. I’m trying to update Bootstrap css to v3.3.6 but after that all pages and elements look different. Is there any easy way to do that?

Hi, You’ve developed a great product. Good job. I’m trying to update Bootstrap css to v3.3.6 but after that all pages and elements look different. Is there any easy way to do that?

Hi,

Thank you!

Limitless is already using Bootstrap v3.3.6, i’ve updated library version in the latest update :)

Thanks

hi We bought your theme. great work! well done! we are using it for our CRM system. This is the one we imoplemented:

http://demo.interface.club/limitless/layout_2/RTL/default/index.html

We would like to know if there are: 1. pop up tamplates / designes 2. we are lookimg for a “speedometer” elemnt for sales rep teams. is there anything that we can use in the tamplate? we didn’t find one

Best Roee Ashkenazi El – Habait LTD

Hi,

Thanks for kind words!

1. I am not sure if i understood you correctly. What kind of popups are you looking for – modals, alerts, notifications etc?

2. if you mean Gauge chart, there are 2 examples on

Thanks”>

Hello, can you give us an estimation for the next release?

Hello there,

According to my previous experience, i don’t want to give an exact date of release, because it’s always unpredictable :) Hopefully it’ll be out by the end of this month. When i have approximate date, i’ll make an announcement here in comments that new release will be out on {{date}}.

Thanks

thank you!

Remembering the state of the menu: I want to be able to have the next page display the menu either collapsed or expanded depending on how it was on the previous page. How would you do that?

Hi,

It really depends on your application and code base. Current setup works this way – if navigation list item has class active, it is expanded. If nav list item doesn’t have active class, it is collapsed. There is a small bit of jquery code, that adds class="active" to all menu levels, so you need to add that class only to the latest level, JS will do the rest (collapse/expand all levels). That bit of code is located in assets/js/core/app.js file. So basically you can manipulate that class depending on the page.

Another possible solution – using js-cookie JavaScript API to keep menu items expanded/collapsed/active/inactive.

Hope this helps. Let me know please if you have any other questions.

Thanks

Using jQuery steps wizard I have a few questions:

1) How can I change the class of a specific button? Throughout I am using bg-danger for cancel button but when I add cancel button it shows in the same colour as the next and finish/submit buttons – I can see how to change label but not the class.

2) When I use datepicker in a wizard at the bottom of a form some is hidden behind the form “footer” – I tried changing the zindex of the picker but it has not made any difference, is there another way to make sure the picker is above the wizard form and always visible? https://s32.postimg.org/nn5k8g4mt/image.png

Thanks

Hi,

1. Unfortunately Steps wizard doesn’t allow you to change button class name, because basically it doesn’t have any class name at all and all styling of the buttons are in steps.less file. You can try to add class name dynamically with jquery addClass() on wizard initialization or inside onInit() event.

2. You can try to remove overflow: hidden; in steps.less file (lines 18 and 29), so your content won’t be hidden if it overlaps wizard edges. By default overflow is hidden, this is needed if you want to use sliding transition, but with fadeIn/fadeOut this can be removed.

Thanks

Hey, a feature request, how about a page to display news? Thanks for the great theme.

Hey hey,

Yes, news page layout will be included in upcoming update.

Thanks

Is the news page layout included in 1.4?

hi

Yes, in the second part of 1.4 which will come out within next few weeks.

Thanks

Dear author(s),

I have made some progress using your theme for our admin =)

There is is a nested table details feature in data-tables https://datatables.net/examples/server_side/row_details.html

I looked in the examples – you have no example for this feature.

Maybe you have an example somewhere or can you include this into feature request list?

Many thanks, Alex

By the way – you may note that these fiddles use the old notation of dataTables. https://datatables.net/upgrade/1.10-convert

No worries, i’ll take an example from datatables.net as a base ;)

Thanks

Great product. Best Admin template available. Easy to use and so much great content!

For a future update, I was wondering if there are plans to add the following additional features/content:

- Image Panels: Carousels, Images with headers, footers, text and headers etc. Basically taking the panels in the Limitless template and adding greater support for image integration with a suite of variations?

Hello,

Yes, definitely – different mouseover interactions as well. In upcoming update i’ll add multiple portfolio layouts and in the next one i’ll add more options for images to display short info and different effects.

Thanks

Hi Eugene, i have problem with stacking context using basic table (in the flat panel) and bootstrap dropdowns. Please look at below screenshot. How can I fix this?

https://ibin.co/2nTfng6Pp87i.png

Thanks for your support

Oops, sorry, this is a common problem with datatables as well.

In this case you have 2 options:

1. Remove responsiveness – simply remove <div class="table-responsive"> container, this is a default Bootstrap markup and styles – same thing with horizontal scrollbar.

2. Use dropup class for the last 2-3 table rows instead of dropdown, or add it to .btn-group if you are using single button set. This class will reverse dropdown menu direction, so it will appear on top of the button. Or simply use a bit of jquery code for that, something like:

$('').find('tbody tr').slice(-3).find('.dropdown, .btn-gro.your-tableup').addClass('dropup');

Thanks

Thank you

Always welcome

Hello! I am using your template layout 5, and I am trying to make double navbar, and in first navbar only logo to be visible. Trying to make it in the center, but not sure how. I have written custom CSS class and tried adding it with navbar, navbar-boxed, navbar-header, navbar-brand. CSS is like:

.logo { left: 0 !important; right: 0 !important; text-align: center }

And I am lost, because it never gets into center. Maybe it’s built the way so it’s not possible to center logo? Thank you for such amazing template! It is my choice for my home project :)

Hi

Thanks for purchase.

Logo is placed inside 2 containers – navbar-header and navbar-brand, both have left floating. So you need to override the default styling of those containers:

.navbar-header {
    float: none;
    font-size: 0;
    text-align: center;
}

.navbar-brand {
    float: none;
    display: inline-block;
}

This is the simplest solution, if you don’t use any other components within navbar.

Thanks!

I was looking to put tool-tips in “Stacked to Multiple” chart. Is there some way I can do it. Currently I am using default code provided in the template

Any help would be highly appreicated.

Thanks

Hi,

Do you want to display 1 tooltip per bar (column) or separate tooltips for each block? There’s no existing solution for tooltips, as D3.js doesn’t have a built in tooltip funcitonality. But i’ll try to look into that for you.

Thanks

Hi I recently bought the limitless theme but I can’t get the WYSIWYG editor to work correctly. It has a lot of bugs. It can’t change colour, you can’t freely add code to it. It automatically removes and edits the originl HTML code etc. I need this to be fixed.

Hi,

Thanks for purchase.

Could you please clarify which text editor are you using? There are 4 available, but i’d suggest to use CKEditor as the most powerful and flexible.

The next one is Summernote – it’s in active development and does its job pretty nice.

WYSIHTML5 is very simple, but as far as i know not maintained anymore, so i’ll look for some better solution.

Let me know please.

Thanks

Hello, Congrats for your theme. Do you have a idea or date aprox to angular2 version?

Thx.

Hey hey,

Nope, not at the moment as i didn’t start working on it yet. Currently i’m wrapping up things for upcoming update, after that i’ll try to calculate approximate time needed for Angular version.

Thanks

Hello

Is posibly to do a search control in the menu very easy???

thanks,

Hmm, i am not sure if i understood you correctly – what do you mean “search in all menus and children”? :) Assuming you want to add a simple search input instead of that user image. If yes, on this page (second tab in sidebar), you can see a lot of different form components – the first one is search input. You just need to add a new sidebar category container and place a simple text input in there, something like:

<form action="#">
    <div class="has-feedback has-feedback-left">
        <input type="search" class="form-control" placeholder="Search">
        <div class="form-control-feedback">
            <i class="icon-search4 text-size-base text-muted" />
        </div>
    </div>
</form>

and depending on specific use case, you need to place this form inside

<div class="sidebar-category">
    <div class="category-content">
        // place form inside this container
    </div>
</div>

That should do the trick.

Thanks

hooo :( You did not understand me, but is my fault my english is so bad.

Our menu in the sidebar have many options, our clients like to search in the all options and not to click many times to find the module or the correct option.

this is a example in the current application in silverlight, we are making the new version in HTML with your theme http://screencast.com/t/dccoPtSDgQk

thanks, i hope you underestand me this time :)

Ahaa, no i see what you mean :) I have never seen such functionality, when you can search for menu items in main navigation separately from content.

Unfortunately there is no a working solution, since it’s a very specific feature and Limitless is a static html template without server side integration. So you can take that search field and navigation list as an output and add that search functionality. Basically as far as i understand you can use very basic filtering stuff, something like HideSeek.

Thanks

Hello,

This is going to seem like a strange question but we have tried everything and I was curious if you have seen this before.

We are using a webview in an app to load the limitless theme. We are using Angular JS because the menu that is created is dynamic.

Here is the breakdown of the current problems in the new Guest App:

Situation We built a website that is embedded in a webview in a mobile application, built with Appcelerator. The logic of the webapp was built with AngularJS. Our goal was to build a responsive site that can be used as both a website and in a mobile application

Problem Android – PDF’s don’t download and are unable to be viewed on the screen. One attempt to solve was using pdf.js so we could view it in the html, however, chrome and chromium do not work well with pdf.js and we were unsuccessful. Implementing pdf.js into angular also provided difficulties.

The solution we need would allow us to view a pdf in a canvas tag within the html. It must be visible on chrome, chromium, and safari.

OTHER PROBLEM: When we embedded the website in an app we were unable to open urls in a new tab.

We tried solving this by showing certain urls through an iframe on mobile devices. But some sites like facebook, have meta tags keep their site from being displayed.

The solution we need will allow us to either open these links outside of the mobile application and into a browser , or open these links inside of our html.

This should cover the oauth process for people logging in within the app itself as well. If you know how we could possibly solve this, it would be greatly appreciated.

Hello,

1. I’ve never worked with pdf.js, the only library i’ve worked with – snappy, but this one is for generating pdf files, not for viewing. So i can’t help you with it i’m afraid. Tried to find a solution on github, but the only valuable answer i found is this. Also found browser support for pdf.js – looks like Android browser lacks a few important features.

2. Pretty strange solution using iframes :) Did you try to use standard solutions for opening links in new tabs/windows?

HTML solution:
<a href="#" _target="blank">Link</a>
JS solution:
$('a').on('click', function() {
    $(this).attr('target', '_blank');
});

If you are using same code base for your desktop and mobile versions just by changing media queries, this should work just fine. But i’d need to see your code or working application first and check what could be wrong.

Thanks

Hi,

I saw the automation is very well documented for gulp but I am using webpack instead. I wonder if there is any doc where I can base on for making it work in webpack. Thanks

Miguel

Hi,

I’ve never worked with webpack, so i’m not sure if i can help you out, but you can take a look at less loader and style loader for webpack, and here is the info about loaders.

Hope this helps.

Thanks

I know this is a HTML template. Is it difficult to use it with angular 1.x? What do I have to do? Thanks.

Hi,

You can use Limitless HTML/CSS code as a base for your application, this would require quite a lot of work. I’d suggest to wait until Angular version of Limitless will be added later this summer.

Thanks

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey