skip to Main Content

I am Adding Css to the iframe in shopify . but its not working..
Here is my code .

<script>
 $('#twitter-widget-0').load(function() {
  var css = '<style type="text/css"> body {background: white};</style>';
  $('#twitter-widget-0').contents().find("head").append(css);
});
    </script>

2

Answers


  1. Use below code. If your DOM is proper.

    <script>
     $('#twitter-widget-0').load(function() {
      var css = '<style type="text/css"> body {background: white}</style>';
      $('#twitter-widget-0').contents().find("head").append(css);
    });
        </script>
    
    Login or Signup to reply.
  2. I got the Answer

      <script>$(document).ready(function(){$('#twitter-widget-0').load(function() {var css = '<style type="text/css"> body {background: white;}</style>';$('#twitter-widget-0').contents().find("head").append(css);}); });
    

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search