<rss version="2.0">
<channel>
<title>macromedia.dreamweaver</title>
<link>http://www.nnseek.com/e/macromedia.dreamweaver/</link>
<description>Posts for macromedia.dreamweaver</description>
<lastBuildDate>Wed, 20 Aug 2008 00:09:58 PDT</lastBuildDate>
  <image>
    <title>http://www.nnseek.com/</title>
    <link>http://www.nnseek.com/</link>
    <url>http://www.nnseek.com/img/64.png</url>
    <width>64</width>
    <height>64</height>
    <description>NNSeek</description>
  </image>
<item>
	<title><![CDATA[My Div container won't cooperate]]></title>
	<guid>http://www.nnseek.com/e/macromedia.dreamweaver/my_div_container_won_t_cooperate_119173815t.html</guid>
	<link>http://www.nnseek.com/e/macromedia.dreamweaver/my_div_container_won_t_cooperate_119173815t.html</link>
	<description><![CDATA[To better understand how CSS works, I decided to try to hand code a CSS page in <br>an ASCII editor! Crazy! (I did pull it in and out of DW a few times for visual <br>reference, so if there's any DW-specific code added, that's likely why). After <br>doing way better than expected, I hit my first snag (refer to code below). <br>Inside Box 3 (the lovely lime green affair), I have placed 3 more div <br>containers. However, I cannot seem to hit upon the magic code which will allow <br>Box 3 to auto stretch downwards to accommodate the three containers place <br>inside it (boxes 4, 5 and 6). No, Box 3 stubbornly remains a short, wide strip. <br> Any suggestions?<br><br> Thank you-<br> Mark<br><br> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" <br>"<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" rel="nofollow" class="url" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>"><br> <html xmlns="<a href="http://www.w3.org/1999/xhtml" rel="nofollow" class="url" target="_blank">http://www.w3.org/1999/xhtml</a>"><br> <head><br><br> <style type="text/css"><br> body {<br> background-color: #660000 ;<br> color: white ;<br> font-family: Arial, Helvetica, sans-serif ;<br> margin: 0;<br> }<br><br> h1 {<br> font-family: times;<br> font-size: 36pt;<br> color: #ffff00;<br> text-align: center;<br> }<br><br> h2 {<br> font-family: Arial;<br> font-size: 48pt;<br> color: Black;<br> text-align: center;<br> }<br><br> .containingbox<br> 		{<br> width: 600px;<br> background-color: #F63;<br> font-family: Arial;<br> font-size: 12pt;<br> padding: 15px;<br> position: relative;<br> margin: 0 auto<br><br> 		}<br><br> .containingbox2<br> {<br> width: 100px;<br> background-color: white;<br> border: 1px solid #000000;<br> font-family: Arial;<br> font-size: 10pt;<br> color: #000000;<br> padding: 15px;<br> position: relative;<br> margin: 0 auto<br> }<br><br> .containingbox3<br> {<br> 	width: 800px;<br> 	background-color: #00ff00;<br> 	font-family: Arial;<br> 	font-size: 10pt;<br> 	padding: 10px;<br> 	position: relative;<br> 	margin: 0 auto;<br> 	height: auto;<br> }<br><br> .containingbox4<br> {<br> width: 150px;<br> height: 200px;<br> background-color: black;<br> font-family: Arial;<br> font-size: 10pt;<br> color: white;<br> padding: 10px;<br> float: left;<br> }<br><br> .containingbox5<br> {<br> width: 150px;<br><br> background-color: #ff00ff;<br> font-family: Arial;<br> font-size: 10pt;<br> color: yellow;<br> padding: 10px;<br> float: left;<br> }<br><br> .containingbox6<br> {<br> width: 150px;<br> height: 200px;<br> background-color: #ff6600;<br> font-family: Arial;<br> font-size: 10pt;<br> color: 330033;<br> padding: 10px;<br> float: left;<br> }<br><br> </style><br><br> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><br> <title>Untitled Document</title><br> </head><br><br> <body><br> <h1>This is Header 1</h1><br> <p>This should be the paragraph text, set to left margin.</P><br><br> <h2>This is Header 2</h><br> <div class="containingbox"><br> <p>This is "containingbox". Lorem ipsum dolor sit amet, consectetuer <br>adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore <br>magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci <br>tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. <br>Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie <br>consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan <br>et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis <br>dolore te feugait nulla facilisi.<br> </p><br> </div><br><br> <div class="containingbox2"><br> <p>Hi there! This is Box 2!</P><br> </div><br><br><br> <div class="containingbox3"><br><br> <div class="containingbox4"><br> <p>This is Box 4</p><br> </div><br><br> <div class="containingbox5"><br> <p>This is Box 5. <br>Lorem ipsum dolor sit amet, consectetuer adipiscing <br>elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam <br>erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation <br>ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis <br>autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie <br>consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan <br>et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis <br>dolore te feugait nulla facilisi.</p><br> </div><br><br> <div class="containingbox6"><br> <p>This is Box 6</p><br> </div><br><br> </div><br><br><br> </body><br> </html><br><br><br><br>
    <table border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="30">&nbsp;</td>
        <td>Posted In: <a href="http://www.nnseek.com/e/macromedia.dreamweaver/">macromedia.dreamweaver</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/my_div_container_won_t_cooperate_119173815t.html">no comments</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/my_div_container_won_t_cooperate_119173815m.html">Reply</a></td>
      </tr></table><br>]]></description>
	<pubDate>Wed, 20 Aug 2008 00:09:58 PDT</pubDate>
</item>
<item>
	<title><![CDATA[NAME attribute]]></title>
	<guid>http://www.nnseek.com/e/macromedia.dreamweaver/name_attribute_119172791t.html</guid>
	<link>http://www.nnseek.com/e/macromedia.dreamweaver/name_attribute_119172791t.html</link>
	<description><![CDATA[When I validate the below code, mainly created by DW, I am told there is NO <br>such attribute in STRICT .  When I remove it, the code does not work, of <br>course, I guess.  What do I have to amend for this to be properly validated, <br>please?<br><br> <img src="galleries/sides/right_1/sloane_thumb.jpg" alt="Click to see show" <br>name="Image11" usemap="#Image11Map" id="Image1" style="position:absolute; <br>width:100px; height:100px; z-index:1; background-color: #91C87D; border: 1px <br>none #000000; left: 855px; top: 35px;" /><br><br>
    <table border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="30">&nbsp;</td>
        <td>Posted In: <a href="http://www.nnseek.com/e/macromedia.dreamweaver/">macromedia.dreamweaver</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/name_attribute_119172791t.html">no comments</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/name_attribute_119172791m.html">Reply</a></td>
      </tr></table><br>]]></description>
	<pubDate>Tue, 19 Aug 2008 23:39:58 PDT</pubDate>
</item>
<item>
	<title><![CDATA[Changing color pallette hangs Mac]]></title>
	<guid>http://www.nnseek.com/e/macromedia.dreamweaver/changing_color_pallette_hangs_mac_119172023t.html</guid>
	<link>http://www.nnseek.com/e/macromedia.dreamweaver/changing_color_pallette_hangs_mac_119172023t.html</link>
	<description><![CDATA[Whenever I try to change color pallettes from "Color Cubes", in fact, anytime I <br>bring up that menu - clicking on a color then clicking on the arrow in the <br>upper right corner of the color picker pallette - causes the system to hang.  I <br>can break out using command period, but I can't change to Continuous Tones, or <br>Grayscale, etc.  I am using Mac System Version:	Mac OS X <a href="http://10.5.4" rel="nofollow" class="url" target="_blank">10.5.4</a> (9E17) and <br>Dreamweaver Version 9 build 3841.  Any suggestions why this happens and how to <br>fix would be greatly appreciated!<br><br><br><br>
    <table border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="30">&nbsp;</td>
        <td>Posted In: <a href="http://www.nnseek.com/e/macromedia.dreamweaver/">macromedia.dreamweaver</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/changing_color_pallette_hangs_mac_119172023t.html">no comments</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/changing_color_pallette_hangs_mac_119172023m.html">Reply</a></td>
      </tr></table><br>]]></description>
	<pubDate>Tue, 19 Aug 2008 22:54:45 PDT</pubDate>
</item>
<item>
	<title><![CDATA[How to keep content centered in full screen mode]]></title>
	<guid>http://www.nnseek.com/e/macromedia.dreamweaver/how_to_keep_content_centered_in_full_screen_mode_119169719t.html</guid>
	<link>http://www.nnseek.com/e/macromedia.dreamweaver/how_to_keep_content_centered_in_full_screen_mode_119169719t.html</link>
	<description><![CDATA[I've searched all over Google and in here but am surprised to find nobody else <br>with the same problem!<br><br> How do you keep all of the items centered inside a Div when switching to full <br>screen mode in IE?  Everything in my "#global" Div shifts upwards creating a <br>big mess and doesn't stay where it should in my content box (which is part of <br>the background.  There's no problems when resizing the window by dragging, just <br>when using full screen mode.  Here is my body and #global code:<br><br> body {<br> background-image: url(images/background2.jpg);<br> background-color:#ECE5C8;<br> background-repeat:no-repeat;<br> background-position: 50%% 50%%;<br> margin-top: 4%%;<br> margin-bottom:4%%;<br> }<br><br> #global {<br> margin:auto;<br> position:relative;<br> width: 784px;<br> height:554px;<br> }<br><br><br><br><br><br>
    <table border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="30">&nbsp;</td>
        <td>Posted In: <a href="http://www.nnseek.com/e/macromedia.dreamweaver/">macromedia.dreamweaver</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/how_to_keep_content_centered_in_full_screen_mode_119169719t.html">no comments</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/how_to_keep_content_centered_in_full_screen_mode_119169719m.html">Reply</a></td>
      </tr></table><br>]]></description>
	<pubDate>Tue, 19 Aug 2008 22:36:42 PDT</pubDate>
</item>
<item>
	<title><![CDATA[Uncooperating Divs:)]]></title>
	<guid>http://www.nnseek.com/e/macromedia.dreamweaver/uncooperating_divs_119169463t.html</guid>
	<link>http://www.nnseek.com/e/macromedia.dreamweaver/uncooperating_divs_119169463t.html</link>
	<description><![CDATA[I am having trouble with the positioning of some divs. See this URL...<br><br> <a href="http://www.kitwilkins.com/NABE_website" rel="nofollow" class="url" target="_blank">http://www.kitwilkins.com/NABE_website</a><br><br> In Firefox, the background image of the content on the right hand side has a <br>slight white gap on the end which should not be there.<br><br> In IE6, the problem even worse...the main wrapper seems to be extending to <br>more than 800px width leaving a vertical white column running down the right <br>side. There is also a white gap on the left hand side of the top positioned <br>content background image.<br><br> I have spent HOURS tweaking the css and trying yo fix this, but I just cant <br>seem to figure it out. Any help would be MUCH appreciated!<br><br> I will post my css here if necessary.<br><br>
    <table border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="30">&nbsp;</td>
        <td>Posted In: <a href="http://www.nnseek.com/e/macromedia.dreamweaver/">macromedia.dreamweaver</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/uncooperating_divs_119169463t.html">no comments</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/uncooperating_divs_119169463m.html">Reply</a></td>
      </tr></table><br>]]></description>
	<pubDate>Tue, 19 Aug 2008 22:27:22 PDT</pubDate>
</item>
<item>
	<title><![CDATA[Labeling Files Correctly NEW USER]]></title>
	<guid>http://www.nnseek.com/e/macromedia.dreamweaver/labeling_files_correctly_new_user_119166903t.html</guid>
	<link>http://www.nnseek.com/e/macromedia.dreamweaver/labeling_files_correctly_new_user_119166903t.html</link>
	<description><![CDATA[Do I need to use the underscore mark to connect words in file labels in DW? For <br>example can I call a file "Apples Bananas.html" or does it need to be <br>"apples_bananas.html"? If so why? Does that apply to folders too? Is this <br>needed for general file and folder naming outside of DW? And finally is the <br>lower case important? Thanks! <br><br>
    <table border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="30">&nbsp;</td>
        <td>Posted In: <a href="http://www.nnseek.com/e/macromedia.dreamweaver/">macromedia.dreamweaver</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/labeling_files_correctly_new_user_119166903t.html"><b>1</b> Comment</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/labeling_files_correctly_new_user_119166903m.html">Reply</a></td>
      </tr></table><br>]]></description>
	<pubDate>Tue, 19 Aug 2008 21:52:53 PDT</pubDate>
</item>
<item>
	<title><![CDATA[Do mp3 Files Need To Reside In A Folder?]]></title>
	<guid>http://www.nnseek.com/e/macromedia.dreamweaver/do_mp3_files_need_to_reside_in_a_folder_119166391t.html</guid>
	<link>http://www.nnseek.com/e/macromedia.dreamweaver/do_mp3_files_need_to_reside_in_a_folder_119166391t.html</link>
	<description><![CDATA[When I'm working in DW and I add mp3 files they attach to the hierarchy tree <br>below the root folder the same as pages. Do I need to create a folder for them <br>in the same way I have an images folder? If so, is there a standard name I need <br>to name the folder in order that browsers can find it? Thanks!<br><br>
    <table border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="30">&nbsp;</td>
        <td>Posted In: <a href="http://www.nnseek.com/e/macromedia.dreamweaver/">macromedia.dreamweaver</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/do_mp3_files_need_to_reside_in_a_folder_119166391t.html"><b>1</b> Comment</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/do_mp3_files_need_to_reside_in_a_folder_119166391m.html">Reply</a></td>
      </tr></table><br>]]></description>
	<pubDate>Tue, 19 Aug 2008 21:42:51 PDT</pubDate>
</item>
<item>
	<title><![CDATA[Can I Use My E Drive To Work From?]]></title>
	<guid>http://www.nnseek.com/e/macromedia.dreamweaver/can_i_use_my_e_drive_to_work_from_119165367t.html</guid>
	<link>http://www.nnseek.com/e/macromedia.dreamweaver/can_i_use_my_e_drive_to_work_from_119165367t.html</link>
	<description><![CDATA[I only have a 40G internal HD with 19G headroom. I have a 250G external drive (USB). Can I use my external drive to maintain and work from, or does DW require I use the C drive? Thanks!<br>
    <table border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="30">&nbsp;</td>
        <td>Posted In: <a href="http://www.nnseek.com/e/macromedia.dreamweaver/">macromedia.dreamweaver</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/can_i_use_my_e_drive_to_work_from_119165367t.html"><b>3</b> Comments</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/can_i_use_my_e_drive_to_work_from_119165367m.html">Reply</a></td>
      </tr></table><br>]]></description>
	<pubDate>Tue, 19 Aug 2008 21:37:38 PDT</pubDate>
</item>
<item>
	<title><![CDATA[MS Works ODBC?]]></title>
	<guid>http://www.nnseek.com/e/macromedia.dreamweaver/ms_works_odbc_119164855t.html</guid>
	<link>http://www.nnseek.com/e/macromedia.dreamweaver/ms_works_odbc_119164855t.html</link>
	<description><![CDATA[I know you can use DW to connect to SQL server, and Access DB. Is it possible to connect to a Microsoft Works Database (*.WDB)???<br><br>Thanks,<br>Nathan<br>
    <table border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="30">&nbsp;</td>
        <td>Posted In: <a href="http://www.nnseek.com/e/macromedia.dreamweaver/">macromedia.dreamweaver</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/ms_works_odbc_119164855t.html">no comments</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/ms_works_odbc_119164855m.html">Reply</a></td>
      </tr></table><br>]]></description>
	<pubDate>Tue, 19 Aug 2008 21:32:27 PDT</pubDate>
</item>
<item>
	<title><![CDATA[Very New Need Basic Definition of CSS]]></title>
	<guid>http://www.nnseek.com/e/macromedia.dreamweaver/very_new_need_basic_definition_of_css_119164343t.html</guid>
	<link>http://www.nnseek.com/e/macromedia.dreamweaver/very_new_need_basic_definition_of_css_119164343t.html</link>
	<description><![CDATA[I'm extremely new. I need to know what Cascading Style Sheets means. Please use <br>terms in your description that a non-web person can understand. Please describe <br>in terms of (a) its purpose and (b) what its a solution to, as in "CSS as <br>opposed to what?". Please also answer why "cascading"? And what is a Style <br>Sheet (please define as per the above as well). I've looked everywhere but all <br>I can find are definitions which have confusing terms in the definitions <br>themselves. I need STUPID simple. Thank you!!<br><br>
    <table border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td width="30">&nbsp;</td>
        <td>Posted In: <a href="http://www.nnseek.com/e/macromedia.dreamweaver/">macromedia.dreamweaver</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/very_new_need_basic_definition_of_css_119164343t.html"><b>3</b> Comments</a></td>
        <td width="20">&nbsp;</td>
        <td><a href="http://www.nnseek.com/e/macromedia.dreamweaver/very_new_need_basic_definition_of_css_119164343m.html">Reply</a></td>
      </tr></table><br>]]></description>
	<pubDate>Tue, 19 Aug 2008 21:31:45 PDT</pubDate>
</item>
</channel>
</rss>