Floating Divs - What am I missing?

I'm trying to align two divs (a small one on the left and a
column on the right) to the top of a container div, then have a 3rd
div (the body content div) appear below the top left div, but
beside the top right div.
But the body content div is appearing below the top right div
instead of beside it -- I can't figure out why...
See what I mean at:
http://staging.digitaloilfield.com/whativegot.htm
This is what I want:
http://staging.digitaloilfield.com/whatiwant.htm
Can someone please advise?
Leif

Google "faux columns" - it's the best way.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"Leif S" <[email protected]> wrote in
message
news:eqdj89$69t$[email protected]..
> Okay... I've applied widths to floated elements and I'm
almost there.
>
> Does anyone know how I'd get the homerightcontainer to
be the same height
> as
> the homebodycontainer? (in other words, the
homebodycontainer sets the
> height
> of the homerightcontainer)
>
> Also, now there's a small gap (in IE6) just above the
navindicator and
> homerightcontainer, even though I've set top margin to
0px...
>

Similar Messages

  • Floating divs of different heights

    I have a layout that a client requires that is 3 columns wide
    I am trying to set it up with floating divs and the divs have different heights.
    What is the best way to lay this out and is it possible to use Edge Reflow to do this as when I lay out the divs at my starting resolution and then start to change it for media queries the divs move from their starting positions.
    Hope it clear what I'm trying to achieve.
    Would I be better using Dreamweaver to do this than edge reflow?

    I think you are expeciencing someting similar to this user's post:
      http://forums.adobe.com/message/5542351#5542351
    We are looking at solutions, and it definitely helps us to understand how users experience the problem.

  • Floating divs made to have equal heights

    Hi all
    Is there a CSS way to get two divs (that will have different
    lengths of
    text) to have the same height. If not CSS what other
    techniques are there to
    achieve this - or is it not possible
    Thanks
    B
    http://www.visit-the-coqui.com
    If you are thinking of a vacation to Puerto Rico
    http://www.thegadgettraveler.com
    Travel gadget and other news here

    Thanks Osgood - I did not think of the faux column option and
    using it for
    divs - I'll check that out - thanks
    Thanks for the P7 link too
    B
    http://www.visit-the-coqui.com
    If you are thinking of a vacation to Puerto Rico
    http://www.thegadgettraveler.com
    Travel gadget and other news here
    "Osgood" <[email protected]> wrote in
    message
    news:gbg62d$14n$[email protected]..
    >B wrote:
    >> Hi all
    >>
    >> Is there a CSS way to get two divs (that will have
    different lengths of
    >> text) to have the same height. If not CSS what other
    techniques are there
    >> to achieve this - or is it not possible
    >>
    >> Thanks
    >>
    >
    > You can use javascript, read this article about eqaul
    height columns
    >
    >
    >
    http://www.projectseven.com/tutorials/css/pvii_columns/index.htm
    >
    >
    > or you can wrap the two floated <divs> in another
    <div> and use a
    > repeating background image, google 'faux columns'

  • Mkfld32fromschema does nothing, what am i missing?

    mkfld32fromschema -b 200 -i template.xsd -o jimbo
    jimbo contains nothing.
    template.xsd contains:
    <xs:schema xmlns:xs='http://www.w3.org/2001/XMLSchema' elementFormDefault="unqualified" >
    <xs:element name="template" type="rootType" />
    <xs:complexType name="rootType" >
    <xs:sequence >
    <xs:element name="templateId" type="templateIdType" />
    <xs:element name="datelastused" type="datelastused" />
    <xs:element name="numberuses" type="numberuses" />
    <xs:element name="lastuserncid" type="lastuserncid" />
    </xs:sequence>
    </xs:complexType>
    <xs:simpleType name="templateIdType" >
    <xs:restriction base="xs:string" >
    </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="datelastused" >
    <xs:restriction base="xs:string" >
    </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="numberuses" >
    <xs:restriction base="xs:string" >
    </xs:restriction>
    </xs:simpleType>
    <xs:simpleType name="lastuserncid" >
    <xs:restriction base="xs:string" >
    </xs:restriction>
    </xs:simpleType>
    </xs:schema>
    What am I missing?
    Jim

    All,
    For others looking at this thread in the future, this question was answered at Complex xsd with many nested types as follows:
    Jim,
    mkfld32fromschema is designed to look for <xsd:element name="name" type="type"> elements within schema files. If you installed the SALT samples, you can look at the $TUXDIR/samples/salt/sca/uBikeSCA/uBike.xsd file, which contains
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="tuxedo" targetNamespace="tuxedo">
    <xsd:complexType name="BikeInventory">
    <xsd:sequence>
    <xsd:element name="BIKES" type="Bike" minOccurs="0" maxOccurs="unbounded"/>
    <xsd:element name="STATUS" type="xsd:string" maxOccurs="1"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="Bike">
    <xsd:sequence>
    <xsd:element name="SERIALNO" type="xsd:string"/>
    <xsd:element name="SKU" type="xsd:string"/>
    <xsd:element name="NAME" type="xsd:string"/>
    <xsd:element name="TYPE" type="xsd:string"/>
    <xsd:element name="PRICE" type="xsd:float"/>
    <xsd:element name="SIZE" type="xsd:int"/>
    <xsd:element name="INSTOCK" type="xsd:string"/>
    <xsd:element name="ORDERDATE" type="xsd:string"/>
    <xsd:element name="COLOR" type="xsd:string"/>
    <xsd:element name="CURSERIALNO" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>
    The command mkfld32fromschema -b 200 -i $TUXDIR/samples/salt/sca/uBikeSCA/uBike.xsd produces the following output:
    #NAME ID TYPE FLAG COMMENT
    *base 200
    BIKES 1 fml32
    STATUS 2 string
    SERIALNO 3 string
    SKU 4 string
    NAME 5 string
    TYPE 6 string
    PRICE 7 float
    SIZE 8 long
    INSTOCK 9 string
    ORDERDATE 10 string
    COLOR 11 string
    CURSERIALNO 12 string
    Note that since the type="Bike" associated with name="BIKES" does not start with xsd: , this is assumed to be a nested fml32 type.
    In your case, you can get some output from mkfld32from schema by changing xs: to xsd: in the schema file. The command sed 's!xs:!xsd:!g' <template.xsd | mkfld32fromschema -b 200 -o jimbo will write the following to jimbo:
    #NAME ID TYPE FLAG COMMENT
    *base 200
    template 1 fml32
    templateId 2 fml32
    datelastused 3 fml32
    numberuses 4 fml32
    lastuserncid 5 fml32
    Note that the output is being produced from the date at the top of the file, such as
    <xs:element name="datelastused" type="datelastused" />
    Since these types do not start with xsd: the output type is fml32.
    In order to parse the data in the lower part of the file such as
    *<xs:simpleType name="datelastused" >
    <xs:restriction base="xs:string" >
    </xs:restriction>
    </xs:simpleType>*
    it would be necessary to do more extensive editing on the file contents before passing it to mkfld32fromschema.
    Regards,
    Ed

  • Issues with floated DIV layout

    Hi I am having problems with my floated DIV layout on the following site in I.E 6/7 but not 8.
    I have tried display: inline thinking it may be a margin/padding issue?
    http://www.sopasbeauty.co.uk
    what am I doing wrong, should I be adding clearfloats to separate area's of the page??
    Mark

    First, open the page in DW and use FILE | Convert > XHTML 1.0 Transitional.  Then try changing this -
    <div class="boxes" id="box1">
          <h1>Acrylic Nails</h1>

  • I want to use wifi for Apple TV, but it doesn't prompt for a password, so never connects.  What am I missing?  Can I only use it via a non-password-protected wifi connection?

    I want to use wifi for Apple TV, but it doesn't prompt for a password, so never connects.  What am I missing?  Can I only use it via a non-password-protected wifi connection?

    Hi - you might want to post this question on the Apple TV area - you would probably get a quicker response - if you have a specific question relating to Apple routers then post back here

  • IPhone 5s doesn't ring and goes directly to voice mail. Do not disturb is disabled. Have reset network settings and did a hard reset.  What am I missing?

    iPhone 5s doesn't ring and goes directly to voice mail. Do not disturb is disabled. Have reset network settings and did a hard reset.  What am I missing?

    Call your phone carrier - that's a problem for them to resolve.

  • I would like to be able to edit MP4s in CS5.  I can not open the file. What am I missing?

    I would like to be able to edit MP4s in CS5.  I can not open the file. What am I missing?

    According to the publisher For GoSystem Tax, the 32-bit version of Internet Explorer 8, 9, or 10 is required.  Which means it can't be accessed from an iPad.  This seems weird.  I would recommend you contact the publisher.

  • HT1209 My Itunes Library and iPhone have fallen out of sync on music over the yearsare - how can I compare my itunes library with my Iphone  to see what songs are missing from my library so I can then bring my Library up to date

    My Itunes Library and iPhone have fallen out of sync on music over the yearsare - how can I compare my itunes library with my Iphone  to see what songs are missing from my library so I can then bring my Library up to date

    Hello Solid Buck,
    Thank you so much for providing the details about the duplicate song issue you are experiencing.  It sounds like you would like to remove the duplicate songs that will not play on your iPhone, but when you connect it to iTunes, iTunes only shows you one copy of the song on your iPhone. 
    In this situation, I recommend deleting the individual songs that do not play directly from your iPhone.  I found the steps to do this on page 61 of the iPhone User Guide (http://manuals.info.apple.com/en_US/iphone_user_guide.pdf):
    Delete a song from iPhone: In Songs, swipe the song, then tap Delete.
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • No Mirroring in Ipad 2? I have IPAD2 and Apple Tv 4.3. I can airplay videos/music from Ipad2 to my HDTV via ATV, but I cant mirror it. When I select airplay to switch from Ipad2 to Apple TV, Mirroring does not show as an option. What am I missing?

    No Mirroring in Ipad 2?
    I have IPAD2 and Apple Tv 4.3. I can airplay videos/music from Ipad2 to my HDTV via ATV, but I cant mirror it. When I select airplay to switch from Ipad2 to Apple TV, Mirroring does not show as an option. What am I missing?

    That feature is not yet available, it is coming with IOS 5
    http://www.apple.com/ca/ios/ios5/features.html

  • In iTunes 10, I could type "Sinatra" in the search file, and would get a list of all tracks with "Sinatra" in any field.   In iTunes 11 I get these clever little windows, with nice arrows, but no lists to view.   What am I missing?

    In iTunes 10, I could type "Sinatra" in the search file, and would get a list of all tracks with "Sinatra" in any field.   In iTunes 11 I get these clever little windows, with nice arrows, but no lists to view.   What am I missing?

    Thanks for chipping in.   I discovered something after trying what you suggested.   I have quite a few collections of hits by year from Time Life and Billboard.  I've eliminated duplicate tracks that appear in both collections (or other CDs for that matter), but cross-reference the CD where I deleted the track and placed in in the comments section of the CD track I retained.   If I "search" by song name, only the remaining track appears.   But if I want to hear for example Classic Rock 1964, only those tracks remaining would be there when I pull up that CD.   So, I type "Classic Rock 1964,"  in the search field.  First the boxes on the right of the screen open up showing album icons.  Showing four tracks by album with a button to view 10 more, then four songs with an option to vies 18 more.   I finally noticed that at the top of the boxes is a blue band that reads, :Show Classic Rock 1964 in Music.  When I double click on this blue band, all 24 tracks from the original CD appear in the song list format even though I had deleted two of them because they appeard in a Beach Boys CD.   On those tracks, I had referenced Classic Rock 1964 in the comments field.    So, bottom line, Search will also look in the comments field if you click "filter by all" in the magnifying glass to the left of the search field.   And you can move all tracks that if finds into a song list by double clicking on the blue band.

  • How to tell what fonts are missing in a Photosohp CS5 document?

    Hello!  I have received some work from a graphic designer.  I need to modify some of the text in the document.  When I open the document I get an error message:
    Some text layers might need to be updated before they can be used for vector based output.  Do you want to update these layers now?  [Update] [No]
    If I click [Update] it replaces the font with Myriad Pro.  If I click [No] the text looks the way the designer intended, but I have the exclamation mark-triangle symbol over the layer with the text.  If I try to edit the text I get another warning:
    Editing or rendering the text layer "Text Layer" will cause its layout to change.  Continue?  [Cancel]  [OK]
    The same behavior described above occurs.  If I click [Cancel] I obviously can't edit the text.  If I click [OK] it changes the font to Myriad Pro.
    I would like to determine what font the layer is using.  I could swear that previous versions of Photoshop would tell me what fonts were missing when I opened a document.  I can't use the text tool to select the text without it changing the font.  Other posts have mentioned using the text tool to look at the text drop-down to find a greyed-out font which indicates the missing font.  I do not have that.  I only have perhaps 200 fonts installed.  Can anyone tell me how to determine what fonts a .PSD document is using?  I would prefer not to bug the graphic designer if possible.  Thanks much!
    ~ Dan

    Not sure why you are getting ""Font is present on the system but requires a layout change.", usually you do not get that instead the name of the font shows.
    We use extensis Universal Type Client, so the fonts load automatically upon opening files, and never really get missing fonts in Photoshop.
    Actually fontbook has auto font loading if you want to give that a try. Fontbook >> Preferences

  • Hi I am a new iMac user. I got my iTunes on here finally, but now it is telling me I haven't authorized my computer? When I ask @ the app. store- no answers... What did I miss?

    Hi, I am a new iMac user and I finally got my itunes to recognize  my music to the iMac, but now it says my computer is not authorized?! When I ask at the App. store about this- they have nothing, but that is where the iMac sends me? So what did I miss?

    TARDISvt wrote:
    When I click on the apple in the left cornor I get App. Store- but I do not get the choice to authorize?...
    You need to Open iTunes and then click on Store in the Menu Bar.
    See this Discussion...
    https://discussions.apple.com/thread/4631735?tstart=0

  • My Mother in law messed up my Adobe reader some how to the point that it is no longer in my computer. I have tried to download it from the internet but it is not working. What am I missing? what else do I need to do? I am not even able to watch youtube...

    My Mother in law messed up my Adobe reader some how to the point that it is no longer in my computer. I have tried to download it from the internet but it is not working. What am I missing? what else do I need to do? I am not even able to watch youtube...

    Soccerdm,
    a direct download of Adobe Reader X 10.1.4 (which seems to be the most recent standalone version that runs on Mac OS X 10.5.8) is here.

  • I need to upgrade itunes and have 120 gb free space, however, when I go to install it says I'm out of space. The files are only 42 mb. What am I missing?

    When I go to upgrade my itunes software I get a message that I do not have enough space.  My hard drive has 120 gb free and the files are only 42 mb. What am I missing?

    You Hard Drive might be framented or have bad sectors.  Use Windows utility to deframent the drive and Scan Disk for file allocation errors or bad sectors.

Maybe you are looking for

  • ADF Popup issue with table row not selected

    OK, imagine this scenario. There is a page displaying a table of employees, and when you click on the employee_id (which is shown as URL), which is one of the columns of the table, a popup displays, showing the details of that particular employee. No

  • How to control "Adobe PDF" Printer?

    Hello Everyone,      We have a designed a large crystal report containing around 270 pages with lots of high quality images related to properties available for sale. When we try to export this report to PDF after exporting 20-50 pages (depending on t

  • EXIT command

    hi, will EXIT command work in case i dont include START-OF-SELECTION event in my code? In my requirement i have to use an EXIT command after select stmt but as i am writing the code inside an include program i can not use START-OF-SELECTION event.

  • Result Set - XML conversion - Problem in FormattedDataSet

    Hi, I'm trying to convert the JDBC resultset into a XML file. I read somewhere that FormattedDataSet interface has many methods that are very useful in converting the resultset to XML. I downloaded the following files as mentioned in the website: 1.

  • OA Page Region Layout Question

    Hi Experts, I'm building an OAF page in R12.1.3 and need to put two rich contents side-by-side, i.e., two regions displaying left right in one page. However, I tried most of the layout in a page, all of them showed multiple regions vertically. What l