I just finished up Recover a Mailbox in Exchange 2010 and noticed that my "preformatted" style wasn't wrapping. Here's what I had in my style sheet for <pre> pre { background: #eee; border: 1px solid #ddd; padding: 10px; margin: 40px 10px; } I didn't have anything to let the preformatted text know how to react once it reached the end of the line. I added this and it worked: pre { background: #eee; border: 1px solid #ddd; padding: 10px; margin: 10px 40px; … [Read more...] about WordPress: Preformatted style not wrapping
wp-admin
Menu option not showing up in WordPress
If you're creating a new theme you may immediately notice that menu options aren't available in your wp-admin navigation. This is because you haven't told your new theme that you'd like to begin using menus. In order to register menus that you'd like to work with, add the following to your functions.php file in your theme folder. If you don't have a functions.php file yet, create one and add this: function register_my_menus() { register_nav_menus( array( 'header-menu' => __( 'Header … [Read more...] about Menu option not showing up in WordPress
Recent Activity