cshtml and css file changes not showing on website! help asap!!

4 months ago
Hello, I have a new footer and styling which I removed the old footer cshtml and added the new and css. But it doesn't change on the live site, it's still the old footer even tho that code is deleted.
How can I make sure it shows on the live site? the server host doesn't use cache, and when I in admin changed color of for example a button it showed directly.
The website is https://www.staging.globaljewelryauction.com/
The new footer looks like this:


I changed the footer here: >Views > Shared > Components >  Footer then default.cshtml

I also set this cache settings to 0 in admin

Is there something I'm missing?


@model FooterModel

@using Nop.Core
@using Nop.Core.Domain.Tax

@inject IWorkContext workContext

    <footer class="footer-wrapper custom-footer">
        <div class="gja-logo-wrapper-mobile">
            <div class="gja-logo"></div>  
        </div>
        <div class="footer-flex">
            <div class="flex-content gja-logo-wrapper-desktop">
                <div class="gja-logo"></div>  
            </div>
            <div class="flex-content">
                <h3>Följ oss</h3>
                <a href="#">Jobs</a>
                <a href="#">Brand Assets</a>
                <a href="#">Investor Relations</a>
                <a href="#">Terms of Service</a>
                <a href="#">Terms of Service</a>
            </div>
            <div class="flex-content klarna-wrapper-mobile">
                <div class="klarna-logo-mobile"></div>  
            </div>
            <div class="flex-content">
                <h3>Features</h3>
                <a href="#">Jobs</a>
                <a href="#">Brand Assets</a>
                <a href="#">Investor Relations</a>
                <a href="#">Terms of Service</a>
                <a href="#">Terms of Service</a>
            </div>
            <div class="flex-content">
                <h3>Resources</h3>
                <a href="#">Guides</a>
                <a href="#">Research</a>
                <a href="#">Experts</a>
                <a href="#">Agencies</a>
                <a href="#">Agencies</a>
            </div>
            <div class="flex-content">
                <h3>Resources</h3>
                <a href="#">Guides</a>
                <a href="#">Research</a>
                <a href="#">Experts</a>
                <a href="#">Agencies</a>
                <a href="#">Agencies</a>
            </div>
            <div class="flex-content klarna-wrapper-desktop">
                <div class="klarna-logo-desktop"></div>  
            </div>
        </div>
    </footer>
4 months ago
Are you using a Third Party theme ?
If so you need to edit the file in the Theme folder location similar to above
4 months ago
Ah yes thank you so much! worked!