Changes to my template are not made after editing the css.min with bootstrap [duplicated]

0

I would like you to help me with a little problem that I have, it is good that I download a template with html5 that uses bootstrap , but my problem is that when editing the file css.min to modify some details, the change is made I observe it in the browser at the moment of saving, but I close the browser I load the page that modifies it again but it still does not make the changes. I am working locally. with xampp text editor sublime text. I hope I have been a little more specific. Maybe someone who can help me with my problem what would be the solution. Thank you. If I'm doing things wrong, help me, I'm starting colleagues.

    
asked by darkjc 24.07.2017 в 07:35
source

3 answers

1

From what you say, and without further information, I think two things may be happening.

  • The first is that you are modifying the css.min on the console of developer of the browser itself and therefore not store the changes in the original file, this would explain that when reloading the page the changes will disappear.

  • The second cause that occurs to me is that you are modifying the file original of styles correctly, but let it be the browser itself the one that caches the style sheet that loads.

answered by 24.07.2017 в 08:39
0

Check that the same style sheet you are editing is linked to in the code. Bootstrap usually come bootstrap.css and bootstrap.min.css (minimized)

    
answered by 24.07.2017 в 09:41
0

I have suffered a lot from this kind of things with the browser cache. It does strange things like that, even if you press refresh it does not refresh the files.

It is best to make sure you have already been told that you are really loading the correct stylesheet, activate the Google Chrome developer mode and turn off the cache ...

I attached you capture ..

    
answered by 24.07.2017 в 10:49