<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>The Honey House Buzz - CSS</title>
			<link>http://honeyhousedesigns.com/blog/index.cfm</link>
			<description>Musings about Life, Momy-hood, Teenagers, ColdFusion, and Being a GeekGirl in the South</description>
			<language>en-us</language>
			<pubDate>Thu, 02 Sep 2010 11:14:52 -0600</pubDate>
			<lastBuildDate>Sat, 07 Aug 2010 17:36:00 -0600</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>support@honeyhousedesigns.com</managingEditor>
			<webMaster>support@honeyhousedesigns.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>support@honeyhousedesigns.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>The Honey House Buzz</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm</link>
			</image>
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>Goodby CFUnited, Perhaps next year</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2010/8/7/Goodby-CFUnited-Perhaps-next-year</link>
				<description>
				
				I have planned unsuccessfully to get to CFUnited. But the for last 6+ years, other obligations have interfered for that week..... So, I get my oxes out of the ditch (which included a funeral, a few surgeries to repair cycling injuries, mom-in-law getting 2 hip replacements...you get the picture) to clear July-August 2011 to attend Next Year -- 2011...

(sigh) My friend Gene Godsey broke that news to me, no next year.... (sigh).

So Here&apos;s My VOTE: Have it somewhere, somehow, someway and Honey House Web Designs WILL be there! PLease, please (please).... 
				</description>
				
				<category>File Conversions</category>				
				
				<category>Fireworks</category>				
				
				<category>Cycling</category>				
				
				<category>Databases</category>				
				
				<category>ColdFusion</category>				
				
				<category>Coldfusion Hosting</category>				
				
				<category>CSS</category>				
				
				<category>Family</category>				
				
				<category>HHWD</category>				
				
				<category>Contribute</category>				
				
				<category>Dreamweaver</category>				
				
				<pubDate>Sat, 07 Aug 2010 17:36:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2010/8/7/Goodby-CFUnited-Perhaps-next-year</guid>
				
			</item>
			
			<item>
				<title>DW CS3 Bug? Checking Out Files to Open Externally Can Crash DW</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2008/12/17/DW-CS3-Bug-Checking-Out-Files-to-Open-Externally-Can-Crash-DW</link>
				<description>
				
				If you are working in a website that is set up to use Contribute for its users, do not try to checkout a file AND open externally at the same time. DW will crash.

I use Topstyle for CSS edits, and I have DW set up to open edit CSS files externally. I often open css files in DW that then open the Topstyle editor. If the CSS file is locked and needs to be checked out of the server, then opening to edit in Topstyle will cause DW to bomb. 

Solution: Check CSS file out first, then open/edit. Then all works good.  

Note on &apos;bug&apos;: This occurs in Topstyle versions 3.12 and 3.5 (newest version) and in of the latest CS3 DW version. It also occured in CS4, but that was beta. (don&apos;t have CS4 production yet... waiting on bit end-of-year bonus -- ha ha ). 
				</description>
				
				<category>Dreamweaver</category>				
				
				<category>CSS</category>				
				
				<category>Contribute</category>				
				
				<pubDate>Wed, 17 Dec 2008 08:35:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2008/12/17/DW-CS3-Bug-Checking-Out-Files-to-Open-Externally-Can-Crash-DW</guid>
				
			</item>
			
			<item>
				<title>Using CSS to Populate a Dynamic Map</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2008/11/8/Using-CSS-to-create-a-Dynamic-Vector-Map</link>
				<description>
				
				Clients often want maps of their service area, particularly county maps of a state, or states/regions within country. I had a project with a land company that wanted to be able to have a map automatically turn on/off a county based on the contents of the property&apos;s county in database.

I decided to create a page that used a vector based map with the counties outlined, id each county with a CSS class of that county name, then if any county was retrieved from the query, that county&apos;s ID would be highlighted to display. No, the map doesn&apos;t need to be a vector map per se, but using CSS can you can extend the functionality of each unit of the map (and resize easily if need be).

An example of this can be found at &lt;a href&apos;http://www.atlanticcoast-properties.com/html/scmap.cfm&apos;&gt;http://www.atlanticcoast-properties.com/html/scmap.cfm&lt;/a&gt;

Since the potential for several states exsists, I created a CSS file for South Carolina, &apos;sc.css&apos;.

