Dante,
Thanks for the new article. Your original one got me quite far in CS2 and this one promises to do the same.
I've gone through your new article several times and downloaded the source code but just can't seem to make it work completely. I am able to get the page to come up (the link is in the nav bar) but when displayed the page seems to be missing the standard css. In fact, when I look at the source of the rendered page (snippet below) the link to common.css is not there so the base css is not being pulled in. Can you help me understand where the code is that forces the common.css to get pulled in? I had thought that this was in the common/master.master file and that is being found as I'm not getting a 'not found' error for that. Can you provide any guidance with this?
Thanks,
Ben
The beginning of the rendered page looks like this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<link rel="stylesheet" href="http://renevo.com/Themes/ibdanswers/style/forum.css" type="text/css" media="screen" />
<link rel="stylesheet" href="http://renevo.com/Themes/ibdanswers/style/gallery.css" type="text/css" media="screen" />
<link rel="stylesheet" href="http://renevo.com/Themes/ibdanswers/style/forum_print.css" type="text/css" media="print" />
<link rel="stylesheet" href="http://renevo.com/Themes/ibdanswers/style/gallery_print.css" type="text/css" media="print" />
<body>
[....]