Making Auto Height Divs, Maintaining Same Width

Hey on my website I have multiple pages with different heights and I am interested in making two banners, one left and right.
The Working Code I used is below:
<div id="left" style="background: url(img/Left.jpg);height: 1500px;width: 150px;float: left;">
</div>
<div id="right" style="background: url(img/Right.jpg);height: 1500px;width: 150px;float: right;">
</div>
This works correctly but with one problem I have to specify the exact height every single time. If I use auto height this only goes for approx. 100px.
I would like the banners to go non-stop until they reach the footer.
Thanks for the help.

Still not working here is what I did.
Pasted the following code in my .css document
#left {
clear:both;
background: url(img/Left.jpeg);
min-height: 610px;
width: 150px;
float: left;
#right {
clear:both;
background: url(img/Right.jpeg);
min-height: 610px;
width: 150px;
float: right;
Pasted the following code in my html document under 'boxcontent'
<div id="left"></div>
<div id="right"></div>
Placed the following .css code in my section called boxcontent
clear:both;
Nothing happens at all.

Similar Messages

  • How to maintain same width of columns across different table sections in OBIEE reprot

    I have a prompt and report (analysis) on the dashboard. In the report, there are tables sections.
    The problem is when I run the report, the column widths vary across different section of table. This report also showing totals too.
    The report needs to be fit so there is no horizontal scroll bar in the report.
    I have already given the same width in additional properties of column values, header and folder and in total's property in criteria and also in the result tab.
    I am new to OBIEE, so don't know how to fix it. any help would be appreciated.
    thanks in advance.

    You might want to post to the OBIEE discussion area
    Business Intelligence Suite Enterprise Edition

  • Auto height div?

    I'm working on a e-commerce template. It has different columns. Problem is Column 1 - nav columns and Column 2 - content can vary in height. I want to put a div around both that will auto size for height if one or the other column pushes it down so there will be all one unbroken area. Here's an example of Column one extending past Column 2.
    Appreciate the help. I'm already behind getting this site up.

    Wrap your floated divisions inside a #container or #wrapper division and apply overflow:hidden.  This will contain your floats.
    The magic of overflow hidden:
    http://colinaarts.com/articles/the-magic-of-overflow-hidden/
    Equal Height Columns (3 solutions):
    http://alt-web.com/Articles/Equal-Height-CSS-Columns.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Image width=auto height=auto problems in Internet Explorer

    I thought I was having an issue with my MM_swapimage in Internet explorer but it appears to be my images scale.
    I have my main large image that has a width=auto height=auto which does not appear in Internet Explorer only
    the smaller "thumb" images of varying size have a height=40px width=auto so that the different sizes of thumb images look horizontaly uniform. how do I get the images to work without setting the exact scale for each image?

    once I removed the "auto" setting everything worked just fine, the images came in at the proper pixel size, and the thumb nail images where proportional in size seeing how I had a height set of 40 px the width took care of itself.
    Any Ideas on where I can find a good tutorial on client login and password to access pages with their content?

  • How do you create aligned interactive text boxs in a PDF with the same width and height?

    how do you create aligned interactive text boxs in a PDF with the same width and height?
    Without free hand creating the sizing?

    Assuming by "interactive text boxes" you mean form fields; in Acrobat, make a form field, then copy it and paste. (GIve the pasted copy a different name so they don't genetate the same field feedback.) Now you have two fields of the exact same size. Shift-click or marquee-drag to select both, then right-click and choose a command from the Align, Distribute or Center menu.

  • Export to Excel: Row Auto Height Removed on Data Connection Refresh

    Hi all,
    When I perform a Data Connection Refresh on an Excel workbook exported from SharePoint it removes the row auto height I had in place, hiding valuable information. This is an additional column I added to perform some calculations.
    Any ideas?
    K.
    Personal Blog: http://thebitsthatbyte.com

    Hi Kelly,
    As I understand, you have a SharePoint list and click export to Excel under List tab. Then the list is exported to Excel spreadsheet.
    Generally speaking, all field column width and height keep in the same size when the list is exported to Excel. In Excel, under PAGE LAYOUT tab > Scale to Fit, make Width and Height to be Automatic and Scale to 100%.
    Then the cell should be good. If there is some column still exceed the width of Excel cell, please right click the cell > Format cells > Alignment > Text control, click Wrap text to increase the cell size to fit the text, or click Shrink to fit
    to shrink the text.
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • How to make panel collection with auto height in a ADF page

    Hi,
    I developed a page in ADF of version JDev 11.1.1.4.0 where I had a adf table under adf panel collection. Now I want to change the height based on my screen resolution.
    For width I used the styleClass as "AFStretchWidth" but couldnt find any option for auto height for table due to this I can see vertical scroll bar on my page which I want to avoid.
    Even I tired to create a customized styleClass as shown below but its fixed height but not dynamic
    IN CSS FILE :
    .lookUpPagePannelCollection{
    width:98.5% !important;;
    margin-left:5px;
    margin-left:5px;
    height: 15.5em !important;
    I want to use % in height attribute which is not supporting by panel collection, can anyone tell the alternative way or tell me which version of JDev had this option.
    Thanks in advance.

    Hi,
    Set <af:panelCollection> as a child component of <af:panelStretchLayout> and check output.
    Form Tag Documentation
    Geometry Management
    This component can be stretched by a parent layout component that stretches its children. e.g., another panelStretchLayout, panelSplitter.
    This component uses <f:facet name="top">, <f:facet name="bottom">, <f:facet name="start">, <f:facet name="end">, and <f:facet name="center"> to organize content into each stretched panel. The contents of the facet may be stretched except when the height or width of the facet is set to "auto" via the topHeight, bottomHeight, startWidth, or endWidth attributes which would then cause that facet content to use its natural browser height or width. Examples of child components that can be stretched inside of the panelStretchLayout facets include:
    <af:decorativeBox>
    <af:panelAccordion>
    <af:panelBox>
    <af:panelCollection>
    <af:panelGroupLayout layout="scroll">
    <af:panelGroupLayout layout="vertical">
    <af:panelHeader>
    <af:panelSplitter>
    <af:panelStretchLayout>
    <af:panelTabbed>
    <af:region>
    <af:table>
    <af:tree>
    <af:treeTable>
    See
    http://docs.oracle.com/cd/E14571_01/apirefs.1111/e12419/tagdoc/af_panelStretchLayout.html

  • Can't Auto Height Container

    How do I get the container to auto height for the larger DIVs inside it?
    www.seastrata.com/index-new.htm

    Divs are auto height by default as the amount of content you put inside them determines container height.  More content = more height.  Less content = less height.
    If you're floating elements inside your container, a phenomenon known as margin-collapse can occur. To overcome this, add overflow:hidden to your parent container.
    The magic of “overflow: hidden” — Articles — Colin Aarts, freelance web developer
    Nancy O.

  • Auto Height the Page Header

    Is there a way to Auto Height the Page Header. I am displaying Prompt values in the header of my report and they are getting cut off if multiple values are entered for a prompt.
    Thanks.

    Hi,
    Assuming that you will place prompt in a cell then try to use following options in Prperties-> display->
    1. autofit width
    2. autofit height
    Cheers,
    Suresh Aluri.

  • 100% height divs

    Hi! I'm trying to combine edge animate content with a very simple reflow layout of 100% width divs.
    The idea is to create a slideshow that will scroll each Edge Animate component fullscreen.
    I was wondering if there's a way to achieve a 100% height div in edge reflow.
    Thanks in advance

    Liquid layouts stretch to 100% of browser WIDTH.
    http://alt-web.com/CSS2-Liquid-Page.html
    Height should be determined by content. Thus your layout
    needs to be
    flexible to handle long pages and short pages.
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "c-fqgy" <[email protected]> wrote in
    message
    news:gcmapc$9qs$[email protected]..
    > I've been working on getting my webpage content area to
    be 100% of the
    browsers
    > size. I also want the div that is contained in that area
    to expand to 100%
    of
    > the browsers size.
    >
    > I've been looking around on the web trying to follow
    what others have
    showed
    > working examples of but so far none of them have been
    working for me. I
    was
    > hoping I could get some assistance for why it isn't
    working. Perhaps I
    haven?t
    > fully understood what they are explaining to me?
    >
    > Example Page:
    >
    http://www.webmasterworld.com/forum83/200.htm
    >
    > So far what I understand is that DIV's need a parent
    container to base
    their
    > size off of. ie the body. You also have to tell that
    parent container to
    be a
    > height of 100% so the div has something to work from.
    >
    > My parent however is a cell and I've tried attaching an
    ID=length to it
    and
    > other parts of my document including the original way
    explained in the
    example,
    > with body but I'm getting no changes. Which has left me
    stumped.
    >
    > My page is located:
    >
    http://www3.telus.net/public/surekiss/signature.htm
    >
    > Please ignore the bottom scroll bar. I didn't make the
    frame that is in
    the
    > DIV so it is too big to fit in its new containing area.
    >
    > Thank you for any help you can offer,
    >
    > Jenna
    >

  • How to make tabs with same width in tabbedPane?

    I have a JTabbedPane with seven tabs, but can I make them same width? and fill out whole top side.
    Thank you.

    not directly without knowing how much space there is an adding spaces to the labels accordingly to space them out. You'd have to modify the tabbedpane UI classes for the L&F.

  • Every text line automatically same width?

    I want to create a design were text on every line/row is exactly the same width, see example photo. What is the best and easiest way to do that?

    Good day!
    Have you tried »Justify all« in the Paragraph Panel?
    But quite frankly Photoshop (edited) may just not be the best choice for complex work with type.
    Regards,
    Pfaffenbichler

  • BUG - Artboard resizes on own when clicking height and then clicking width field

    Bug with artboard -
    I click on a square to create an artboard. Without changing anything if I click in the width field and then the height without changing anything, the art board resizes as shown in the second image in pic 1 (art board values change as shown in pic 2). If instead I click first in the height field and then width, they change as shown in the third pic (settings as in pic 3)
    Pic 1
    Pic 2
    Pic 3

    what version?

  • Hi there, I'm having my iPhoto (8.1.2 version) making auto-shutdown with no reason Does anybody know what shall I do with it? Regards, Miguel Sim

    Hi there,
    On my iMac from 2009 - 3,06 Ghz Core 2 Duo with Mac OS X lion 10.7.5 (11G63) I'm having the iPhoto (8.1.2 version) making auto-shutdown with no reason;
    Does anybody know what shall I do with it ???
    Regards,
    Miguel Sim.

    Hello again,
    Process:         iPhoto [2771]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         8.1.2 (8.1.2)
    Build Info:      iPhotoProject-4240000~8
    Code Type:       X86 (Native)
    Parent Process:  launchd [141]
    Date/Time:       2013-11-14 18:53:17.814 +0000
    OS Version:      Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:          106324 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  634 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      637A60DB-E15A-441E-BAAB-F21EF18FA1B6
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: 0x000000000000000a, 0x000000000cfbc000
    VM Regions Near 0xcfbc000:
        JS JIT generated code  000000000cfb4000-000000000cfbc000 [   32K] rwx/rwx SM=PRV 
    --> mapped file            000000000cfbc000-000000000cfcc000 [   64K] r--/rwx SM=COW  /Users/USER/Pictures/*/*.jpg
        TC malloc              000000000cfcc000-000000000d0cc000 [ 1024K] rw-/rwx SM=PRV 
    Application Specific Information:
    objc[2771]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib             0x9144ebe1 memmove$VARIANT$sse3x + 35
    1   com.apple.ImageIO.framework   0x99396ca0 _CGImageSourceBindToPlugin + 300
    2   com.apple.ImageIO.framework   0x99396b63 CGImageSourceGetType + 55
    3   com.apple.CoreGraphics        0x939bdc4c CGImageCreateWithJPEGDataProvider2 + 166
    4   com.apple.CoreGraphics        0x939bddc4 CGImageCreateWithJPEGDataProvider + 47
    5   com.apple.iPhoto              0x001aa38e 0x1000 + 1741710
    6   com.apple.iPhoto              0x0043d5a6 0x1000 + 4441510
    7   com.apple.iPhoto              0x00448902 0x1000 + 4487426
    8   com.apple.AppKit              0x9494f79d -[NSView _drawRect:clip:] + 3929
    9   com.apple.AppKit              0x9494d7bc -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 2650
    10  com.apple.AppKit              0x9494e193 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5169
    11  com.apple.AppKit              0x9494e193 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5169
    12  com.apple.AppKit              0x9494e193 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5169
    13  com.apple.AppKit              0x94947caa -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4817
    14  com.apple.AppKit              0x94940bd9 -[NSView displayIfNeeded] + 1365
    15  com.apple.AppKit              0x94945872 -[NSClipView _immediateScrollToPoint:] + 6543
    16  com.apple.AppKit              0x94943e2e -[NSClipView scrollToPoint:] + 234
    17  com.apple.AppKit              0x94a34137 -[NSScrollView scrollClipView:toPoint:] + 279
    18  com.apple.AppKit              0x94a33efb -[NSClipView _scrollTo:animateScroll:flashScrollerKnobs:] + 1533
    19  com.apple.AppKit              0x94a3711c -[NSClipView _scrollTo:animate:] + 62
    20  com.apple.AppKit              0x94a370d4 -[NSClipView _scrollTo:] + 48
    21  com.apple.AppKit              0x94a3709b -[NSClipView _scrollPoint:fromView:] + 107
    22  com.apple.AppKit              0x94a37029 -[NSView(NSPrivate) _scrollPoint:fromView:] + 50
    23  com.apple.AppKit              0x94a36fef -[NSView scrollPoint:] + 65
    24  com.apple.iPhoto              0x001c08e4 0x1000 + 1833188
    25  com.apple.iPhoto              0x001bff5b 0x1000 + 1830747
    26  com.apple.AppKit              0x949d1508 -[NSWindow sendEvent:] + 9384
    27  com.apple.AppKit              0x94969f77 -[NSApplication sendEvent:] + 4788
    28  com.apple.iPhoto              0x00229973 0x1000 + 2263411
    29  com.apple.AppKit              0x948fbb21 -[NSApplication run] + 1007
    30  com.apple.AppKit              0x94b8cac5 NSApplicationMain + 1054
    31  com.apple.iPhoto              0x00124b80 0x1000 + 1194880
    32  com.apple.iPhoto              0x00003172 0x1000 + 8562
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib        0x9982ab5e __select_nocancel + 10
    1   libdispatch.dylib             0x9c80bcbd _dispatch_mgr_invoke + 642
    2   libdispatch.dylib             0x9c80a853 _dispatch_mgr_thread + 53
    Thread 2:: Dispatch queue: CFPreferences Background Sync Queue
    0   libsystem_kernel.dylib        0x9982a71e __open_nocancel + 10
    1   libsystem_c.dylib             0x914c643d _gettemp + 554
    2   libsystem_c.dylib             0x914c65df mkstemp + 32
    3   com.apple.CoreFoundation      0x9685fc06 -[CFXPreferencesPropertyListSourceSynchronizer writePlistToDisk] + 1366
    4   com.apple.CoreFoundation      0x968243a3 -[CFXPreferencesPropertyListSourceSynchronizer synchronizeAlreadyFlocked] + 595
    5   com.apple.CoreFoundation      0x968240fa -[CFXPreferencesPropertyListSourceSynchronizer synchronize] + 522
    6   com.apple.CoreFoundation      0x9686750a __-[CFXPreferencesPropertyListSource synchronizeInBackgroundWithCompletionBlock:]_block_invoke_1 + 122
    7   libdispatch.dylib             0x9c809fbd _dispatch_call_block_and_release + 15
    8   libdispatch.dylib             0x9c80b943 _dispatch_queue_drain + 224
    9   libdispatch.dylib             0x9c80b7e8 _dispatch_queue_invoke + 47
    10  libdispatch.dylib             0x9c80aff0 _dispatch_worker_thread2 + 187
    11  libsystem_c.dylib             0x91478b24 _pthread_wqthread + 346
    12  libsystem_c.dylib             0x9147a6fe start_wqthread + 30
    Regards,
    Miguel Sim

  • Need to maintain same data in ECC and MDM

    Hi ,
    Could you please tel me why we need to maintain same data in MDM and ECC seperately.
    Regards
    Ramya

    HI Ramyadixit,
    It is important to understand that MDM and ERP do not replace eachother rather complement each other.
    Using SAPu2019s ERP suite as the foundation technology for an MDM implementation is problematic because, despite all the positives of ERP, flexibility is usually not associated with SAP systems.
    SAP ERP doesnu2019t offer the tools to manage master data in the ways required by todayu2019s complex organizations.SAP ERP isnu2019t designed for active management of critical master data. Specifically, SAPu2019s data matching capabilities are too basic. Its search functions might be good at u201Cexact matchu201D but they are not as strong at the kind of u201Cfuzzy searchingu201D that is so important in uncovering duplicate entries with subtle differences. For the same reason, users are far more likely to create new duplicate customer records in SAP, and thereu2019s no way to create a u201Cgolden copyu201D of master data for use across multiple heterogeneous systems, or to maintain survivorship rules for overlapping data from multiple systems.
    These problems are all compounded when you have more than a single SAP instance, or different ERPs altogether, which is a very real occurrence within large corporations that have grown through mergers & acquisitions. Even without multiple ERP instances, most mid-size and larger national firms are likely to pull data from many different systems. In fact, 10 to 30 source systems is not uncommon, and heterogeneous environments are now the norm. The siloed approach to data management whereby customer-facing data is in one system, product data in another, asset data in a third, and so forth, really complicates the integration of processes, data and workflow.
    A dedicated MDM hub provides a multitude of benefits not attainable with an SAP ERP-based master data approach. First, a dedicated MDM system is just that -- dedicated to delivering the best possible manageability of your master data across the enterprise, and not just within your ERP technology stack. The focus of any high-quality, enterprise-grade MDM hub implementation is going to be on getting master data right; creating a single source of truth, with each distinct customer, product, etc. represented only once in the hub. This means you can maintain accurate, complete, timely and consistent master data through both data governance and hub technology, with robust data quality and matching capabilities.
    MDM and ERP need to coexist for instance as one solution does not replace the other. From an investment perspective, it is important to leverage existing technologies such as data quality, extract-transfer-load (ETL) and data integration tools, middleware, business process management and workflow.
    To summarise, the top five reasons not to master your data in SAP ERP are:
    1. SAP ERP isnu2019t flexible enough.
    2. Master data is different and canu2019t be proactively managed within an SAP ERP system.
    3. SAPu2019s ERP products werenu2019t designed for active management of master data.
    4. Mastering data in an ERP system is much more difficult with more than one instance or when different ERPs are used together.
    5. An MDM hub creates a workspace between an organizationu2019s transactional and analytic systems meaning they fix it once and then extend it for use in back office systems and the data warehouse.
    Hope it helps!
    Thanks,
    Ravi

Maybe you are looking for

  • Problems with Nvidia GeForce 210 and windows 8.1

    Hi all, I have Windows 8.1 Pro update 1 64bit installed, two weeks ago I started giving problems graphics card NVidia (even has me given several blue screen). I tried to update the drivers for the card but I got the same problem. It was working prope

  • Help with creation of trigger

    Have to create trigger for DML statements on a table for certain columns, BUT any insertions,deletions and update must be recorded onto another schema table which also uses the sys_context() function. herewith the table that is already created SQL> d

  • Extract CDATA section from a KML file

    Hi all, I have a kml file as shown below. I need to extract the path of all the files listed under the Images section and as well under the Links section. Can i get some hwlp... currentl am able to retrieve the cdata text content as a string and henc

  • The photo "Image.jpg" could not be opened.

    Every time I launch iPhoto, I get this annoying error message: The photo "Image.jpg" could not be opened, because the original item cannot be found." I think I know what it means, that there is possibly a broken link between a photo and a pointer to

  • New Group - Access Level

    Hi, In CMC ->Users and Groups ->Group Hierarchy, I right-click and create New Group. Then righ-click on the newly created Group ->User Security, I can see the Administrator is appears in there (in Add Principle). Why? Does it mean this newly created