Discussion on Cork - Bootstrap 5 Admin & Laravel Dashboard Template

Discussion on Cork - Bootstrap 5 Admin & Laravel Dashboard Template

Cart 7,393 sales
Well Documented

designreset supports this item

Supported

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

1060 comments found.

hello, i have some problem here. i have a table, that have many

, so it get long sideways. the problem is, i cant see the scrollbar to slide sideways, so i cant see all the table data’s. but when i tried zoom the web page until 130%, the scrollbar appear. can you help me? thanks

Dear triwanto123,

Thank you for contacting Design Reset.

Try the following.

1. Check for .table-responsive class.

2. Check the following link : https://stackoverflow.com/questions/19870743/horizontal-scroll-table-in-bootstrap-css

Kindest Regards,

Design Reset Team

Hi, I’m couldn’t edit widgets. For example, I’m trying to edit “Sales by Category” widgets. But i couldnt find thats code in anywhere. How can i create a widgets like that with my own data.

Dear rateltech,

Follow the steps mentioned below.

1. Open the Dashboard HTML file.

2. Find the widget inside the HTML file.

3. After finding the widget find the div which contains the chart in your case it is #chart-2

4. Now open the dashboard js file and find the id ( #chart-2 ).

5. Edit the parameters as per your requirement.

Hope this helps :)

Kindest Regards,

Design Reset Team

I am trying to include images hosted elsewhere accessible on the web but I get “Refused to load the image ‘URL’ because it violates the following Content Security Policy directive: “img-src ‘self’ data:”. I have never heard of this issue before and googling didn’t make it better. May it be an issue with express?

Dear aethez,

Thank you for contacting Design Reset.

Check the link mentioned below.

- https://stackoverflow.com/questions/40360109/content-security-policy-img-src-self-data

Kindest Regards,

Design Reset Team

Didn’t help much, I am trying to include images from this url

- https://steamcdn-a.akamaihd.net

I then tried adding this to my head - <meta http-equiv=”Content-Security-Policy” content=”img-src ‘self’ steamcdn-a.akamaihd.net;”>

To no avail.

Dear aethez,

Are you working on localhost or a domain.

If you are working on localhost then that would the thread because the site from where the images are fetched is HTTPS and localhost itself contains HTTP. Try to upload your file online.

Or if the site is already hosted on a domain, kindly provide us the link.

Kindest Regards,

Design Reset Team

Hi, I new to license on themeforest here and the description here https://themeforest.net/licenses/standard and https://themeforest.net/licenses/faq made me concuse, I also read the comment but still don’t get it.

I want to buy your theme and use it for admin panel my online store that sell goods either psychic or electronic like voucher code, What license should I choose ?

Thank you.

Hello iryudith,

Thank you for contacting Design Reset.

In your case you can buy standard license.

Kindest Regards,

Design Reset Team

Hello, recently i bought your Cork theme. are you planning to update theme for “Web App Dark” version?

Hello macroplex,

Thank you for contacting Design Reset.

Currently, we have no plans for a Web App Dark version.

Kindest Regards,

Design Reset Team

Hi ? I have bought the Cork theme. I have installed the laravel version of it. In the documentation, it is clearly mentioned that to upload database file in database but no database file present in the theme folder anywhere. So, how can I get the database file?

Dear hafiznaser,

Thank you for contacting Design Reset.

We have provided the sql file with cork-admin name.

It’s inside your Cork/Laravel/

If the file still does not exist kindly, let us know and follow the link mentioned below.

Follow the link mentioned below

- https://pastebin.com/HmvkQxdX

Kindest Regards,

Design Reset Team

Hi, I was reviewing this to purchase but reviewing the html I see that you have page level css. Does the theme have a global single css so that I do not have to figure out each element and apply css for each element? I just want to apply the class and the page should be stylized without needing to mess around with the css.

Dear abhinavk,

Yes, we have page level css because it would be easy to use as it decrease the file load time and user can manually things easily.

Kindest Regards,

Design Reset Team

Hello!

I have a error in,

Downloading binary from github in node-sass donwload automatic

404 not found

Dear wssistec,

Can you share us a screenshot and some more details such as

1. Which Framework ( HTML or Laravel )

2. Which Demo?

Kindest Regards,

Design Reset Team

I made it work, thanks

Hello!

Hello wssistec,

Thank you for contacting Design Reset. How can we help you today?

Kindest Regards,

Design Reset Team

Hello! I’ve purchased your dashboard But apparently there’s a difference between the downloaded version and the online demo. Especially with regards to the button shadows.

At this URL: https://designreset.com/cork/ltr/demo8/ui_buttons.html We can see that there’s a little shadow/glow under the buttons.

But the same file (/ltr/demo8/ui_buttons.html) on the downloaded dashboard, has no shadows/glow. I checked in both computers, and the files. The box-shadow property isn’t really there.

Does it have some updates?

Thank you a lot!

Dear Aikron,

Thank you for your feedback.

We will fix that issue in upcoming update.

Kindest Regards,

Design Reset Team

Hi.

I would like to use the “input group” (https://designreset.com/cork/ltr/demo7/form_input_group_basic.html) as follows: the div “input-group-prepend” should hold the label of that input.

It’s a vertical form with many pairs of label/input. The labels (the div “input-group-prepend”) should all have the same width, irrespective of the number of chars in the string).

How can I achieve that? Thanks.

Dear Neoos

Thank you for contacting Design Reset

If your input fields each row have two columns.

Then use


