Checking the code on the knoxvilledailysun.com page, I see that the
suggested CSS rule has been added, but it is erroneously placed within
a script block.  Please edit as follows:

Enclose the CSS rule in a style block:

  <style type="text/css">
    #feed-control{
      width: 300px;
      overflow: hidden;
    }
  </style>

The style block should NOT be enclosed within the preceding script
block.  That script block's closing </script> tag should be placed
ABOVE the style block.

  ...
  </script>
  <style type="text/css">
  ...

-- omr

-- 
You received this message because you are subscribed to the Google Groups 
"Google AJAX APIs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-ajax-search-api?hl=en.

Reply via email to