![]() |
|
|
Welcome to the { mindfrost82.com } forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
wrapper question???
Hi, This is the second time that I have had a wrapper question. Could someone
please give me a hand with this???? I also would greatly appreciate being pointed in the direction of a tutorial on wrappers so that I can wrap my head around it!!! I am trying to get a search text box and button to stay in place in a layer relative to the page. I know that I need a wrapper but everytime I try and write it, everything is in the wrong place. If anyone could tell me what I am doing wrong I would greatly appreicate it!!! I have attached the code. You can view the homepage at www.lacefielddesigns.com. The search box is in the top right corner. Thanks again, Margaret <map name="m_top_nav_new_r1_c19"> <area shape="poly" coords="26,64,42,64,42,83,26,83,26,64" href="http://www.lacefielddesigns.com/cgi/shopper.cgi?display=action&emptyoverri de=yes&template=PDGTemplates/Header_Footer/Blog.htm" alt="" > </map> </table> <div id="Layer1" style="position:absolute; left:706px; top:24px; width:247px; height:53px; z-index:1"> <form name="form1" method="post" action="/cgi/shopper.cgi"> <input type=hidden name="defaction" value="search"> <table border=0 cellspacing=0 cellpaddin=0> <tr> <td><input type="text" name="keywords"></td> <td><input type=image src="/PDGTemplates/Plain/images/search.gif" name=search value=search alt="Search"></td> </tr> </table> </form> </div> </td></tr> <tr><td bgcolor="white"> |
|
|||
|
Re: wrapper question???
"margaretx3" <webforumsuser@macromedia.com> wrote in message
news:fo2q1g$oib$1@forums.macromedia.com... > Hi, This is the second time that I have had a wrapper question. Could > someone > please give me a hand with this???? I also would greatly appreciate being > pointed in the direction of a tutorial on wrappers so that I can wrap my > head > around it!!! I am trying to get a search text box and button to stay in > place > in a layer relative to the page. I know that I need a wrapper but > everytime I > try and write it, everything is in the wrong place. If anyone could tell > me > what I am doing wrong I would greatly appreicate it!!! I have attached > the > code. You can view the homepage at www.lacefielddesigns.com. The search > box > is in the top right corner. Thanks again, Margaret You do not need to add a div to create a wrapper, you already have *two*, the form and the table. Your problem is that you have that "layer" outside of your wrapper DIV, so it takes BODY for reference to position itself (it is looking for a parent that is positioned) instead of your main "wrapper". Move that layer *inside* wrapper and things should start to improve... -- Thierry Articles and Tutorials: http://www.TJKDesign.com/go/?0 -- Keep your markup *clean* with these DW extensions and scripts: http://www.divahtml.com/products/scr...extensions.php > <map name="m_top_nav_new_r1_c19"> > <area shape="poly" coords="26,64,42,64,42,83,26,83,26,64" > href="http://www.lacefielddesigns.com/cgi/shopper.cgi?display=action&emptyoverri > de=yes&template=PDGTemplates/Header_Footer/Blog.htm" alt="" > > </map> > </table> > <div id="Layer1" style="position:absolute; left:706px; top:24px; > width:247px; > height:53px; z-index:1"> > <form name="form1" method="post" action="/cgi/shopper.cgi"> > <input type=hidden name="defaction" value="search"> > <table border=0 cellspacing=0 cellpaddin=0> > <tr> > <td><input type="text" name="keywords"></td> > <td><input type=image src="/PDGTemplates/Plain/images/search.gif" > name=search value=search alt="Search"></td> > </tr> > </table> > </form> > </div> > </td></tr> > <tr><td bgcolor="white"> > |
|
|||
|
Re: wrapper question???
Margaret:
This may help you understand positioning a bit - There are 4 different types of positioning: Absolute Relative Fixed Static Here is a brief explanation of each kind of positioning (with regard to placement of elements on the page only).... Position:absolute (or A/P elements) ----------------------- This does several things - 1. It 'removes' the element from the flow of the code on the* page so that it can no longer influence the size or position of any other pa*ge element (except for those contained within it, of course). 2. The absolutely positioned element takes its position from the position of its closest PA*RENT *positioned* element - in the absence of any explicitly positioned parent, this will default to the <body> tag, which is always positioned *at 0,0 in the browser viewport. This means that it doesn't matter where in the HTML code the laye*r's code appears (between <body> and </body>), its location on the screen will not change (this assumes that you have not positioned the A/P element within a table or another A/P element, of course). Furthe*rmore, the space in which this element would have appeared were it not positi*oned is not preserved on the screen. In other words, absolutely positioned elements don't take up any space on the page. In fact, they FLOAT over the page. Position:relative (or R/P elements) ---------------------- In contrast to absolute positioning, a relatively positioned page element is *not* removed from t*he flow of the code on the page, so it will use the spot where it would have* appeared based on its position in the code as its zero point reference. If* you then supply top, right, bottom, or left positions to the style for this *element, those values will be used as offsets from its zero point. This means that it DOES matter where in the code the relativ*ely positioned element appears (, as it will be positioned in that location (*factoring in the offsets) on the screen (this is true for any placement in the code). Furthermore, the space where this e*lement would have appeared is preserved in the display, and can therefore* affect the placement of succeeding elements. This means that the taller a relatively positioned element is, the more space it forces on the page. Position:static ------------------- As with relative position, static positions also "go with *the flow". An element with a static position cannot have values for offset*s (top, right, left, bottom) or if it has them, they will be ignored. Unless explicitly positioned, all div elements default to static positioning. Position:fixed ------------------ A page element with this style will not scroll as the page c*ontent scrolls. Support for this in elements other than page backgrounds is *quirky There are several other things you need to know: 1. ANY page element can be positioned - paragraphs, tables, images, lists, etc. 2. The <div> tag is a BLOCK level tag. This means that if it is not positioned or explicitly styled otherwise, a) it will always begin on a new line on the screen, and b) it will always force content to a new line below it, and c) it will always take up the entire width of its container (i.e., width:100%). 3. The placement of A/P elements *can* affect the BEHAVIOR of other elements on the page. For example, a 'layer' placed over a hyperlink will mask that hyperlink. You can see a good example of the essential difference between absolute and relative positioning here - http://www.great-web-sights.com/g_layersdemo.asp You can see a good demonstration of why using layers for a page layout tool is dangerous here - http://www.great-web-sights.com/g_layer-overlap.asp -- Murray --- ICQ 71997575 Adobe Community Expert (If you *MUST* email me, don't LAUGH when you do so!) ================== http://www.projectseven.com/go - DW FAQs, Tutorials & Resources http://www.dwfaq.com - DW FAQs, Tutorials & Resources ================== "Thierry" <thierry@invalid.com> wrote in message news:fo2qn1$p9h$1@forums.macromedia.com... > "margaretx3" <webforumsuser@macromedia.com> wrote in message > news:fo2q1g$oib$1@forums.macromedia.com... >> Hi, This is the second time that I have had a wrapper question. Could >> someone >> please give me a hand with this???? I also would greatly appreciate >> being >> pointed in the direction of a tutorial on wrappers so that I can wrap my >> head >> around it!!! I am trying to get a search text box and button to stay in >> place >> in a layer relative to the page. I know that I need a wrapper but >> everytime I >> try and write it, everything is in the wrong place. If anyone could tell >> me >> what I am doing wrong I would greatly appreicate it!!! I have attached >> the >> code. You can view the homepage at www.lacefielddesigns.com. The search >> box >> is in the top right corner. Thanks again, Margaret > > You do not need to add a div to create a wrapper, you already have *two*, > the form and the table. > Your problem is that you have that "layer" outside of your wrapper DIV, so > it takes BODY for reference to position itself (it is looking for a parent > that is positioned) instead of your main "wrapper". > Move that layer *inside* wrapper and things should start to improve... > > -- > Thierry > Articles and Tutorials: http://www.TJKDesign.com/go/?0 > -- > Keep your markup *clean* with these DW extensions and scripts: > http://www.divahtml.com/products/scr...extensions.php > > >> <map name="m_top_nav_new_r1_c19"> >> <area shape="poly" coords="26,64,42,64,42,83,26,83,26,64" >> href="http://www.lacefielddesigns.com/cgi/shopper.cgi?display=action&emptyoverri >> de=yes&template=PDGTemplates/Header_Footer/Blog.htm" alt="" > >> </map> >> </table> >> <div id="Layer1" style="position:absolute; left:706px; top:24px; >> width:247px; >> height:53px; z-index:1"> >> <form name="form1" method="post" action="/cgi/shopper.cgi"> >> <input type=hidden name="defaction" value="search"> >> <table border=0 cellspacing=0 cellpaddin=0> >> <tr> >> <td><input type="text" name="keywords"></td> >> <td><input type=image src="/PDGTemplates/Plain/images/search.gif" >> name=search value=search alt="Search"></td> >> </tr> >> </table> >> </form> >> </div> >> </td></tr> >> <tr><td bgcolor="white"> >> > |
|
|||
|
Re: wrapper question???
"Murray *ACE*" <forums@HAHAgreat-web-sights.com> wrote in message
news:fo2sv2$rcl$1@forums.macromedia.com... > 3. The placement of A/P elements *can* affect the BEHAVIOR of other > elements > on the page. For example, a 'layer' placed over a hyperlink will mask > that hyperlink. "position:relative" can play a role too. Using the radion buttons on the page below, one can set the A or B box to "position:relative" to see that the stacking context *change*. http://tjkdesign.com/articles/z-inde...ents_stack.asp -- Thierry Articles and Tutorials: http://www.TJKDesign.com/go/?0 -- Keep your markup *clean* with these DW extensions and scripts: http://www.divahtml.com/products/scr...extensions.php |
|
|||
|
Re: wrapper question???
True - I'll have to think how to incorporate that notion into my snippet....
-- Murray --- ICQ 71997575 Adobe Community Expert (If you *MUST* email me, don't LAUGH when you do so!) ================== http://www.projectseven.com/go - DW FAQs, Tutorials & Resources http://www.dwfaq.com - DW FAQs, Tutorials & Resources ================== "Thierry" <thierry@invalid.com> wrote in message news:fo304b$183$1@forums.macromedia.com... > "Murray *ACE*" <forums@HAHAgreat-web-sights.com> wrote in message > news:fo2sv2$rcl$1@forums.macromedia.com... >> 3. The placement of A/P elements *can* affect the BEHAVIOR of other >> elements >> on the page. For example, a 'layer' placed over a hyperlink will mask >> that hyperlink. > > "position:relative" can play a role too. > Using the radion buttons on the page below, one can set the A or B box to > "position:relative" to see that the stacking context *change*. > http://tjkdesign.com/articles/z-inde...ents_stack.asp > > -- > Thierry > Articles and Tutorials: http://www.TJKDesign.com/go/?0 > -- > Keep your markup *clean* with these DW extensions and scripts: > http://www.divahtml.com/products/scr...extensions.php > |
|
|||
|
Re: wrapper question???
O.K...I am so confused....what is my 'main wrapper'??? Which table do I move
it inside of and where???? Or am I supposed to move it inside the 'form' and where??? Am I also supposed to make the position relative???? I am so sorry....I just don't get it... |
|
|||
|
Re: wrapper question???
"margaretx3" <webforumsuser@macromedia.com> wrote in message
news:fo5b3a$gq2$1@forums.macromedia.com... > O.K...I am so confused....what is my 'main wrapper'??? The "main wrapper" is the one that wraps almost everything in your page. In your document, it is called "wrapper" ;) > Which table do I move > it inside of and where???? Or am I supposed to move it inside the 'form' > and > where??? Am I also supposed to make the position relative???? I am so > sorry....I just don't get it... Move your DIV called "Layer1" inside that wrapper, between: <div id="wrapper"> and <div id="Layer2"> -- Thierry Articles and Tutorials: http://www.TJKDesign.com/go/?0 -- Keep your markup *clean* with these DW extensions and scripts: http://www.divahtml.com/products/scr...extensions.php |
|
|||
|
Re: wrapper question???
O.K... here is every line of code from my page and 'wrapper' is just not in
here????? There also is no 'Layer2'???? Am I crazy, or blind....this is making me nuts!!!! <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><div align="center"> <table width="70%" cellpadding=0 cellspacing=0 border=1 bordercolor="#333333" bgcolor="#333333"> <tr><td> <table border="0" align="center" cellpadding="0" cellspacing="0"> <!-- fwtable fwsrc="blank_01.png" fwbase="top_nav_new.jpg" fwstyle="Dreamweaver" fwdocid = "1961784580" fwnested="1" --> <tr> <td rowspan="3"><img name="top_nav_new_r1_c1" src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/top_nav_new_r 1_c1.jpg" width="21" height="90" border="0" alt=""></td> <td rowspan="2"><img name="top_nav_new_r1_c2" src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/top_nav_new_r 1_c2.jpg" width="43" height="64" border="0" alt=""></td> <td rowspan="3"><img name="top_nav_new_r1_c3" src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/top_nav_new_r 1_c3.jpg" width="31" height="90" border="0" alt=""></td> <td rowspan="2"><img name="top_nav_new_r1_c4" src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/top_nav_new_r 1_c4.jpg" width="84" height="64" border="0" alt=""></td> <td rowspan="3"><img name="top_nav_new_r1_c5" src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/top_nav_new_r 1_c5.jpg" width="32" height="90" border="0" alt=""></td> <td rowspan="2"><img name="top_nav_new_r1_c6" src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/top_nav_new_r 1_c6.jpg" width="59" height="64" border="0" alt=""></td> <td rowspan="3"><img name="top_nav_new_r1_c7" src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/top_nav_new_r 1_c7.jpg" width="34" height="90" border="0" alt=""></td> <td><table align="left" border="0" cellpadding="0" cellspacing="0" width="379"> <tr> <td><img name="top_nav_new_r1_c8" src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/top_nav_new_r 1_c8.jpg" width="68" height="33" border="0" alt=""></td> <td><a href="javascript:;" target="_top" onClick="MM_nbGroup('down','navbar1','ShoppingButt on','/PDGTemplates/Header_Foot er/Top_Nav_Images/Top_Nav_New/images/ShoppingButton_f3.jpg',1);MM_goToURL('paren t','http://www.lacefielddesigns.com/cgi/shopper.cgi?display');return document.MM_returnValue" onMouseOver="MM_nbGroup('over','ShoppingButton','/PDGTemplates/Header_Footer/Top _Nav_Images/Top_Nav_New/images/ShoppingButton_f2.jpg','/PDGTemplates/Header_Foot er/Top_Nav_Images/Top_Nav_New/images/ShoppingButton_f4.jpg',1);" onMouseOut="MM_nbGroup('out');"><img src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/ShoppingButto n.jpg" alt="" name="ShoppingButton" width="119" height="33" border="0"></a></td> <td><a href="#" onMouseOut="MM_nbGroup('out');" onMouseOver="MM_nbGroup('over','top_nav_new_r1_c12 ','/PDGTemplates/Header_Footer /Top_Nav_Images/Top_Nav_New/images/top_nav_new_r1_c12_f2.jpg','/PDGTemplates/Hea der_Footer/Top_Nav_Images/Top_Nav_New/images/top_nav_new_r1_c12_f4.jpg',1);" onClick="MM_nbGroup('down','navbar1','top_nav_new_ r1_c12','/PDGTemplates/Header_ Footer/Top_Nav_Images/Top_Nav_New/images/top_nav_new_r1_c12_f3.jpg',1);MM_goToUR L('parent','http://www.lacefielddesigns.com/cgi/shopper.cgi?listcategories');ret urn document.MM_returnValue"><img src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/top_nav_new_r 1_c12.jpg" alt="" name="top_nav_new_r1_c12" width="91" height="33" border="0"></a></td> <td><a href="#" onMouseOut="MM_nbGroup('out');" onMouseOver="MM_nbGroup('over','SearchButton','/PDGTemplates/Header_Footer/Top_N av_Images/Top_Nav_New/images/SearchButton_f2.jpg','/PDGTemplates/Header_Footer/T op_Nav_Images/Top_Nav_New/images/SearchButton_f4.jpg',1);" onClick="MM_nbGroup('down','navbar1','SearchButton ','/PDGTemplates/Header_Footer /Top_Nav_Images/Top_Nav_New/images/SearchButton_f3.jpg',1);MM_goToURL('parent',' http://www.lacefielddesigns.com/cgi/shopper.cgi?display=search');return document.MM_returnValue"><img src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/SearchButton. jpg" alt="" name="SearchButton" width="101" height="33" border="0"></a></td> </tr> </table></td> <td rowspan="3"><img name="top_nav_new_r1_c17" src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/top_nav_new_r 1_c17.jpg" width="6" height="90" border="0" alt=""></td> <td rowspan="2"><img name="top_nav_new_r1_c18" src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/top_nav_new_r 1_c18.jpg" width="77" height="64" border="0" alt=""></td> <td rowspan="3"><img name="top_nav_new_r1_c19" src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/top_nav_new_r 1_c19.jpg" width="48" height="90" border="0" usemap="#m_top_nav_new_r1_c19" alt=""></td> <td rowspan="2"><img name="top_nav_new_r1_c20" src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/top_nav_new_r 1_c20.jpg" width="110" height="64" border="0" alt=""></td> <td rowspan="3"><img name="top_nav_new_r1_c21" src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/top_nav_new_r 1_c21.jpg" width="26" height="90" border="0" alt=""></td> </tr> <tr> <td><img name="top_nav_new_r2_c8" src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/top_nav_new_r 2_c8.jpg" width="379" height="31" border="0" alt=""></td> </tr> <tr> <td><a href="javascript:;" target="_top" onClick="MM_nbGroup('down','navbar1','HomeButton', '/PDGTemplates/Header_Footer/T op_Nav_Images/Top_Nav_New/images/HomeButton_f3.jpg',1);MM_goToURL('parent','http ://www.lacefielddesigns.com');return document.MM_returnValue" onMouseOver="MM_nbGroup('over','HomeButton','/PDGTemplates/Header_Footer/Top_Nav _Images/Top_Nav_New/images/HomeButton_f2.jpg','/PDGTemplates/Header_Footer/Top_N av_Images/Top_Nav_New/images/HomeButton_f4.jpg',1);" onMouseOut="MM_nbGroup('out');"><img src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/HomeButton.jp g" alt="" name="HomeButton" width="43" height="26" border="0"></a></td> <td><a href="#" onMouseOut="MM_nbGroup('out');" onMouseOver="MM_nbGroup('over','CollectButton','/PDGTemplates/Header_Footer/Top_ Nav_Images/Top_Nav_New/images/CollectButton_f2.jpg','/PDGTemplates/Header_Footer /Top_Nav_Images/Top_Nav_New/images/CollectButton_f4.jpg',1);" onClick="MM_nbGroup('down','navbar1','CollectButto n','/PDGTemplates/Header_Foote r/Top_Nav_Images/Top_Nav_New/images/CollectButton_f3.jpg',1);MM_goToURL('parent' ,'http://www.lacefielddesigns.com/cgi/shopper.cgi?display=action&emptyoverride=y es&template=PDGTemplates/Header_Footer/Collections.htm');return document.MM_returnValue"><img src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/CollectButton ..jpg" alt="" name="CollectButton" width="84" height="26" border="0"></a></td> <td><a href="javascript:;" target="_top" onClick="MM_nbGroup('down','navbar1','PaletteButto n','/PDGTemplates/Header_Foote r/Top_Nav_Images/Top_Nav_New/images/PaletteButton_f3.jpg',1);MM_goToURL('parent' ,'http://www.lacefielddesigns.com/cgi/shopper.cgi?display=action&emptyoverride=y es&template=PDGTemplates/Header_Footer/Palettes.htm');return document.MM_returnValue" onMouseOver="MM_nbGroup('over','PaletteButton','/PDGTemplates/Header_Footer/Top_ Nav_Images/Top_Nav_New/images/PaletteButton_f2.jpg','/PDGTemplates/Header_Footer /Top_Nav_Images/Top_Nav_New/images/PaletteButton_f4.jpg',1);" onMouseOut="MM_nbGroup('out');"><img src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/PaletteButton ..jpg" alt="" name="PaletteButton" width="59" height="26" border="0"></a></td> <td><table align="left" border="0" cellpadding="0" cellspacing="0" width="379"> <tr> <td><a href="javascript:;" target="_top" onClick="MM_nbGroup('down','navbar1','FabPillButto n','/PDGTemplates/Header_Foote r/Top_Nav_Images/Top_Nav_New/images/FabPillButton_f3.jpg',1);MM_goToURL('parent' ,'http://www.lacefielddesigns.com/cgi/shopper.cgi?display=action&emptyoverride=y es&template=PDGTemplates/Header_Footer/FabsPills.htm');return document.MM_returnValue" onMouseOver="MM_nbGroup('over','FabPillButton','/PDGTemplates/Header_Footer/Top_ Nav_Images/Top_Nav_New/images/FabPillButton_f2.jpg','/PDGTemplates/Header_Footer /Top_Nav_Images/Top_Nav_New/images/FabPillButton_f4.jpg',1);" onMouseOut="MM_nbGroup('out');"><img src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/FabPillButton ..jpg" alt="" name="FabPillButton" width="131" height="26" border="0"></a></td> <td><img name="top_nav_new_r3_c10" src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/top_nav_new_r 3_c10.jpg" width="31" height="26" border="0" alt=""></td> <td><a href="#" onMouseOut="MM_nbGroup('out');" onMouseOver="MM_nbGroup('over','LayetteButton','/PDGTemplates/Header_Footer/Top_ Nav_Images/Top_Nav_New/images/LayetteButton_f2.jpg','/PDGTemplates/Header_Footer /Top_Nav_Images/Top_Nav_New/images/LayetteButton_f4.jpg',1);" onClick="MM_nbGroup('down','navbar1','LayetteButto n','/PDGTemplates/Header_Foote r/Top_Nav_Images/Top_Nav_New/images/LayetteButton_f3.jpg',1);MM_goToURL('parent' ,'http://www.lacefielddesigns.com/cgi/shopper.cgi?display=action&emptyoverride=y es&template=PDGTemplates/Header_Footer/Layette.htm');return document.MM_returnValue"><img src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/LayetteButton ..jpg" alt="" name="LayetteButton" width="54" height="26" border="0"></a></td> <td><img name="top_nav_new_r3_c13" src="/PDGTemplates/Header_Footer/Top_Nav_Images/Top_Nav_New/images/top_nav_new_r 3_c13.jpg" width="31" height="26" border= |
|
|||
|
Re: wrapper question???
"margaretx3" <webforumsuser@macromedia.com> wrote in message
news:fo5g7b$lq3$1@forums.macromedia.com... > O.K... here is every line of code from my page and 'wrapper' is just not > in > here????? There also is no 'Layer2'???? Am I crazy, or blind....this is > making me nuts!!!! Didn't you post an URL? www.lacefielddesigns.com Isn't that page we were supposed to look at? -- Thierry Articles and Tutorials: http://www.TJKDesign.com/go/?0 -- Keep your markup *clean* with these DW extensions and scripts: http://www.divahtml.com/products/scr...extensions.php |
|
|||
|
Re: wrapper question???
On Sun, 3 Feb 2008 22:46:03 +0000 (UTC), "margaretx3"
<webforumsuser@macromedia.com> wrote: >O.K... here is every line of code from my page and 'wrapper' is just not in >here????? There also is no 'Layer2'???? Am I crazy, or blind....this is >making me nuts!!!! assuming you mean at homepage at www.lacefielddesigns.com. what's this just under the <body> tag ? <body bgcolor="a69f9a" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onload="MM_preloadImages('Home7/NewHome_r2_c11_f2.gif','Home7/NewHome_r2_c11_f4.gif','Home7/NewHome_r2_c11_f3.gif','Home7/NewHome_r2_c15_f2.gif','Home7/NewHome_r2_c15_f4.gif','Home7/NewHome_r2_c15_f3.gif','Home7/SearchButton_f2.gif','Home7/SearchButton_f4.gif','Home7/SearchButton_f3.gif','Home7/HomeButton_f2.gif','Home7/HomeButton_f4.gif','Home7/HomeButton_f3.gif','Home7/CollectButton_f2.gif','Home7/CollectButton_f4.gif','Home7/CollectButton_f3.gif','Home7/PaletteButton_f2.gif','Home7/PaletteButton_f4.gif','Home7/PaletteButton_f3.gif','Home7/FabPillButton_f2.gif','Home7/FabPillButton_f4.gif','Home7/FabPillButton_f3.gif','Home7/LayetteButton_f2.gif','Home7/LayetteButton_f4.gif','Home7/LayetteButton_f3.gif','Home7/ArtisanButton_f2.gif','Home7/ArtisanButton_f4.gif','Home7/ArtisanButton_f3.gif','Home7/NewHome_r4_c21_f2.gif','Home7/NewHome_r4_c21_f4.gif','Home7/NewHome_r4_c21_f3.gif','Home7/BlogButton_f2.gif','Home7/BlogButton_f4.gif','Home7/BlogButton_f3.gif','Home7/AboutButton_f2.gif',' Home7/AboutButton_f4.gif','Home7/AboutButton_f3.gif','Home7/NewHome_r11_c24_f2.gif','Home7/NewHome_r11_c24_f4.gif','Home7/NewHome_r11_c24_f3.gif');"> <div id="wrapper"> <div id="Layer2"> <table width="493" height="466" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="493" height="466" align="center" valign="middle"><!-- Begin XML Flash Slideshow v3 --> -- ~Malcolm N.... ~ |
![]() |
|
| Thread Tools | Search this Thread |
| Display Modes | |
|
|