Wordpress Css Style does not load -
i using using wamp server , have put online. when access site desktop fine.
when open site mobile phone stylesheet not load. it's default wordpress installation no question of stylesheet error.
what can problem?
ok problem solved have removed ip address
have replaced url in wp_options table?
because url css wrong. taking local below wrong
http://127.0.0.1/design
apply following query desired changes:
update wp_options set option_value = replace (option_value , 'http://www.oldsite.com' , 'http://www.newsite.com') option_name = 'home' or option_name = 'siteurl'; update wp_posts set guid = replace (guid , 'http://www.oldsite.com' , 'http://www.newsite.com'); update wp_posts set post_content = replace (post_content , 'http://www.oldsite.com' , 'http://www.newsite.com'); update wp_postmeta set meta_value = replace (meta_value , 'http://www.oldsite.com' , 'http://www.newsite.com');
query taken here
Comments
Post a Comment