how to delete margin-top: 32px !important from twenty twelve

前端 未结 12 1037
情深已故
情深已故 2021-01-31 20:52

I want to remove the margin-top property from twenty twelve theme. This is the default theme provided by wordpress. The sample of the code what I found with the help of firebug.

12条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-31 21:25

    Add the following function to your functions.php file

    function my_function_admin_bar(){ return false; }
    add_filter( 'show_admin_bar' , 'my_function_admin_bar');
    

提交回复
热议问题