. These items will appear in your right-hand navigation column.
#To add things like the calendar, archive lists, libsyn player, your blog entries, and other pre-built template [[Blog_modules|modules]], you only need to type
- which will be rendered as the corresponding module. For example,
will display a calendar where the days are linked to posts you created on that day.
This is just a basic introduction into using HTML in your page. You may feel quite intimidated by all the stylesheet tags in the first half of your code. These are used to establish that "LibSyn" look. I decided not to mess around with these at all, since i would be in way over my head, HTML-wise.
But I have found it quite easy to use basic HTML code, particularly in my navigation column. (Since blog entries are automatically generated, I don't ever mess around with the
section.)
PS. Here's my ultimate cheat on making my web pages look right: I find a page that looks the way I want mine to work, then I select "View Source" in my browser, copy the code from that page, and study it. I can sometimes just copy things right out and stick them into my own page, substituting my own text.
Another option is to copy all of the code from the text box and paste it into an HTML editor like Dreamweaver. You can then edit your page manually. When you have everything as you'd like it, copy the code from your HTML editor, paste it back into the text box, and save your changes.
== Add your own custom podcast icon to your blog page ==
This is the default Libsyn Podicon-
{{podicon.png}}
You can add a custom pod icon to your libsyn blog by logging into libsyn.com and going to **settings > advanced**
Scroll down to the bottom of the page where your blog HTML is. In the blog html, look for the
[[blog_pane]] module. To add your own icon, you can do:
[[blog_pane|pod_icon=http://somewebsite.com/my_icon.gif]]
== Images Are Too Big ==
A flaw in the Templates is that you have to keep your Photo´s under a certain width. To maintain this size you need to change the css, look for the postimage line and replace it with this one.
.postImage { float: right; padding-left: 5px; max-width: 250px; vertical-align: middle; }
== Add your own Leader Bar ==
Delete from your css the .podcastTitle and ad this.
#podcastTitle {
text-align: center;
padding: 3px;
background-image: URL('http://
.Libsyn.com/');
background-repeat: none; }
Change your HTML for your artwork to
Of course you will
*Add the file URL
*Place the HTML in between the podcastTitle div tags
The id will call the CSS of podcastTitle.