locked
Overwriting CSS 3.3.7 over 4.1.0 RRS feed

  • Question

  • User559435292 posted

    Hi,

    I was using CSS 3.3.7 version to my mvc 5 razor application. I have updated it to 4.1.0 version through NuGet package manager but all my Menus and Style are broken.

    Now, I want my CSS 3.3.7 back to my application because, I don't have time update all my style according to version 4.1.0. Do you have any idea how I can revert it back?

    Thanks.

    Tuesday, May 8, 2018 7:00 AM

Answers

  • User347430248 posted

    Hi Pointtoshare,

    Looks like you are talking about Bootstrap CSS 3.3.7 and Bootstrap CSS 4.1.0

    If yes, Then you can remove Bootstrap CSS 4.1.0 by following the steps below.

    1. In Solution Explorer, right-click either References or the desired project, and select Manage NuGet Packages....

    2. Select the Installed tab.

    3. Select the package to uninstall (using search to filter the list if necessary) and select Uninstall.

    Reference:

    NuGet Package Manager UI

    Then you can install the specific version using command below.

    Install-Package bootstrap -Version 3.3.7

    You can also download the specific version from link below.

    Bootstrap CSS

    Regards

    Deepak

    • Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
    Wednesday, May 9, 2018 3:08 AM