Advertisement
arie_cristianD

add custom style on block editor

May 7th, 2025
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. add_action(
  2.     'admin_print_styles',
  3.     function () {
  4.         ?>
  5.         <style type="text/css" id="customn-gutenberg-style">
  6.         li.wp-block{
  7.         margin-bottom: 0.75em !important;
  8.         line-height: 1.6 !important;
  9.         }
  10.         </style>
  11.         <?php
  12.     },
  13.     99
  14. );
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement