Reputation: 1511
I have WordPress Multi site installed and all the same sites are using one theme. I changed a css file of the main site hoping to change even all the other sites installed under the main site but nothing is changing. The main site is changing but the other sites are not changing How can I make the css apply to all other sites?
Upvotes: 1
Views: 160
Reputation: 10190
It doesn't make sense that one site would reflect the changes and others wouldn't since they are all using the same theme files.
If you are using a caching plugin, try clearing it in the WP admin panel (either in the plugin options, or most popular caching plugins simply have an option to clear the cache in the WP admin bar you get at the top of the page when browsing it logged in).
If that isn't the problem, clear your browser's cache and try hard refreshing (Ctrl+F5) a few times on the sites where the theme css is not updating correctly.
Upvotes: 2
Reputation: 126
Add IMPORTANT property with your change like if you are going to change the height
then use like this
height:10px!important;
may be this works for you...
Upvotes: 0