fauzanjeg

Change color burger menu and search icon in AMP Mode

Apr 12th, 2021 (edited)
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. /* Change color burger menu and search icon in AMP Mode */
  2. function add_custom_css_for_amp_mode() {
  3.     ?>
  4.         .amp-wp-header.dark button,
  5.         .amp-wp-header.dark .jeg_search_toggle {
  6.             color: white;
  7.         }
  8.     <?php
  9. }
  10. add_action( 'amp_post_template_css', 'add_custom_css_for_amp_mode' );
Add Comment
Please, Sign In to add comment