Tag: WordPress
-
Easy Admin Color Schemes Causes Transparent Sub Menus Since Upgrade to WordPress 3.5
I saw someone upgrade their WordPress install to 3.5 and run into an issue where the background on menu sub menus would be transparent. Turns out the fix was rather simple. Go to Admin Color Schemes -> All Admin Color Schemes. Edit under the scheme of your choice, and add the following CSS in an appropriate…
-
WordPress URL change directly in MySQL
If you need to change the URL for a WordPress blog, and only have access via MySQL, you can use the following command, once you have selected the database. Keep in mind I am assuming the wp_ table prefix. UPDATE wp_options SET option_value=’http://www.example.com/’ WHERE option_name=’siteurl’ or option_name=’home’;