The CSS for the map contains a div tag for the overall map, and a div for the location of each county to display:
&lt;code&gt;#scmap {
height: 506px;
width: 638px;
background-image: url(map/scmap.gif);
background-repeat: no-repeat;
padding: 0;
margin: 0;
position: relative;
font: Arial;
font-size: 11px;
font-stretch: narrower;}	
	
#scmap li {
    margin: 0; padding: 0; list-style: none;
    position: absolute; text-align: center;}	

#scmap li a:link, #scmap li a:visited,  #scmap li a:active
 {  color: black;   }

#scmap  li a:hover {background-color: #BF9839;color: #000;	
text-decoration: underline; }

#none {left: 540px; top: 470px; }	 
#spartanburg {left: 145px;top: 41px; }
#greenville { left: 103px;	top: 14px;	 }
#oconee {left: 12px; top: 70px; }
#laurens {left: 153px; top: 110px; }
#aiken {left: 207px;	top: 260px;}
#abbeville {left:90px; top:  152px; }
#edgefield {left: 164px;top: 224px;}
#cherokee {left: 202px; top: 9px; }
#union {left: 209px; top:  77px; }
#pickens { left: 65px; top: 44px; }
#anderson {left: 69px; top: 105px;}
#mccormick {left: 95px; top: 202px;}
#chester {left: 269px; top:  76px; }
#york {left: 269px; top: 34px; }
#lancaster {left: 332px; top:  80px; }
#fairfield {left: 276px; top:  127px; }
/*(and so on... not all counties are displayed here )*/

