Changeset 24036
- Timestamp:
- 04/18/2013 09:33:45 PM (13 years ago)
- Location:
- trunk/wp-content/themes/twentythirteen
- Files:
-
- 2 edited
-
functions.php (modified) (2 diffs)
-
style.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentythirteen/functions.php
r24032 r24036 50 50 * @uses add_editor_style() To add a Visual Editor stylesheet. 51 51 * @uses add_theme_support() To add support for automatic feed links, post 52 * formats, a dmin bar, and post thumbnails.52 * formats, and post thumbnails. 53 53 * @uses register_nav_menu() To add support for a navigation menu. 54 54 * @uses set_post_thumbnail_size() To set a custom post thumbnail size. … … 90 90 add_theme_support( 'post-formats', array( 91 91 'aside', 'audio', 'chat', 'gallery', 'image', 'quote', 'status' 92 ) );93 94 /*95 * Custom callback to make it easier for our fixed navbar to coexist with96 * the WordPress toolbar. See `.wp-toolbar` in style.css.97 *98 * @see WP_Admin_Bar::initialize()99 */100 add_theme_support( 'admin-bar', array(101 'callback' => '__return_false'102 92 ) ); 103 93 -
trunk/wp-content/themes/twentythirteen/style.css
r23991 r24036 970 970 971 971 /* Fixed Navbar */ 972 .wp-toolbar {973 margin-top: 28px;974 }975 976 972 .navbar-fixed { 977 973 margin-top: 45px; … … 979 975 980 976 .wp-toolbar.navbar-fixed { 981 margin-top: 73px ;977 margin-top: 73px !important; 982 978 } 983 979
Note: See TracChangeset
for help on using the changeset viewer.