Discussion on Equation - Bootsrap 5 Admin Dashboard Template

Discussion on Equation - Bootsrap 5 Admin Dashboard Template

Cart 536 sales
Well Documented

designreset supports this item

Supported

This author's response time can be up to 1 business day.

68 comments found.

I want to know Is this module compatible with OpenCat And I bought a Multi-vendor brochure for Webkul Software Is it possible that you faced with this platform Or there is a Multi-vendor scheduler compatible with cork admin template , please tell me

Who does this service

Hello Choukiba,

You have to code it yourself.

Kindest Regards, Design Reset Team

I do not know how to add it Can you give me a video how to add it or show me who can add it to me

Hello,

Why don’t you answer me to help me in the installation process?

I’ve taken extended support for 1 year and I don’t get an email response…

Hello Anunciese_es,

Thank you for contacting us.

We are really sorry that we missed your mail. It somehow landed in junk folder.

Just need to confirm that the email we received is from ;- Atentamente M.Cordero

Kindest Regards,

Design Reset Team

Yes i’m Servicios Profesionales M.Cordero serviciosprofesionalesmcordero@gmail.com

Thks

Hello Anunciese_es,

Thank you for clarifying this.

First of all you don’t need Node.js to upload files to FTP. Node is only required if you want to use sass.

Equation comes with HTML, CSS and JS files which you can directly upload to your hosting.

Hope this Helps:)

If you have further query, please don’t hesitate to ask.

Kindest Regards,

Design Reset Team

Helo… how to use purchase code in this theme

Hello mail_tl,

Thank you for contacting Design Reset.

Purchase code is the reference number of the product you have purchased.

Kindest Regards,

Design Reset Team

I am planning to buy this template. I am planning to add my backend and use it as a saas model to offer it to various customers. Can I do it with you reselling this template to anyone else?

Hello Myopenledger1212,

Thank you for contacting Design Reset.

Please check your mail. We have already replied.

Kindest Regards,

Design Reset Team

Pls can you add RTL support? I really like the design but I need the RTL version!

Hello Rabeeaali,

Thank you for contacting Design Reset.

We will try to include RTL support in future.

Kindest Regards,

Design Reset Team

Thanks I’m waiting …

Take care :)

How can I increase scroolbar speed

Dear halildolas21,

To increase or decrease the speed use scrollInertia

scrollInertia: integer

Kindest Regards,

Design Reset Team

You are most Welcome :)

Good night! I bought your themes because I thought it was very good. I work with PHP and I’m not very good at HTML, CSS and JS. On the registration screen, when you click the registration button, if the fields are not filled out and the email does not have its own characters, the message “Fill in this field” or “Include an @ in the email field …” will be displayed . I want to control passwords, “The password must be more than 8 characters and less than 32 characters”. Can you tell me where I make this change? Thank you for your attention.

Regards,

Júnia

Dear juniams,

Thank you for contacting Design Reset.

Kindly refer to to following links;

If input field is empty.

1) https://stackoverflow.com/questions/3937513/javascript-validation-for-empty-input-field

For email validation

2) https://stackoverflow.com/questions/46155/how-to-validate-an-email-address-in-javascript

3) For Password validation

https://stackoverflow.com/questions/21172991/how-to-set-min-and-max-character-length-in-a-textbox-using-javascript

Kindest Regards,

Design Reset Team

Thank you so much my dear!!! Sorry about my stupidity. Thanks Thanks Thanks!!!!

Hello juniams,

You are most Welcome :)

If you face any issue in future, please don’t hesitate to ask.

Kindest Regards,

Design Reset Team

Is it a WordPress template or HTML?

This is a HTML admin Template.

Kindest Regards,

Design Reset Team

Hello, i would like purchase this theme. But i can’t see any layout without fixed sidebar and menu. Can you provide a layout without them?

Also, it seems there ins’t a default bootstrap table.

Hello Ventoh,

Thank you for contacting Design Reset.

For fixed sidebar layout, you can check our new admin template CORK;

https://designreset.com/cork-admin/

However if, you still want to use Equation as your project

Then, here is the code to make fixed sidebar

.sidebar-theme { background: #181722; }

position: fixed;         <-- New code
z-index: 1090;         <-- New code

content {

width: 50%; flex-grow: 8; margin-top: 59px; margin-bottom: 67px;

margin-left: 255px; <—-New code

}

sidebar ul.menu-categories {

padding-right: 10px; padding-left: 10px; padding-top: 10px;

height: calc(100vh – 74px); <—-New code

}

And at last apply the mCustom scrollbar in app for sidebar scroll

$(“selector”).mCustomScrollbar({theme:”minimal”,scrollInertia:1e3})

Kindest Regards, Design Reset Team

I love this theme and I think it’s very well created!

I do not use SASS style at all and I do not even uploaded the sass folder, but some content are still search for scss files and i do not get it :( And further i can not even find those files in the original package but they overwrite a few link colors.

Screenshot:

https://www.picture-reflex.eu/uploads/20200207/86ffef80c8ca6421d76c84d24880c785b6f83522.jpg

For example: _reboot.scss and _lists.scss or _text-emphasis.scss

Regards Thorsten

Dear Thorsten,

First of all, thanks for purchasing the theme.

The file you are seeing in inspect are actually bootstrap scss files ( _reboot.scss and _lists.scss or _text-emphasis.scss ) so you do not have to worry about it.

Kindest Regards, Design Reset Team

Alright, thank you very much. Again very good work :)

Thank you :)

Also, please take some time to rate us.

Kindest Regards, DesignReset Team

hello. could you please give me an example of validate editor? https://designreset.com/preview-equation/demo2-light/editor_tinymce.html

