Skip to:
Content
Pages
Categories
Search
Top
Bottom

i Want to change the Buddy Press Admin bar login as twitter look like


  • amuld007
    Participant

    @amuld007

    i am using Word press 3.8.1 and BuddyPress 1.9.2

    i am using genesis frame work with a child theme as magazine pro

    i Want to change the Buddy Press Admin bar login as twitter look like and i want to move that login and registor buttons to right side

    can anyone here can help me out please.

    Thanks in advance

Viewing 2 replies - 1 through 2 (of 2 total)

  • BuddyBoss
    Participant

    @buddyboss

    You can deregister the admin bar CSS and then load your own CSS.

    Something like this:

    function custom_remove_adminbar_inline_styles()
    {
    	if ( !is_admin() ) {
    
    		remove_action( 'wp_head', 'wp_admin_bar_header' );
    		remove_action( 'wp_head', '_admin_bar_bump_cb' );
                    wp_enqueue_style( 'wp-adminbar-custom', get_template_directory_uri().'/css/adminbar.css', false, '1.0', 'all' );
    
    	}
    }
    add_action( 'wp_head', 'custom_remove_adminbar_inline_styles', 9 );

    Then in your theme you would add /css/adminbar.css and make it look however you want. You can copy the adminbar from WordPress as a starting point.


    amuld007
    Participant

    @amuld007

    Thank u very much for ur reply . can u please tell me the sxtep by step process to do changes please because i am very new to word press and buddy press

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘i Want to change the Buddy Press Admin bar login as twitter look like’ is closed to new replies.
Skip to toolbar