January 2011
1 post
jQuery curvycorners
I started using http://www.curvycorners.net/ on a project of mine, but @oliverGristDev mentioned on Twitter the div problem with this solution, and suggested CSS3. But as we all now lte ie 8 dosen’t support that. To please all this became the solution:     <!--[if lte IE 8]>         <script src="/scripts/curvycorners.src.js" type="text/javascript"></script>        ...
Jan 14th
November 2010
4 posts
Nov 16th
2 notes
Nov 16th
1 note
2 tags
Nov 16th
2 tags
Nov 15th
June 2010
2 posts
2 tags
Add Email as Node
Email as Node adds a macro for adding emails to your Umbraco tree as nodes. It’s a simple add newsletter email macro. More info here: http://our.umbraco.org/projects/website-utilities/add-email-as-node
Jun 17th
2 tags
Audio Player for Umbraco
A simple audioplayer for Umbraco More info here: http://our.umbraco.org/projects/website-utilities/audio-player
Jun 17th
January 2010
1 post
2 tags
Simple CSS/jQuery drop shadow
This code show how to create a very simple drop shadow effect to all images with a given css class. First give the images you want the shadow for the class “contentimage”. Then some jQuery: $('.contentimage').wrap("<span class='wrap1'><span class='wrap2'><span class='wrap3'></span></span></span>"); Then some css: .wrap1, .wrap2, .wrap3 {...
Jan 6th
1 note
December 2009
1 post
2 tags
.NET UserControl displaing a Twitter Search (Atom...
This sample code shows how to add a Twitter rss, or to be exact atom feed to a .NET page/usercontrol. using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Xml.Linq; using Stormberg.Util; using System.ServiceModel.Syndication; using System.Xml; namespace HeltBlank.social { public partial class...
Dec 4th
November 2009
1 post
2 tags
Tutorial: jQuery Coverslide integrated with...
This tutorial show how to integrate the jQuery Coverslide found here: http://dev.jqueryui.com/browser/branches/labs/powella/coverslide?rev=2701, with Umbraco. First you need to download the zip file, you’ll need almost all the files. Add the following files to your “scripts” folder: jquery-1.3.2.min.js (if you haven’t jquery allready) jquery.bounds.js ...
Nov 11th
October 2009
1 post
1 tag
A little note about umbracoUrlAlias
The umbracoUrlAlias just make me happy. You can easly store your old urls from for example your old cms or blog. An example when importing content from blogengine you can use this approach: docNode.getProperty("umbracoUrlAlias").Value = blogenginexmlitem.Attribute("post-url").Value.ToLower().Remove(0,1) Remember the “ToLower” since umbracoUrlAlias uses lowercased url, and remove the...
Oct 20th