<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" xml:lang="en-US">
  <id>http://rogtopia.com/</id>
  <title>Rogtopia</title>
  <generator uri="http://jigsy.com">Jigsy</generator>
  <link type="text/html" rel="alternate" href="http://rogtopia.com" />
  
  <updated>2009-11-03T09:24:00-08:00</updated>
  <author>
    <name>Roger Riche</name>
  </author>
  <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/Rogtopia" /><feedburner:info uri="rogtopia" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:feedFlare href="http://www.plusmo.com/add?url=http%3A%2F%2Ffeeds.feedburner.com%2FRogtopia" src="http://plusmo.com/res/graphics/fbplusmo.gif">Subscribe with Plusmo</feedburner:feedFlare><feedburner:feedFlare href="http://www.thefreedictionary.com/_/hp/AddRSS.aspx?http%3A%2F%2Ffeeds.feedburner.com%2FRogtopia" src="http://img.tfd.com/hp/addToTheFreeDictionary.gif">Subscribe with The Free Dictionary</feedburner:feedFlare><feedburner:feedFlare href="http://www.bitty.com/manual/?contenttype=rssfeed&amp;contentvalue=http%3A%2F%2Ffeeds.feedburner.com%2FRogtopia" src="http://www.bitty.com/img/bittychicklet_91x17.gif">Subscribe with Bitty Browser</feedburner:feedFlare><feedburner:feedFlare href="http://www.newsalloy.com/?rss=http%3A%2F%2Ffeeds.feedburner.com%2FRogtopia" src="http://www.newsalloy.com/subrss3.gif">Subscribe with NewsAlloy</feedburner:feedFlare><feedburner:feedFlare href="http://www.live.com/?add=http%3A%2F%2Ffeeds.feedburner.com%2FRogtopia" src="http://tkfiles.storage.msn.com/x1piYkpqHC_35nIp1gLE68-wvzLZO8iXl_JMledmJQXP-XTBOLfmQv4zhj4MhcWEJh_GtoBIiAl1Mjh-ndp9k47If7hTaFno0mxW9_i3p_5qQw">Subscribe with Live.com</feedburner:feedFlare><feedburner:feedFlare href="http://mix.excite.eu/add?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2FRogtopia" src="http://image.excite.co.uk/mix/addtomix.gif">Subscribe with Excite MIX</feedburner:feedFlare><feedburner:feedFlare href="http://download.attensa.com/app/get_attensa.html?feedurl=http%3A%2F%2Ffeeds.feedburner.com%2FRogtopia" src="http://www.attensa.com/blogs/attensa/WindowsLiveWriter/BadgeredintoBadges_10C02/attensa_feed_button5.gif">Subscribe with Attensa for Outlook</feedburner:feedFlare><feedburner:feedFlare href="http://www.webwag.com/wwgthis.php?url=http%3A%2F%2Ffeeds.feedburner.com%2FRogtopia" src="http://www.webwag.com/images/wwgthis.gif">Subscribe with Webwag</feedburner:feedFlare><feedburner:feedFlare href="http://www.podcastready.com/oneclick_bookmark.php?url=http%3A%2F%2Ffeeds.feedburner.com%2FRogtopia" src="http://www.podcastready.com/images/podcastready_button.gif">Subscribe with Podcast Ready</feedburner:feedFlare><feedburner:feedFlare href="http://www.flurry.com/pushRssFeed.do?r=fb&amp;url=http%3A%2F%2Ffeeds.feedburner.com%2FRogtopia" src="http://www.flurry.com/images/flurry_rss_logo2.gif">Subscribe with Flurry</feedburner:feedFlare><feedburner:feedFlare href="http://www.wikio.com/subscribe?url=http%3A%2F%2Ffeeds.feedburner.com%2FRogtopia" src="http://www.wikio.com/shared/img/add2wikio.gif">Subscribe with Wikio</feedburner:feedFlare><feedburner:feedFlare href="http://www.dailyrotation.com/index.php?feed=http%3A%2F%2Ffeeds.feedburner.com%2FRogtopia" src="http://www.dailyrotation.com/rss-dr2.gif">Subscribe with Daily Rotation</feedburner:feedFlare><entry>
    <id>tag:rogtopia.com,2009-11-03:/entries/39745</id>
    <link rel="alternate" href="http://feedproxy.google.com/~r/Rogtopia/~3/sGsiMqpBq1A/tablesorter-hover-with-custom-widget" />
    <title>Tablesorter Hover with Custom Widget</title>
    <category term="jquery .js" />
    <published>2009-11-03T09:24:00-08:00</published>
    <updated>2009-11-03T09:39:39-08:00</updated>
    <content type="html">&lt;p&gt;I had a project recently that &lt;a href="http://tablesorter.com"&gt;jQuery's tablesorter&lt;/a&gt; could be used for.  However, after implementing the tablesorter script my custom jquery hover code gets destroyed when you paginate the table or sort it.  After some research, I discovered that I could re-implement my hover code in a tablesorter widget.&lt;/p&gt;
