Touch the firehose of ds106, the most recent flow of content from all of the blogs syndicated into ds106. As of right now, there have been 92524 posts brought in here going back to December 2010. If you want to be part of the flow, first learn more about ds106. Then, if you are truly ready and up to the task of creating web art, sign up and start doing it.

ATTENTION Web Storytellers: Using Twitter?

Posted by
|

If you’ve been working with a Twitter page to complete the DS106 web storytelling assignment, you’ve probably run into a problem. Basically, Twitter has an interface feature that hides tweets until you scroll down to the bottom of the page. For a variety of reasons, this feature doesn’t work properly when you save a local copy of the page. After a little hunting around, I’ve found a “fix.” You’re going to need to copy and paste the following small code snippet and paste it into your coded page in your text editor. You’ll need to place it somewhere between the opening and closing head tags: <head>. . .</head>

Here’s the snippet you’ll need:

<style>
#front-container, #page-container {
overflow: visible !important;
}
</style>

What this does is overwrite a style that is in the original Twitter stylesheet, forcing the overflow of the main page container to become visible (instead of hidden as it is by default. That “!important” in this snippet of code is a way to tell the browser that this style should trump the default one.

Try that out and then upload your HTML file to your Web server if it works. If you’re still having difficulty, leave a comment describing what you did and what happened.

BTW, a few people have also been running into encoding problems when they’re working on these files. Here are some encoding tips:

  • If you’re working in basic Notepad, when you save the file, you’ll see an option to choose an encoding for your file. Make sure you chose UTF-8.
  • If you’re working in Notepad++, there is an Encoding menu. choose “UTF-8 without BOM.”
  • If you’re working in TextWrangler (on the Mac), go to Edit>Document Options. In the Encoding drop-down, choose “Unicode (UTF-8, No BOM)”

Hope this helps everyone!

 

Add a comment

ds106 in[SPIRE]