There are a few ways to approach this. The easiest is just to remove:
Code:
visibility: hidden;
inside the .css file. Or instead of the above, give the content you want to be shown by default an unique ID attribute (ie: the very first one):
Code:
<div class="glidecontent" id="firstcontent">
<img src="http://i11.tinypic.com/8efzmmf.jpg" style="float: left; padding: 5px" />
British Columbia is the westernmost of Canada's provinces and is famed for its natural beauty. It's capital is Victoria, located at the southeastern tip of Vancouver Island. BC's most populous city is Vancouver, located in southwest corner of the BC mainland called the Lower Mainland.
</div>
And inside the .css file, add the following rule:
Code:
#firstcontent{
visibility: visible;
}
Bookmarks