GochiSiyan

max width resolution

Jul 5th, 2021 (edited)
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. add_action('jnews_single_post_before_content',function () {
  2. ?>
  3. <script>
  4. (function (){
  5. featured = document.querySelector('.jeg_featured.featured_image img');
  6. parent_node = featured.closest('.jeg_featured');
  7. parent_node.style.maxWidth = `${featured.getAttribute('width')}px`;
  8. parent_node.style.marginLeft = 'auto';
  9. parent_node.style.marginRight = 'auto';
  10. })();
  11. </script>
  12. <?php
  13. });
Add Comment
Please, Sign In to add comment