Hello ni0ni0s

Here is the answer of your question.

If we Take the select2 Basic ( First example ) from the link i.e. https://designreset.com/preview-equation/demo2-light/form_select2.html ( that you have mentioned ).

To add the .form-control and .form-control-sm classes to select2 you just have to add them in HTML. ( If you have the html code then go through it )

It’s original html is as you can see .form-control is already added.

<select class=”form-control basic”> <option selected=”selected”>orange</option> <option>white</option> <option>purple</option> </select>

just add .form-control-sm to it ( like this )

<select class=”form-control form-control-sm basic”> <option selected=”selected”>orange</option> <option>white</option> <option>purple</option> </select>

That’s all.

Do let us know, if you need further help from our side.

Kindest Regards, Design Reset Team

no this is not the solution. nothing happen when i add form-control-sm. pls try it and see

Hello ni0ni0s

Thank you for contacting Design Reset. We apologize for the delay. Here is the answer of your question. We checked it twice and it is working fine now.

//JS

var ss = $(”.basic”).select2({ tags: true });

ss.data(‘select2’).$container.addClass(“form-control-sm”)

//Additional CSS

<style> .select2.select2-container.form-control-sm { padding: 7px 24px; font-size: 13px; height: auto; } .select2-container-default .select2-selection-single .select2-selection__arrow { height: 26px; position: absolute; top: 14px; right: 29px; width: 20px; } </style>

For More info : https://stackoverflow.com/questions/30789158/how-to-add-class-to-select2-element-in-v4-0

Kindest Regards, Design Reset Team

Hello!

Need fix scrolling and footer on small pages. For example to view this page https://designreset.com/preview-equation/demo3/pages_blank_page.html On page not see footer. Need scroll at end for see it.

Thank you for contacting DesignReset.

Try this to fix it;

change (inside the main.css) min-height of .main-container from 100vh to calc(100vh – 53px);

Example:

// Old Code

.main-container { min-height: 100vh; }

/*
    other code
/

// New Code

.main-container { min-height: calc(100vh – 53px); }

/
    other code
*/

This issue will be fixed in the new update.

Kindest Regards, DesignReset Team

Hello,

thanks for such a nice work, very usefull,

is there is any template (using include file or other templating language) to allow us to quickly reproduce page, reusing already done tree, without having to dig tons of code ?

thanks for your attention and have a pleasant day birnou

Hello Birnou,

Thank you for contacting DesignReset.

As of now, there is no bare-bone structure for starting a project. Yes you have to exclude or remove the unnecessary code which is properly commented for the ease of user.

We understand your need and in future update we will include a basic starter page with different variations. Thanks for your feedback.

If you have any further query, don’t hesitate to ask.

Kindest Regards, DesignReset Team

hello DesignReset Team,

First of all, thank you for your understanding and your real involvement in support. it is very comforting to work with your team. thank you.

thank you for the term bare-bone which I didn’t know and which is totally explicit for the request.

since you propose to integrate it in future versions, I think it would be better to outsource (in the form of include or shtml) all the content of each structure (header, footer, sidebar…) so that not only the pages (startup blank) can be retrieved, but also the whole tree structure, I think in particular of the message page, notification, charts, maps…. etc…

at least that’s what I did as soon as I started using the entire template in production.

thanks again for your attention and have a pleasant day birnou

Hello Birnou,

Thank you for contacting DesignReset.

We will be more than happy to work with you.

Please contact us at; info@designreset.com

Kindest Regards, DesignReset Team

How easy is to style DataTables items with the theme? Any information or documentation that you could share?

Thanks!

We have styled DataTables items with SCSS. You can find the relevant code in the purchased product. If you need any assistance, we will be more than happy to assist you.

Kindest Regards, Design Reset Team

the css for the sidebar menu in demo3-dark, is not correctly generated from gulp watch.

here is a screenshoot: https://prnt.sc/nmvuko

in the red box you can see that the menu items have a dark color matching the background, and there for are not visiable

Thank you for you Query.

We will get back to you with the resolution asap.

Kindest Regards, Design Reset Team

Hello Ahmeddabak,

Issue with demo3-dark is fixed.

Kindest Regards, Design Reset Team

Hello, I love your template, however, I could not find any navigation (top) menus. Do you have them? Thx

Hello JOTSYS,

Thank you for your Query. We apologize for delay.

Our Demo2 is Horizontal(Top) menu with Dark and Light versions.

Kindest Regards, DesignReset Team.

Hello sir, How can i create a form with a checkbox at the line with an input text? Thanks

pls could you give me an example?

Hello ni0ni0s,

Thank you for contacting DesignReset.

Please click on the link below to create an inline form with checkbox;

https://getbootstrap.com/docs/4.3/components/forms/#inline-forms

Kindest Regards, DesignReset Team

Hi I’m using firefox and the nested draggable doesn’t work. I don’t see any errors in console either – https://designreset.com/preview-equation/default-light/ui_nestable_list.html

Hello ckwebserver,

Thank you for contacting DesignReset.

I had checked the link provided above and the draggable functionality works fine on firefox.

Please make sure you are using an updated version of the browser.

Kindest Regards, DesignReset Team

is there any documentation for the template? thanks

Thanks for contacting us.

Documentation link; https://designreset.com/preview-equation/documentation/

hello. how can i make sidebar fixed? thanks

Hello ni0ni0s,

Thank you for contacting us.

Please click on the detailed resource link below. It will help you make your sidebar fixed.

http://txt.do/15g7q

Also, if you face any issue, don’t hesitate to ask.

Kindest Regards, Design Reset Team.

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