Advertisement
GochiSiyan

style script code

Aug 12th, 2021
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. add_action('jnews_element_below_header', function () {
  2. ?>
  3. <script>
  4. (function(){
  5. let css = `.jeg_topbar .jeg_nav_item .jeg_menu .menu-item a { display:flex !important; align-items: center; height:${document.querySelector('.jeg_top_menu').closest('.item_wrap').offsetHeight}px; }`,
  6. head = document.head || document.getElementsByTagName('head')[0],
  7. style = document.createElement('style');
  8.  
  9. head.appendChild(style);
  10.  
  11. style.type = 'text/css';
  12. style.appendChild(document.createTextNode(css));
  13. })();
  14. </script>
  15. <?php
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement