I am trying to learn how to create an area for my blog that is similar to the right hand side of the following website where it says NatGeo News Watch Blog. Here is the website: http://www.nationalgeographic.com/
By looking at the source code of the website, I selected the following part.
Now, I am trying to learn how to do the CSS.HTML Code:<div class0"rssReader"> <h3 class="title">NatGeo News Watch Blog"</h3> <div id="rss_natogeonewswatchblog" class="rss_results"> <ul class="bullets"> <li>...</li> <li>...</li> <li>...</li> <li>...</li> <li>...</li> <li>...</li> <li>...</li> </ul> </div> </div>
I like to be able to create something similar to the small yellow vertical bar just before the text that reads: NatGeo News Watch BlogCode:h3 { display: block; color: #333; font-size: 1.438em; font-weight: bold; margin-bottom; 15px; }
Any help?
Bookmarks