Created
February 28, 2011 00:05
-
-
Save seadowg/846720 to your computer and use it in GitHub Desktop.
Twitter/Flickr links in a list. Will style correctly in Tumblr Cargo theme. Quick paste for a mate.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="faint" id="links"> | |
<li><a href="http://www.twitter.com" class="rounded">Twitter</a></li> | |
<li><a href="http://www.flickr.com"class="rounded">Flickr</a></li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@max this will create two links in a list - just edit the links so its "http://www.twitter.com/oetzi101" for example so they link to your pages.
If you paste it in in the nav_list div of your source (paste directly after line 139) it will be added to the end of your navigation menu.
Just as a reference: the 'ul' tag is for an unordered list and 'li' is a list item. If you want to learn html (which I recommend) http://www.w3schools.com/html/default.asp is commonly seen as the de facto way.
Good Luck!