&lt;pre&gt; &lt;code class="js"&gt;&amp;lt;script type="text/javascript"&amp;gt;
$(document).ready(function () {
    // tablesorter widget to setup rollovers on table rows
    $.tablesorter.addWidget({
        id: "hover",

        format: function(table) {
            $('tr',$(table)).mouseover(function () {
                $(this).addClass('hover');
            }).mouseout(function () {
                $(this).removeClass('hover');
            });
        }
    });
    // then instantiate your tablesorter calling the hover widget
    $('.tablesorter').tablesorter({widthFixed: true, widgets: ['hover'] });
});
&amp;lt;/script&amp;gt; &lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;And there you have it.  Now when you sort your table the hover events stay attached to the rows as they are reapplied by tablesorters format callback provided by the hover widget.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Rogtopia/~4/sGsiMqpBq1A" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://rogtopia.com/entries/jquery-js/tablesorter-hover-with-custom-widget</feedburner:origLink></entry>
  <entry>
    <id>tag:rogtopia.com,2009-07-28:/entries/36424</id>
    <link rel="alternate" href="http://feedproxy.google.com/~r/Rogtopia/~3/-9r-1Cxx5QU/need-photoshop-ideas-for-articles" />
    <title>Need Photoshop Ideas for Articles.</title>
    <category term="photoshop" />
    <published>2009-07-28T22:48:00-07:00</published>
    <updated>2009-07-28T22:52:23-07:00</updated>
    <content type="html">&lt;p&gt;Hi Guys and Gals,&lt;/p&gt;
