user3401791
user3401791

Reputation: 1

Browser not showing the changes made in CSS

I am using Netbeans for PHP development.

If I make any change to CSS, it doesn't show in browser.Every time I have to close the NetBeans and then restart it to see the changes I made.

How can I show CSS updates without restarting the IDE?

Upvotes: 0

Views: 1311

Answers (4)

Mehmet Eren Yener
Mehmet Eren Yener

Reputation: 2036

if you are using chrome press F12 then right click refresh button and select empty cache and hard reload

Upvotes: 0

KeizerBridge
KeizerBridge

Reputation: 2757

So it could be two things.
First, if you are on your localhost, check in your php.ini file if the OPCache is not activated. If its activated add ";" to comment. Careful, there is two php.ini file with MAMP WAMP XAMP, so check if it's the good one.

Second, check if you use chrome to disable the cache while using the dev tool. it can be done in the web devtools setting (could be the same with firefox).

May be it's another thing but try these two things.

Upvotes: 1

Nishant Solanki
Nishant Solanki

Reputation: 2128

Try reloading the page after removing cookies ... use ctrl+shift+delete to remove cookies from your browser.

Upvotes: 0

user3173207
user3173207

Reputation: 289

Try doing a hard refresh CTRL + F5.

Upvotes: 0

Related Questions