<div class="row">

    <div class="col-md-6">

        <div class="input-group mb-4">
            <div class="input-group-prepend">
                <span class="input-group-text" id="basic-addon5">@</span>
            </div>
            <input type="text" class="form-control" placeholder="Username" aria-label="Username">
        </div>

    </div>

    <div class="col-md-6">

        <div class="input-group mb-4">
            <div class="input-group-prepend">
                <span class="input-group-text" id="basic-addon5">@</span>
            </div>
            <input type="text" class="form-control" placeholder="Username" aria-label="Username">
        </div>

    </div>

</div>

But, If your input fields each row have one columns.

then change col-md-6 to col-md-12


<div class="row">

    <div class="col-md-12">

        <div class="input-group mb-4">
            <div class="input-group-prepend">
                <span class="input-group-text" id="basic-addon5">@</span>
            </div>
            <input type="text" class="form-control" placeholder="Username" aria-label="Username">
        </div>

    </div>

    <div class="col-md-12">

        <div class="input-group mb-4">
            <div class="input-group-prepend">
                <span class="input-group-text" id="basic-addon5">@</span>
            </div>
            <input type="text" class="form-control" placeholder="Username" aria-label="Username">
        </div>

    </div>

</div>

Hope this helps :)

Kindest Regards,

Design Reset Team

Thanks, but here’s an example so it’s clearer what I mean: https://neoos.ch/x/example.png

In the upper part, your provided code is used. Below is what I would like to achieve. But the labels (the gray part, class “input-group-prepend”) need all have the same width.

Dear Neoos,

Yes, use grid col-md-6 for top one and col-md-12 for all others.

Kindest Regards,

Design Reset Team

In Datatable, I have implemented column searching. I don’t want the top most search field. How can I disable it? I tried adding “filter”: false option but it disables the column searching too.

Dear deepak13,

Thank you for contacting Design Reset.

Try to set “bFilter”: false.

Hope this helps :)

Kindest Regards,

Design Reset Team

I cant drag drop app_scrumboard

1 – https://i.hizliresim.com/W0xrH1.png

2 – Bootstrap Demo4

I added <script src=”plugins/jquery-ui/jquery-ui.min.js”></script> and I fixed it

sir,

I am happy to use my admin panel design for cork admin theme.

but I could not find ck editor. you did quill and markeditor

do you do / update for this theme ckeditor or html5 editor those are easy and more features.

expecting your reply sir.

thank you bhaskar

Hello Bhaskar,

Thank you for contacting Design Reset.

There are currently no plans to integrate ckeditor in future updates.

Kindest Regards,

Design Reset Team

Hello, i asking where do i find the Login Model becuase i have diferent userstable-name and need to adapt them? thx

Dear siteworks,

The login table could be edited inside database/migrate.

and

The default login is given inside sql.

Follow the link mentioned below.

- https://laraveldaily.com/how-to-rename-users-db-table-in-default-laravel-auth/

Hope this helps :)

Kindest Regards,

Design Reset Team

Thank you very much! Solved!

You are most Welcome :)

Hi mate,

Nice job here, I would like to purchase this theme and use it on one of my new upcoming scripts, apply PHP to it etc.

Is this allowed by your end? If so, what are the costs?

Note: Theme files won’t be attached in the script, we will modify them to PHP so it will only be usable for our script.

Thanks, Bests,

Hello DoughouzForest,

Thank you for contacting Design Reset.

You have a great portfolio :)

In order to purchase our theme and create a product intended for sale, you have to buy extended license.

for more info, please contact us at; info@designreset.com

Kindest Regards,

Design Reset Team

Dear Sir, I made a mistake in the purchasing order. Please I need to change my license from SISDEF to SURVIDEON.

I just changed my settings some minutes ago after purchase was emitted. This happened due to one year ago my previous company was SISDEF and now the purchase order is put in place by SURVIDEON. Thanks in advance Sincerely Gustavo

Hello Gustavo,

Thank you for contacting Design Reset.

In order to change license, please contact envato via link mentioned below;

- https://help.market.envato.com/hc/en-us/articles/202821620-Contact-Us

Kindest Regards,

Design Reset Team

With the greatest of respect, this template seems way underpriced, the quality of workmanship, look, feel & documentation !!! (something lacking from many devs these days). This is truly exceptional template at first glance :P I really wish i came across cork months ago.. Really looking forward to giving this 5 stars. Dont know if it was your decision, or out of your control, but i have worked with a couple admin templates that dont look half as good, and with weak documentation selling for 3 times much. Best of luck to you, and i look forward to your future products. .BTW where can i buy laravel version ?

Hello webpixie,

Thank you for contacting Design Reset and appreciating our work.

Laravel version is included with the package, you can check online demo of laravel version below;

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

Kindest Regards,

Design Reset Team

Good Day,

Are the css files across the different ltr demos the same?

You are most Welcome :)

scrollspyNav.js:29 Uncaught TypeError: Cannot read property 'style' of undefined at getContainerMargin (scrollspyNav.js:29)

I’m getting this error

Dear traceyjas,

It’s something related to main-container style which is set dynamically.

Can you share the details such as which demo your are using also a screenshot.

Kindest Regards,

Design Reset Team

Hello, I wanted to know how can I change the position of individual column search fields in the datatable. I want to show the individual column search fields on top of table instead of bottom (which is by default). I tried to move the search inputs as another row in <thead> (originally in <tfoot>), but the searching doesn’t works when I do so.

Thank you.

Dear deepak13,

Try using datatable DOM

- https://datatables.net/reference/option/dom

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