&lt;p&gt;I am a little bit stumped about what to show you in photoshop.&amp;nbsp; I mean.. plastic has been done a gazillion times, so has two tone effect, gradiants? done.&amp;nbsp; It's going to be tough to come up with something that my readers can benefit from.&amp;nbsp; I was thinking about getting into standard layout fundamentals such as proper margin, padding and typography.&lt;/p&gt;
&lt;p&gt;I guess what I am getting to is this one question.&amp;nbsp; What would you, the reader, like to see in terms of photoshop education for web layout?&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Rogtopia/~4/-9r-1Cxx5QU" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://rogtopia.com/entries/photoshop/need-photoshop-ideas-for-articles</feedburner:origLink></entry>
  <entry>
    <id>tag:rogtopia.com,2009-07-21:/entries/36331</id>
    <link rel="alternate" href="http://feedproxy.google.com/~r/Rogtopia/~3/iRC4g2cLSIg/creating-a-custom-nexttab-for-jquery-ui-tabs" />
    <title>Creating a Custom nextTab() for jQuery UI Tabs.</title>
    <category term="jquery .js" />
    <published>2009-07-21T10:39:00-07:00</published>
    <updated>2009-07-21T17:47:55-07:00</updated>
    <content type="html">&lt;p&gt;I have recently been working on a project using jQuery UI tabs (&lt;a target="_blank" href="http://jqueryui.com/demos/tabs/"&gt;http://jqueryui.com/demos/tabs/&lt;/a&gt;).&amp;nbsp; After sifting through the documentation, I could not find any particular method for just calling the next tab in my own custom navigation.&amp;nbsp; There is a lot of great events that you can hook into by creating callbacks, and a lot of great properties and methods; even one for selecting a tab.&amp;nbsp;&amp;nbsp; However, there is no nextTab() or next().&lt;/p&gt;
&lt;p&gt;Well, here is nextTab() that works with UI Tabs:&lt;/p&gt;
&lt;pre&gt;&lt;code class="js"&gt;&amp;lt;script type="text/javascript"&amp;gt;
function nextTab(_tab_selector) {
  var num_tabs = $('#tabs li',$(_tab_selector)).length;
  var current = $(_tab_selector).tabs('option','selected');
  var next = ((current + 2)&amp;gt;num_tabs) ? 0 : current + 1;
  $(_tab_selector).tabs('select',next);
}
&amp;lt;/script&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;This function will continue through a tab system until it reaches the end and continue to the beginning.  Simply call it from your own custom link such as:&lt;/p&gt;
&lt;pre&gt;&lt;code class="html"&gt;&amp;lt;a href="javascript:" onclick="nextTab('#mytabs');"&amp;gt;Next Tab&amp;lt;/a&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Or, you could bind them to the click event of a class selector:&lt;/p&gt;
&lt;pre&gt;&lt;code class="html"&gt;&amp;lt;a href="#mytabs" class="next-tab"&amp;gt;Next Tab&amp;lt;/a&amp;gt;&lt;/code&gt;

&lt;code class="js"&gt;&amp;lt;script type="text/javascript"&amp;gt;
$('.next-tab').bind('click', function() { 
  nextTab($(this).attr('href'));
});
&amp;lt;/script&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Of course, you could easily create a previous tab method by modifying the increments to decrements.  You could even create some custom callback events that could be triggered.  However, this is a minimalistic nextTab method that does it's job just fine.  Happy coding&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Rogtopia/~4/iRC4g2cLSIg" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://rogtopia.com/entries/jquery-js/creating-a-custom-nexttab-for-jquery-ui-tabs</feedburner:origLink></entry>
  <entry>
    <id>tag:rogtopia.com,2009-07-19:/entries/36310</id>
    <link rel="alternate" href="http://feedproxy.google.com/~r/Rogtopia/~3/nPB8c_PilIY/creating-a-custom-themed-jquery-ui" />
    <title>Creating a Custom Themed jQuery UI.</title>
    <category term="jquery .js" />
    <published>2009-07-19T23:15:00-07:00</published>
    <updated>2009-07-19T23:55:46-07:00</updated>
    <content type="html">&lt;p&gt;jQuery is a great way to add flare to your site easily with a vast array of utilities to animate, perform ajax calls, modify the DOM, retrieve JSON calls, and various other tasks usually tedious with native javascript. Today, we are going to look at jQuery&amp;rsquo;s UI library and how you can customize it&amp;rsquo;s widgets to suit the look and feel of your website.&lt;/p&gt;
&lt;p class="photo"&gt;&lt;img src="/files/images/jquery-site.png" alt="http://ui.jquery.com/" /&gt;&lt;span class="photo-details"&gt;jQuery UI - http://ui.jquery.com/&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;jQuery UI will provide you with themed user interface widgets such as modals and dialogs, tab systems, date pickers, accordian menus and more.&amp;nbsp; The beauty of it all, is that you can customize the look of these widgets with an easy to use themer from their website called &lt;strong&gt;ThemeRoller&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Simply go through the theme setup and click the download link to use what widgets you would like to include with your jQuery UI javascript frameworking.&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: medium;"&gt;&lt;strong&gt;A Quicky, Effecient Sample&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://ui.jquery.com" class="pop-link"&gt;Visit jQuery UI in a Dialog&lt;/a&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code class="js"&gt;&amp;lt;script type="text/javascript"&amp;gt;
// the caller
$('.pop-link').poplink();

// the jquery mini-plugin
// finds all anchor elements matching selector and applies a custom click event
// -- takes the href and loads it in a dialog's iframe with showSite().
$.fn.poplink = function() {
  return this.each(function () {
    var _url = $(this).attr('href');
    $(this).bind('click', function(event) {
      event.preventDefault();
      showSite(_url);
    });
  });
}

// the showSite function
var showSite = function (_url) {
  // configure this dialogs defaults
  $('#dialog').dialog({
   'bgiframe':true,
   'modal':true,
   'resizable':false,
   'draggable':false,
   'autoOpen':false,
   'width':980,
   'height':620,
   'title':'Forwarded to ' + _url,
   'buttons' : {
     'close' : function () { $(this).dialog('destroy'); },
     'forward' : function () { history.go(1); },
     'back' : function () { history.go(-1); }
    }
  });

  // empty the dialog and set it's html to the current _url in the iframe
  $('#dialog').empty().html('&amp;lt;iframe src="' + _url + '" marginwidth="0" marginheight="0" style="width:100%;height:100%;" scrolling="auto" frameborders="no"&amp;gt;&amp;lt;/frame&amp;gt;').dialog('open');
}
&amp;lt;/script&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Anyways, Go configure your custom theme and try &lt;a target="_blank" href="http://ui.jquery.com/"&gt;jQuery UI&lt;/a&gt; for yourself.&amp;nbsp; Fun times to be had by everyone!&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Rogtopia/~4/nPB8c_PilIY" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://rogtopia.com/entries/jquery-js/creating-a-custom-themed-jquery-ui</feedburner:origLink></entry>
  <entry>
    <id>tag:rogtopia.com,2009-07-19:/entries/36309</id>
    <link rel="alternate" href="http://feedproxy.google.com/~r/Rogtopia/~3/N-UG4Z-md20/well-rounded---rounding-edges-without-js-or-graphics" />
    <title>Well Rounded - Rounding without JS or graphics.</title>
    <category term="html &amp; css" />
    <published>2009-07-19T18:59:00-07:00</published>
    <updated>2009-07-20T11:54:34-07:00</updated>
    <content type="html">&lt;p&gt;Creating a rounded edge site can be a tedius chore when you are required to use javascript or images, background graphics to create your desired layout effect.&amp;nbsp; Well, if you are willing to leave Internet Explorer users in a squared environment, you can do it merely via CSS.&lt;/p&gt;
&lt;p&gt;Here's how:&lt;/p&gt;
&lt;pre&gt;&lt;code class="css"&gt;&amp;lt;style type="text/css&amp;gt;
div {
  border-radius : 10px;
}
&amp;lt;/style&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p class="notice"&gt;The above CSS declaration is defined in CSS 3 and is supported by all modern browsers except Internet Explorer; including Version 8.&lt;/p&gt;
&lt;p&gt;Now we want to support earlier mozilla-based and webkit-based browsers by including the following:&lt;/p&gt;
&lt;pre&gt;&lt;code class="css"&gt;&amp;lt;style type="text/css&amp;gt;
div {
  border-radius : 10px;
  -moz-border-radius : 10px;
  -webkit-border-radius : 10px;
}
&amp;lt;/style&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The above should produce something like below if we were to include a &lt;code&gt;background-color : #ccc;&lt;/code&gt;.&lt;/p&gt;
&lt;div style="padding: 10px; background-color: #cccccc;" class="rounded-big"&gt;This is a rounded div box!&lt;/div&gt;
&lt;p&gt;Oh, and I know from time to time, I would totally avoid borders on rounded edges due to all the limitations with javascript implementations or tedious work involved from the graphical side. Well, just add &lt;code&gt;border:&lt;/code&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code class="css"&gt;&amp;lt;style type="text/css&amp;gt;
div {
   border-radius : 10px;
  -moz-border-radius : 10px;
  -webkit-border-radius : 10px;
  border : 2px solid #000;
}
&amp;lt;/style&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;div style="border: 2px solid #000000; padding: 10px; background-color: #cccccc;" class="rounded-big"&gt;This is a rounded div box with border enabled!&lt;/div&gt;
&lt;p&gt;So, avoid adding extra weight to your project in terms of productivity and document size with all the fun &lt;cite&gt;hacks&lt;/cite&gt; required to make it look the same in all browsers.. mhhmm.. well, hacks just for IE :(&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Rogtopia/~4/N-UG4Z-md20" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://rogtopia.com/entries/html-css/well-rounded---rounding-edges-without-js-or-graphics</feedburner:origLink></entry>
  <entry>
    <id>tag:rogtopia.com,2009-07-19:/entries/36308</id>
    <link rel="alternate" href="http://feedproxy.google.com/~r/Rogtopia/~3/85xIC_1keS8/creating-a-color-scheme-with-kuler" />
    <title>Creating a Color Scheme with Kuler</title>
    <category term="photoshop" />
    <published>2009-07-19T16:38:00-07:00</published>
    <updated>2009-07-19T16:42:56-07:00</updated>
    <content type="html">&lt;p&gt;Have you ever had difficulty trying to find a set of colors to apply to your website?&amp;nbsp; Possibly you have tried to create your own color schemes without a knowledge of color theory. Well, Adobe has an online solution for us!&lt;/p&gt;
&lt;p&gt;Adobe has a fantastic color theming application available through a site called &lt;a target="_blank" href="http://adobe.com/kuler/"&gt;Kuler&lt;/a&gt;.&amp;nbsp; With this application you can create color schemes based on theories such as Split complimentary, Triad, Monochromatic and much more.&amp;nbsp; Find the perfect colors for your site with this neat tool.&lt;/p&gt;
&lt;p&gt;Adobe Kuler - &lt;a target="_blank" href="http://www.adobe.com/kuler/"&gt;http://www.adobe.com/kuler/&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Rogtopia/~4/85xIC_1keS8" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://rogtopia.com/entries/photoshop/creating-a-color-scheme-with-kuler</feedburner:origLink></entry>
  <entry>
    <id>tag:rogtopia.com,2009-07-19:/entries/36305</id>
    <link rel="alternate" href="http://feedproxy.google.com/~r/Rogtopia/~3/g0wvNDYpB74/see-this-avatar-jquery-did-that" />
    <title>See this Avatar? jQuery did that.</title>
    <category term="jquery .js" />
    <published>2009-07-19T15:36:00-07:00</published>
    <updated>2009-07-22T08:46:38-07:00</updated>
    <content type="html">&lt;p class="notice"&gt;&lt;strong&gt;Important Update&lt;/strong&gt;: Just discovered that you can put html in the Date Prefix value under your blog settings.&amp;nbsp;&amp;nbsp; Although, this was a neat hack to get what I wanted done, I have removed it as I have accomplished this effect through the blog component markup and CSS.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Well, I am up and running with the new site and I should fill out some of the new sections with some content.&lt;/p&gt;
&lt;p&gt;See the avatar of me here on the posted line? I accomplished this with jQuery!&lt;/p&gt;
&lt;pre&gt;&lt;code class="js"&gt;// update viviti blog author markup
$('.blog_post .date').addClass('author');
$('.blog_post .date_prefix').remove();
$('&amp;lt;div&amp;gt;Posted by &amp;lt;span title="Roger Riche, Web Developer"&amp;gt;Roger&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;').prependTo('.author');&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;This chunk of jQuery takes each blog post date section and adds the css class of author to it.  I also remove the date_prefix div that contains the default text of Posted.  Then I add a new div tag that contains custom 'Posted' text including my name and title :)&lt;/p&gt;
&lt;p&gt;
Just one of the many things you can accomplish with jQuery
&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Rogtopia/~4/g0wvNDYpB74" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://rogtopia.com/entries/jquery-js/see-this-avatar-jquery-did-that</feedburner:origLink></entry>
  <entry>
    <id>tag:rogtopia.com,2008-11-12:/entries/5308</id>
    <link rel="alternate" href="http://feedproxy.google.com/~r/Rogtopia/~3/l_tjiYqaLxs/i-am-still-here" />
    <title>I am still here..</title>
    <category term="general" />
    <published>2008-11-12T13:39:00-08:00</published>
    <updated>2009-07-19T11:10:05-07:00</updated>
    <content type="html">&lt;p&gt;Hey, I know it's been a while since my last post but Bravenet has been keeping me pretty busy and haven't had much time at home.&amp;nbsp; Will be updating this blog over the weekend with new tips and tricks for Viviti!&amp;nbsp; I think we should have a look at jQuery (&lt;a href="http://www.jquery.com"&gt;http://www.jquery.com&lt;/a&gt;) and what we can do with it.&lt;/p&gt;
&lt;p&gt;EDIT: So much for getting anything done that weekend. lol.&amp;nbsp; However, I assure you I have something cooking that I am hoping will be a great resource for front-end web developers.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Rogtopia/~4/l_tjiYqaLxs" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://rogtopia.com/entries/general/i-am-still-here</feedburner:origLink></entry>
  <entry>
    <id>tag:rogtopia.com,2008-08-03:/entries/2482</id>
    <link rel="alternate" href="http://feedproxy.google.com/~r/Rogtopia/~3/oisPWEgasAY/changing-your-favicon-on-viviti" />
    <title>Changing your Favicon on Viviti</title>
    <category term="html &amp; css" />
    <published>2008-08-03T15:51:00-07:00</published>
    <updated>2009-07-20T00:28:39-07:00</updated>
    <content type="html">&lt;p class="notice"&gt;IMPORTANT UPDATE: As Quoted from &lt;a target="_blank" href="http://blog.nerburn.com"&gt;Shawn&lt;/a&gt; on the &lt;a target="_blank" href="http://www.viviti.com/about"&gt;Viviti Team&lt;/a&gt;:&lt;/p&gt;
&lt;div class="comment"&gt;
&lt;div class="comment_metadata"&gt;
    &lt;span class="comment_number"&gt;
      &lt;a href="#comment_6155"&gt;12&lt;/a&gt;
    &lt;/span&gt;
    &lt;span class="avatar"&gt;
      &lt;img src="http://www.gravatar.com/avatar.php?gravatar_id=f2c53ba0eb2f52d89b414951922b0606&amp;amp;size=48&amp;amp;default=http://rogtopia.com/images/avatars/mystery_man.jpg" width="48" height="48" /&gt;
    &lt;/span&gt;
    &lt;span class="comment_name"&gt;
      &lt;a href="http://blog.nerdburn.com" rel="nofollow"&gt;Shawn&lt;/a&gt;
    &lt;/span&gt; 
    &lt;span&gt;September 17, 2008 12:29PM&lt;/span&gt;
  &lt;/div&gt;
&lt;div class="content"&gt;
&lt;p&gt;Hi Roger, thanks for this. &lt;/p&gt;
&lt;p&gt;With the latest release, on Sep 15th, you can now just go into "My Website" (on the toolbar), and then "Website Settings" and add the favicon.ico file right in there. No need to edit the theme source code!&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;br /&gt;-
&lt;p&gt;Just updated rogtopia.com to use a custom favourite icon by editing my default html template and by uploading a favicon.ico to use for the shortcut link.&lt;/p&gt;
&lt;p&gt;&lt;img src="/files/images/faveaddress.png" alt="Image" /&gt;&lt;/p&gt;
&lt;p&gt;To update your Viviti site with a custom icon, find or create a new favicon.ico file and upload it using "Files" from your Viviti toolbar.&amp;nbsp; I created mine from my logo as a PNG file and used an &lt;a href="http://tools.dynamicdrive.com/favicon/"&gt;online tool to convert it to an ICO file&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;After you have uploaded your file, it will be available from your viviti domain within the path of /files/others/favicon.ico. Update your default.html with the following code in the &amp;lt;head&amp;gt;&amp;lt;/head&amp;gt; section of the document.&lt;/p&gt;
&lt;pre&gt;&lt;code class="html"&gt;&amp;lt;link rel="shortcut icon" href="http://your.viviti.com/files/others/favicon.ico"&amp;gt;&amp;nbsp;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Don't forget to replace your.viviti.com with your actual viviti host.&lt;/p&gt;
&lt;p&gt;There is nothing at all wrong with the Viviti favicon that gets injected; in fact, it's very elegant and precise.&amp;nbsp; But for those of you that want something different or custom to your theme, then the above should work for you. Happy Coding.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Rogtopia/~4/oisPWEgasAY" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://rogtopia.com/entries/html-css/changing-your-favicon-on-viviti</feedburner:origLink></entry>
  <entry>
    <id>tag:rogtopia.com,2008-08-03:/entries/2472</id>
    <link rel="alternate" href="http://feedproxy.google.com/~r/Rogtopia/~3/nttx_rog4CQ/toying-with-viviti-css" />
    <title>Toying with Viviti CSS</title>
    <category term="html &amp; css" />
    <published>2008-08-03T00:07:00-07:00</published>
    <updated>2009-07-19T11:19:36-07:00</updated>
    <content type="html">&lt;p&gt;&lt;img style="float: right; position: relative; margin-left: 15px;" src="/files/images/inspect_element.png" alt="Image" width="221" height="190" /&gt;&lt;/p&gt;
&lt;p&gt;Been getting deeper into my base stylesheet for this site and have found it pretty easy to customize any element with &lt;a href="http://getfirefox.com"&gt;Firefox&lt;/a&gt; and &lt;a href="http://getfirebug.com"&gt;Firebug&lt;/a&gt;.&amp;nbsp; A combination of the Firefox Browser and Firebug developer tool, you can easily find a specific element on the page simply by right-clicking it and selecting "Inspect Element".&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In the screenshot to your right, I am right-clicking the comments section used for my blog entries.&amp;nbsp; This will allow me to figure out what CSS declaration to use to customize that piece of a Viviti blog component.&lt;/p&gt;
&lt;p style="clear: right;"&gt;&lt;span style="font-size: large;"&gt;&lt;strong&gt;The Firebug Workspace&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Firebug Debugging Tool (&lt;a href="http://getfirebug.com"&gt;http://getfirebug.com/&lt;/a&gt;) allows you to expose not only the markup that wraps the contents of your website, but all the generated HTML that may be dynamically injected via javascript.&lt;/p&gt;
&lt;p&gt;&lt;img src="/files/images/firebug_markup.png" alt="Image" /&gt;&lt;/p&gt;
&lt;p&gt;Above, we see what has happened after choosing to Inspect Element on the comments area.&amp;nbsp;&amp;nbsp; The containing element with class of metadata (&lt;code&gt;&amp;lt;div class="metadata"&amp;gt;..&amp;lt;/div&amp;gt;&lt;/code&gt;) was selected in the Firebug HTML window and the element itself is highlighted on the page.&amp;nbsp; Now we can easily figure out how to target that with our CSS selector.&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: large;"&gt;&lt;strong&gt;The Comments CSS Selector&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;img style="float: left; margin-right: 15px;" src="/files/images/metadata_css.png" alt="Image" /&gt;&lt;/p&gt;
&lt;p&gt;In this screenshot, we are viewing Firebug's Style inspector/editor which shows the CSS declaration used to add that subtle rounded edge bar.&lt;/p&gt;
&lt;p&gt;Since the DIV metadata container was contained within a post_wrapper parent, I kept the CSS selector down to &lt;code&gt;.post_wrapper .metadata. { .. }&lt;/code&gt;. If you step back through the markup, the master parent of each blog is conveniently classified as blog_post. So your selector could even be &lt;code&gt;.blog_post .metadata { // your css properties; }&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Whatever you choose to do with your Viviti website and/or blog, Firebug is an invaluable tool for any web geek of any skill level.&amp;nbsp;&amp;nbsp; Later on, let's discuss some hidden javascript gems that the Viviti system ships to your website.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Rogtopia/~4/nttx_rog4CQ" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://rogtopia.com/entries/html-css/toying-with-viviti-css</feedburner:origLink></entry>
  <entry>
    <id>tag:rogtopia.com,2008-08-01:/entries/2434</id>
    <link rel="alternate" href="http://feedproxy.google.com/~r/Rogtopia/~3/CdP60-wsKQk/guinness-too-many" />
    <title>Guinness too many</title>
    <category term="general" />
    <published>2008-08-01T10:06:00-07:00</published>
    <updated>2009-07-20T00:45:08-07:00</updated>
    <content type="html">&lt;p&gt;&lt;img style="float: right; margin-left: 15px; position: relative; margin-top: -25px;" src="/files/resized/11925/cropped/175;175;b132f970bea90a2ae8c0a8dc12a0a7f4f4987a29.jpg" alt="Image" width="126" height="126" /&gt;Got out last night with some co-workers and really had a blast.&amp;nbsp; Was nice to get away from the World of Rogtopia (Warcraft) and face the real world.&amp;nbsp; Save for the scary cougar that was hitting on us, it was alot of fun.&amp;nbsp; 3 timmy hoes this morning seems to have cured me for the most part but I doubt I will do that again mid-week.&lt;/p&gt;
&lt;p&gt;UPDATE: Feeling better now and ready to go ROCKIN again tonight.&amp;nbsp; See.. I am sporting rock fingers and wearing shades.&amp;nbsp; How cool is that.&amp;nbsp; Tonight the adventure continues. &lt;em&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&lt;span style="font-size: xx-small;"&gt;Photo taken by &lt;a href="http://haugland.ca"&gt;Mike Haugland&lt;/a&gt;&lt;/span&gt;&lt;/em&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Rogtopia/~4/CdP60-wsKQk" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://rogtopia.com/entries/general/guinness-too-many</feedburner:origLink></entry>
  <entry>
    <id>tag:rogtopia.com,2008-07-30:/entries/2393</id>
    <link rel="alternate" href="http://feedproxy.google.com/~r/Rogtopia/~3/ZIpBUzPKYAw/blog-hater-no-more" />
    <title>blog hater no more</title>
    <category term="general" />
    <published>2008-07-30T20:41:00-07:00</published>
    <updated>2009-07-19T11:25:48-07:00</updated>
    <content type="html">&lt;p&gt;I have never really had an interest in blogging before until I started toying with the Viviti System.&amp;nbsp; Being a developer and a designer, I really hate to use systems that give me no control over the markup structure ( or scary markup is ouputted ) and or stylesheets.&amp;nbsp; Some do, but most have horrible interfaces for applying customizations.&lt;/p&gt;
&lt;p&gt;Who wants to go through lines of a config file defining separate RGBs for various obscurely named variables. Who really wants to have to use some sorta bloated web-based system that essentially does the same.&amp;nbsp; Dumps style variables into databases and then uses that for theming.&lt;/p&gt;
&lt;p&gt;I love how I have full control to creating my own template that can be imported and used by the Viviti system. Even if something isn't documented, finding out how to style a new component or a blog component is as simple as looking at the HTML output and applying new CSS declarations to your templates CSS file.&lt;/p&gt;
&lt;p&gt;I will get into how to customize components in a later post. I went off on a tangent;&lt;span style="font-size: medium;"&gt; &lt;/span&gt;&lt;span style="font-size: medium;"&gt;&lt;em&gt;I HATED BLOGGING&lt;/em&gt;&lt;/span&gt;.&amp;nbsp; Now I think I might be able to tolerate it using a system such as this with all the neat components that one can use.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/Rogtopia/~4/ZIpBUzPKYAw" height="1" width="1"/&gt;</content>
  <feedburner:origLink>http://rogtopia.com/entries/general/blog-hater-no-more</feedburner:origLink></entry>
</feed>