.disabled {color: #999999;}

&lt;/code&gt;

Then in the .cfm file, I set up the code to use an unordered list display or grey out the counties as needed:
&lt;code&gt;&lt;ul id=&quot;scmap&quot;&gt;
&lt;cfoutput query=&quot;getcounties&quot;&gt;

&lt;cfif cnt gt 0 &gt; &lt;!--- cnt is a count of properties from query ---&gt;
 &lt;li id=&apos;#lcase(county)#&apos;&gt; &lt;!--- div id ---&gt;
&lt;!--- if county has a count gt 0, diplay link &amp; count---&gt;
&lt;a href=&apos;filename.cfm?cid=#countyid#&apos;&gt;#county#&lt;/a&gt;&lt;br/&gt;
#cnt# listings 
&lt;/li&gt;

&lt;cfelse&gt;  &lt;!--- county has 0 listings at all, show county in proper location but disabled ---&gt;

&lt;li id=&apos;#lcase(county)#&apos;&gt; 
&lt;span class=&quot;disabled&quot;&gt;#county#&lt;/span&gt;
&lt;/li&gt;		 
 &lt;/cfif&gt; 


&lt;/cfoutput&gt;    
&lt;/ul&gt;
&lt;/code&gt;

The overall effect takes a bit of time to set up the location of the counties, but once done, it allows your map to disable or show links based on database values without having to recode the map.

This effect can be applied to geographic maps, real estate siteplans, and many other applications that use an overall large mapping but the need to be dynamic in the content for that map.

I can take this effort one more step to create hotspots based on the vector shape of the county and make rollovers, or even color the entire county based on the query results. 
				</description>
				
				<category>CSS</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Sat, 08 Nov 2008 08:50:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2008/11/8/Using-CSS-to-create-a-Dynamic-Vector-Map</guid>
				
			</item>
			
			<item>
				<title>&quot;Button&quot; tag vs. input type=&apos;button&apos;</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2008/11/5/button-vs-input-typebutton</link>
				<description>
				
				Although the  tag has been around W3C for a while, Dreamweaver still creates buttons as &quot;form buttons&quot;.

&lt;code&gt;
 &lt;input type=&quot;submit&quot; name=&quot;button&quot; id=&quot;button&quot; value=&quot;Click Me&quot;&gt;
&lt;/code&gt;

The form input button creates generic browser buttons, and can be customized using css. However, an easier way to manage the styling of buttons on your site is to use the &quot;button&quot; tag.
&lt;code&gt;
&lt;button type=&quot;button&quot;&gt;Click Me!&lt;/button&gt;
&lt;/code&gt;

This allows a developer to create and use push buttons outside of FORMS in a manner that is better suited for site styling and flexibility. 
				</description>
				
				<category>HTML</category>				
				
				<category>CSS</category>				
				
				<category>browsers</category>				
				
				<pubDate>Wed, 05 Nov 2008 19:40:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2008/11/5/button-vs-input-typebutton</guid>
				
			</item>
			
			<item>
				<title>Quick &amp; Dirty Right SideBar ... or Not,</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2008/11/5/Quick--Dirty-Right-SideBar--or-Not</link>
				<description>
				
				If you have a site that you some pages to have a sidebar and some NOT without having to create 2 similar templates (if you are using DW Template feature), you can easily set a variable in the file to turn the side bar on or off. This method creates a floating right sidebar if the variable is set, but it can be adjusted for a left sidebar as well.

There are two quick and dirty methods of doing this.
The first involves a dynamic div creation by setting up the Div id to be evaluated at run time using 2 CSS ids, one for content width accommodating the sidebar and one without:
&lt;code&gt;
&lt;div id=&quot;&lt;cfoutput&gt;#IIF(useRtSideBar eq true, DE(&apos;contentwsidebar&apos;), DE(&apos;content&apos;))#&lt;/cfoutput&gt;&quot;&gt;
Put Content Stuff Here

 &lt;div id=&apos;sidebar&apos; style=&quot;&lt;cfoutput&gt;#IIF(useRtSideBar eq true, DE(&apos;display:block&apos;), DE(&apos;display:none&apos;))#&lt;/cfoutput&gt;&quot;&gt;
Put Your SideBar Stuff Here
&lt;/div&gt;
&lt;/div&gt;
&lt;/code&gt;

The second is a more basic method that simply shows or hides the sidebar div based on the setting of the variable:
&lt;code&gt;
&lt;head&gt;
&lt;cfset useRtSideBar = true&gt;
:
&lt;/head&gt;
&lt;body&gt;
&lt;div id=&apos;banner&apos;&gt; banner here &lt;/div&gt;
  &lt;div id=&apos;nav&apos;&gt; nav here &lt;/div&gt;
    &lt;div id=&apos;contentwrapper&apos;&gt; Wraps Content and Sidebar 
    &lt;cfif useRdSideBar&gt;
        &lt;div id=&apos;rtsidebar&gt; Sidebar &lt;/div&gt;
    &lt;/cfif&gt;

     Rest of Content goes here
    &lt;/div&gt; &lt;!---contentwrapper ---&gt;
&lt;/body&gt;
&lt;/code&gt; 
				</description>
				
				<category>Adobe</category>				
				
				<category>CSS</category>				
				
				<category>Quick &amp;amp; Dirty Tricks</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Wed, 05 Nov 2008 15:49:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2008/11/5/Quick--Dirty-Right-SideBar--or-Not</guid>
				
			</item>
			
			<item>
				<title>Quick &amp; Dirty Tricks -- Dynamic CSS</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2008/2/1/Quick--Dirty-Tricks--Dynamic-CSS</link>
				<description>
				
				Ever have  site that needs CSS to be similar yet different based on user input? Take &lt;a href=&apos;http://hhwd.com&apos;&gt;HHWD&apos;s main site&lt;/a&gt;. We use different colors for different type of categories for our site. Instead of creating multiple DW templates, we can use ColdFusion to set the id or class tag dynamically to determine the format, color, etc for our site. We can even use CF to determine the site settings based on browser.

To do this,
set your tag to be a CF variable
&lt;code&gt;
&lt;div id=&apos;#category#&apos;&gt;
   blah blah code goes here
&lt;/div&gt;
&lt;/code&gt;
where category is a variable previously set. In your CSS file, you can different IDs, classes, and so on that would be called. 

You can even use different CSS files based on variables.

Quick And Dirty, but effective! 
				</description>
				
				<category>CSS</category>				
				
				<category>ColdFusion</category>				
				
				<category>browsers</category>				
				
				<pubDate>Fri, 01 Feb 2008 09:08:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2008/2/1/Quick--Dirty-Tricks--Dynamic-CSS</guid>
				
			</item>
			
			<item>
				<title>Creating a Dynamic Slide Show Using P7 &amp; Coldfusion</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2008/1/5/Creating-a-Dynamic-Slide-Show-Using-P7--Coldfusion</link>
				<description>
				
				Ever like the &lt;a href=&apos;http://projectseven.com&apos;&gt;Project Seven&lt;/a&gt; Slide Show magic but want to use the functionality of Coldfusion to fill in the thumbnails and images? Well, ok... lets do it.

Open your page to place slide show in and create the basic slide show, filling in a default directory and selecting an image. This creates directories and code populates the default SSM code on your page. 

Once this is created, you can go back in and edit it to fill images in from a query. Interestingly, you only need to update the &lt;li&gt; area with the query output to have the updates reflected both in the thumbnails and the larger images.

With respect to P7&apos;s code, I won&apos;t be cutting/pasting the entire SMM code here, but will only show snippets of strategic locations for place your outputed query.

Once the SMM code is built, find the p7ssm_thumb_section div. Looping through your query/array/list with &lt;li&gt; tag will update your thumbnails.

&lt;code&gt; 
&lt;div class=&quot;p7ssm_thumb_section&quot;&gt;
  &lt;ul&gt;
    &lt;cfoutput query=&apos;foo&apos;&gt;
       &lt;li&gt;&lt;a href=&quot;#foophoto#&quot;&gt;&lt;img src=&quot;#foophoto#&quot; alt=&apos;#fooname#&apos;/&gt;&lt;/a&gt;&lt;/li&gt;
     &lt;/cfoutput&gt;
  &lt;/ul&gt;
  &lt;br class=&quot;p7ssm_clearThumbs&quot; /&gt;
&lt;/div&gt;
&lt;/code&gt;

To update the starting image from the &apos;default&apos; one you used when you set up SMM, go down a tad further in the code, and edit the p7ssm_fsimg div.

&lt;code&gt;
&lt;cfoutput&gt;
&lt;div id=&quot;p7ssm_fsimg&quot;&gt;
  &lt;a id=&quot;p7ssm_fslink&quot;&gt;&lt;img id=&quot;p7ssm_im&quot; name=&quot;p7ssm_im&quot; src=&quot;#foo.foophoto#&quot;  /&gt;&lt;/a&gt;
&lt;/div&gt; 
&lt;/cfoutput&gt;
&lt;/code&gt;


See an example of this here: &lt;a href=&apos;http://hhwd2sandbox.com/harrisonk9/showcase.cfm&apos;&gt;Click on a Dog to see SMM&lt;/a&gt;&lt;br&gt;
This is a site in development due to be rolled out to production soon. As such, the FireFox formatting is still wonky as the client site is validated against IE6 first, and is still being adjusted for more modern browsers. 
				</description>
				
				<category>Internet</category>				
				
				<category>Project Seven</category>				
				
				<category>CSS</category>				
				
				<category>ColdFusion</category>				
				
				<category>browsers</category>				
				
				<pubDate>Sat, 05 Jan 2008 02:00:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2008/1/5/Creating-a-Dynamic-Slide-Show-Using-P7--Coldfusion</guid>
				
			</item>
			
			<item>
				<title>Advantages of using UL to Create CSS Vertical Nav Menus</title>
				<link>http://honeyhousedesigns.com/blog/index.cfm/2007/8/7/Advantages-of-using-UL-to-Create-CSS-Vertical-Nav-Menus</link>
				<description>
				
				CSS is a wonderful method of allowing precise formatting to your site&apos;s layout. One issue that I have noticed is that the methodology used to create the NAVigation menu. In the past, I have created a CSS class or CSS Div with &apos;a:link, a:visited (etc)&apos; formatting to create my navigation style, and then used &lt;br&gt; between the link lines such as:

&lt;code&gt;
&lt;div id=&apos;nav&apos;&gt;
   &lt;a href=&apos;#&apos;&gt;Home&lt;/a&gt;&lt;br /&gt;
   &lt;a href=&apos;#&apos;&gt;Page2&lt;/a&gt;&lt;br /&gt;
   &lt;a href=&apos;#&apos;&gt;Page3&lt;/a&gt;&lt;br /&gt;
   &lt;a href=&apos;#&apos;&gt;Page4&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;
&lt;/code&gt;  [More]
				</description>
				
				<category>CSS</category>				
				
				<pubDate>Tue, 07 Aug 2007 09:31:00 -0600</pubDate>
				<guid>http://honeyhousedesigns.com/blog/index.cfm/2007/8/7/Advantages-of-using-UL-to-Create-CSS-Vertical-Nav-Menus</guid>
				
			</item>
			</channel></rss>