Make the height of a tabbed panel content container adjust to the individual tab's content.

I am designing a site and on one page I am using two tabs to seperate two different kinds of content.  One tab has more content and as such is longer on the page. But I noticed that MUSE uses which ever tab is the longest as the basis for how long the page is. This is fine while on that tab, but on the other tab it makes the page much longer (bunch of dead space) then it needs to be.  Is there a way of getting around this or is this a limitation of muse?
Take a look at the page here and you will see what I mean. Click on cuff cases and scroll down and you will see what I mean.
http://pgl0.businesscatalyst.com/accessories---prince-gun-leather.html

Hi Lukewind,
This has come up in the forum archive. There is not currently a way to create a tabbed panel with adjustable/variable height content containers. This is not actually a bug in Muse, but it is a feature request. Please create an Idea topic for this feature in the Ideas for Features in Adobe Muse forum (http://forums.adobe.com/community/muse/ideas).
Here is the content from the archive request:
Have the depth of tabbed panels adjust to the size of the content.
The boxes in tabbed panels should be adjustable to the content rather than have all the tabs open in the same size as the biggest text box.

Similar Messages

  • Make the height of content 100%

    Hello,
    Is there a way within iWeb to make the height of the content 100% (rather than stipulating pixel height) so that a background colour fills the page from top to bottom?
    Thanks,

    Even if you are not using the footer or header for your pages, they are still a part of your pages. You can see the areas delineated on the page with Show Layout turned on.
    Unfortunately, the values that are present in the Inspector Page tab are set at some default which is the same from template to template. You can actually change these discrete areas on your page dynamically but the values in the Inspector won't change unless you change them. Again, unfortuately, this discrepancy can lead to rendering problems once the HTML is generated.

  • Crystal Report: How to make the fixed height box in all pages.

    Post Author: WTech
    CA Forum: Crystal Reports
    I want to make the height of box fixed size in all pages. The box in outside the detail section. Currently the size of the box changes according to the content of the detail section. Could anyone suggest me how should i achieve it ?  

    Hi srinivasan,
    If you want to keep "Save" and "Stop" common, Why do you want to keep them on Tab control? Is your tab control taking entire space on Front panel? If so, you can have SAVE and STOP on other vi, and you can call this vi (MODAL).
    Gaurav k
    CLD Certified !!!!!
    Do not forget to Mark solution and to give Kudo if problem is solved.

  • How to increase the height of a tabbed layout

    How to increase the height of a tabbed layout? I do have a form inside a panelTabbed layout which is not fitting inside.Is there any css class available ?
    Thanks
    Suneesh

    Hi,
    +"My panel tabbed layout is inside a detailStamp facet of a table"+
    you can set the StretchChildren property on the ShowDetailItem components to make the panel tab to resize the contained children. I set the inline style on a paneltab and the result shows in the rendered output
    Frank

  • Tabbed Panel content overflow problem

    Hi everyone,
    I'm a newbie to this, but have successfully used a few Spry
    elements and am loving them.
    My problem right now is that I'm trying to get a tabbed panel
    to work where the panel contents have different amounts of text. It
    works great in IE6 and looks fantastic, but in IE7 and Firefox 2
    the content is visible although it overflows beneath the styled
    content area.
    You can see it here:
    http://www.pranayogacollege.com/yoga-workshops.php
    I imagine it's a simple thing that I've overlooked, but I'd
    be very appreciative if someone could point me in the right
    direction.
    Thanks in advance,
    Jade

    "spiderjade" <[email protected]> wrote in
    message
    news:eqt5mt$d32$[email protected]..
    > You can see it here:
    >
    http://www.pranayogacollege.com/yoga-workshops.php
    >
    > I imagine it's a simple thing that I've overlooked, but
    I'd be very
    > appreciative if someone could point me in the right
    direction.
    .TabbedPanelsContent {
    padding: 4px;
    /*ADD NEW*/
    height: 276px;
    overflow: auto;
    Al Sparber - PVII
    http://www.projectseven.com
    Extending Dreamweaver - Nav Systems | Galleries | Widgets
    Authors: "42nd Street: Mastering the Art of CSS Design"

  • How do I make the header, content, and footer transparent in Dreamweaver CS6?

    I try setting background color to transparent but it just turns white instead. I want to be able to just see my background image and color and have all content "floating" on my web page.
    Also on backgrounds, what is the coding for making sure the background is contained within whatever monitor size it is viewed within or will it automatically scale up/down?
    Thanks,
    Jennifer

    I'm just using a basic Dreamweaver page that has some CSS already in the head (haven't done much work on it yet, just trying to get those things transparent first):
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title></title>
    <!-- TemplateEndEditable -->
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <style type="text/css">
    <!--
    body {
        font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
        background-image: url(../images/helia_bg.jpg);
        background-position: top;
        background-repeat: no-repeat;
        background-color: #fff0c1;
        margin-bottom: 200px;
        margin: 0;
        padding: 0;
        color: #000;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
        padding: 0;
        margin: 0;
    h1, h2, h3, h4, h5, h6, p {
        margin-top: 0;     /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
        padding-right: 15px;
        padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
        border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
        color: #42413C;
        text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
        color: #6E6C64;
        text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
        text-decoration: none;
    /* ~~ this fixed width container surrounds the other divs ~~ */
    .container {
        width: 960px;
        background-color: #FFF;
        margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
    /* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
    .header {
        background-color: #ADB96E;
    /* ~~ This is the layout information. ~~
    1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
    .content {
        padding: 10px 0;
    /* ~~ The footer ~~ */
    .footer {
        padding: 10px 0;
        background-color: transparent;
        font-size: x-small;
        text-align: center;
    /* ~~ miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
        float: right;
        margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
        float: left;
        margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
        clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    -->
    </style></head>
    <body>
    <div class="container">
      <div class="header"><a href="#"><img src="" alt="Insert Logo Here" name="Insert_logo" width="180" height="90" id="Insert_logo" style="background-color: #C6D580; display:block;" /></a>
        <!-- end .header --></div>
      <div class="content">
        <h1>Instructions</h1>
        <p>Be aware that the CSS for these layouts is heavily commented. If you do most of your work in Design view, have a peek at the code to get tips on working with the CSS for the fixed layouts. You can remove these comments before you launch your site. To learn more about the techniques used in these CSS Layouts, read this article at Adobe's Developer Center - <a href="http://www.adobe.com/go/adc_css_layouts">http://www.adobe.com/go/adc_css_layouts</a>.</p>
        <h2>Layout</h2>
        <p>Since this is a one-column layout, the .content is not floated. </p>
        <h3>Logo Replacement</h3>
        <p>An image placeholder was used in this layout in the .header where you'll likely want to place  a logo. It is recommended that you remove the placeholder and replace it with your own linked logo. </p>
        <p> Be aware that if you use the Property inspector to navigate to your logo image using the SRC field (instead of removing and replacing the placeholder), you should remove the inline background and display properties. These inline styles are only used to make the logo placeholder show up in browsers for demonstration purposes. </p>
        <p>To remove the inline styles, make sure your CSS Styles panel is set to Current. Select the image, and in the Properties pane of the CSS Styles panel, right click and delete the display and background properties. (Of course, you can always go directly into the code and delete the inline styles from the image or placeholder there.)</p>
      <!-- end .content --></div>
      <div class="footer">
        <p>© Moving Harmonies - Site Design by <a href="....">JRH Creative</a></p>
        <!-- end .footer --></div>
      <!-- end .container --></div>
    </body>
    </html>

  • Making tab panel content auto resize

    I'm using a SlidingTabPanel which has dynamic content. How can I get the panels to dynamically resize according to the amount of content in each panel?

    No,
    This is one the limitations of the sliding panels, it needs a wrapper div, with a minimum height in order to make the divs inside the wrapper slide. If you want such functionality on your site, you might want to create a custom effect for that using the SpryEffects library.
    http://labs.adobe.com/technologies/spry/articles/effects_coding/index.html

  • In Firefox 31.0 a bug makes the browser freeze, and then I can't close tabs anymore, what may solve this?

    Good afternoon. With the newest update of Firefox for PC (31.0), I have a problem that occurs almost every time I use the browser.
    When trying to close a tab, it sometimes cause the browser to freeze during one minute.
    Then a dialog-box appears on the screen. It says that the script "chrome://browser/content/tabbrowser.xml:2004" may be busy.
    I can choose between two buttons in this dialog-box.
    "Continue" which keeps the script running, in theory; though it just closes the dialog-box, makes the browser freeze again, and then the same dialog-box shows up.
    "Stop the script" which ends the freeze; but then I'm unable to close tabs (I can still close the browser).
    I also noticed that, when the freeze occurs, the content of the tab I tried to close changes to "New Tab".
    When I restart the browser, I am able to close tab again, until the freeze shows up again.
    The problem started to appear only when I updated Firefox to the 31.0 version (and I didn't add any browser extension in the meanwhile).
    Does anyone have an idea of what I could do to avoid the problem? Thank you very much and have a good day!

    In the immediate future you can try noscript or flashblock addons to block that script.
    However upon more research in searching the current Firefox codebase: [http://dxr.mozilla.org/mozilla-central/search?q=tabbrowser.xml&case=false] it seems to be referenced in there, but I do not see a reference to the port associated. The port is usually used for media. I would not know how to start to troubleshoot this, but are there any consistent steps/webpages that cause this to start?
    Does this happen in Safe Mode, please see [[Troubleshoot Firefox issues using Safe Mode]]? And does it happen in a fresh install?

  • Moving tabs from one window to another makes the new window vanish. I have hot corners enabled so when I move up to the right corner of my display I can see all my open windows but when I click on the tab that I moved to make it its own window it vanishes

    Moving tabs from one window to another makes the new window vanish. I have hot corners enabled so when I move up to the right corner of my display I can see all my open windows but when I click on the tab that I moved to make it its own window it vanishes

    I came up with an alternative solution.
    Instead of actually trying to move the JInternalFrame from one JDesktopPane to another, I added a single, maximized JInternalFrame to the left side. When one of the right side frames is to be docked, I merely copy its ContentPane to the single JInternalFrame on the left, set the original to be non-visible, and adjust the properties of the JSplitPane to make the "docked" frame appear.
    When the "close" button on the docked frame is pressed, I simply undo this procedure to "undock" the frame and redisplay it on the right-hand side (with its content intact from the docked frame, but in its original position).

  • 3 column page - how to make each full height of page, with variable content in each?

    Hi everyone. . . I'm a relatively unsophisticated page designer, and I appreciate if you excuse my lack of experience.  I'm putting together a page for a business.  The page has three columns, one of which would be considered to be the main body of the page. . . the one with all the important content.  The column on the left is for a navbar and some affiliate badges, and the column on the right will be for an image that describes for the viewer which page they're on. 
    The question I have is how to, when the content of the center column is very long, make the left and right column divtags extend all the way to the footer, with their borders and background colors, to make a clean page.  When the content of the center column is short, like a paragraph or two, the left divtag will have a minimum height due to the presence of the badges, but the right divtag is quite short.
    I uploaded a test page here: http://www.thermalifegroup.com/test/about_us.html
    Nevermind the visual appearance of the page. . . the spry widget is all over the place, but that's just because I uploaded a few files onto the server.  On my pc it's all copacetic and not an issue.  The code source is up there, so is the stylesheet. 
    I'm hoping I can just add a few attributes to the columns so that they automatically reach down to the bottom extents of the page.  Thanks for any advice you can throw my way.
    Keith

    manliusvalerius wrote:
    Hi everyone. . . I'm a relatively unsophisticated page designer, and I appreciate if you excuse my lack of experience.  I'm putting together a page for a business.  The page has three columns, one of which would be considered to be the main body of the page. . . the one with all the important content.  The column on the left is for a navbar and some affiliate badges, and the column on the right will be for an image that describes for the viewer which page they're on. 
    The question I have is how to, when the content of the center column is very long, make the left and right column divtags extend all the way to the footer, with their borders and background colors, to make a clean page.  When the content of the center column is short, like a paragraph or two, the left divtag will have a minimum height due to the presence of the badges, but the right divtag is quite short.
    I uploaded a test page here: http://www.thermalifegroup.com/test/about_us.html
    Nevermind the visual appearance of the page. . . the spry widget is all over the place, but that's just because I uploaded a few files onto the server.  On my pc it's all copacetic and not an issue.  The code source is up there, so is the stylesheet. 
    I'm hoping I can just add a few attributes to the columns so that they automatically reach down to the bottom extents of the page.  Thanks for any advice you can throw my way.
    Keith
    in your #main css style add following attributes
    float:left
    background-color:#eeeeee
    u can change ur color
    try

  • Spry Accordian panel content height for more than 1 accordian in site

    Hi,
    I have added a couple of accordians to my website on different pages.
    When I adjust the panel content height for 1 it automatically changes it for all of them on my site causing scroll bars to be visible - which I am trying to avoid.
    I'm new to Spry coding and am not sure what to change.
    Thank you for your help

    This is a frequent question, in one form or other. It helps to understand that when you insert a Spry Widget, the associated javascript and CSS files are also added to your site files. And if you insert a second of the same type of Widget, DW checks and sees the original js and css files and does not add a second (or third). This is efficient, and also keeps your styling uniform across all instances of that Widget in your site.
    If you want Widgets of the same type styled differently, you need to add to your CSS stylesheet style selectors that focus on those parts you want to be different.
    Because Widgets are already ID'd, you can't add a new ID directly to the Widget <div> But you can wrap the Widget in a new div and put an ID on that.
    Say you want two accordions on a page, one with panel content height of 100px and one with panel content height of 200px.
    ID your accordions' wrapper divs: <div id="normalheight"> and <div id="doubleheight"> (use better descriptive IDs).
    In the CSS stylesheet, do this:
    .AccordionPanelContent {
        overflow: auto;
        margin: 0px;
        padding: 0px;
        height: auto;
    #normalheight .AccordionPanelContent {
         height: 100px;
    #doubleheight .AccordionPanelContent {
         height: 200px;
    Be sure to add them directly after the given rule for .AccordionPanelContent; you are re-writing the height in that style selector for your two more specific accordions.
    Beth

  • Make Colums height in IE and FF the same

    Is there a Hack to make the columns the same hegiht in FF and IE?
    As the content is differnt on each page I need the colums to even up on each page, escpecially the right hand column.
    Please preview the bottom  right column in both and you will see what I mean
    http://www.curiousconcepts.com/web_design.html
    thanks

    On this page and other pages except the home page
    http://www.curiousconcepts.com/web_design.html
    I have 2 columns left and right.
    On the left colums there are 2 boxes (text box and then the image display) and the right hand column there are 2 boxes (subscribe to newsletter and case study)
    I want the 2 columns (image display and case study) to line up at the bottom flush with FF and IE. I cannot acheive this. If I set a height on either FF or IE on each page this is fine I can do this but there is around a 10px - 15px difference between the colums because of the FF and IE thing.
    Eg if I set the height for FF to be flush bottom to case study box will line up perfectly with the bottom of the image box but in IE this will overhang by around 10-15px.
    I need to find a hack to make these the same across the browser platforms.

  • Can I make the home page my new tab page?

    I referenced [https://support.mozilla.com/en-US/questions/824876?s=make+the+home+page+my+new+tab+page&as=s] and attempted to use about:home for the url but nothing happened.
    Thanks

    The referenced link deals with a different matter; the user wanted a blank tab to open but was getting an arbitrary page opening instead.
    In your case you might try one of the following Add-ons:
    *New TabURL: https://addons.mozilla.org/en-US/firefox/addon/2221
    *New Tab Hompage: https://addons.mozilla.org/en-US/firefox/addon/777
    <br />
    <br />
    '''You need to update the following.''' The Plugin version(s) shown below was/were submitted with your question and is/are out of date. You should update to avoid known security issues with the version(s) you have installed. Click on "More system info..." to the right of your question to see what was included with your question.
    *Next Generation Java Plug-in 1.6.0_24 for Mozilla browsers
    #'''''Check your plugin versions''''' on either of the following links':
    #*http://www.mozilla.com/en-US/plugincheck/
    #*https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #*There are plugin specific testing links available from this page:
    #**http://kb.mozillazine.org/Testing_plugins
    #'''Update the [[Java]] plugin''' to the latest version.
    #*Download site: http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)
    #**'''''Be sure to <u>un-check the Yahoo Toolbar</u> option during the install if you do not want it installed.
    #*Also see "Manual Update" in this article to update from the Java Control Panel in Windows Control Panel: http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates
    #* Removing old versions (if needed): http://www.java.com/en/download/faq/remove_olderversions.xml
    #* Remove multiple Java Console extensions (if needed): http://kb.mozillazine.org/Firefox_:_FAQs_:_Install_Java#Multiple_Java_Console_extensions
    #*Java Test: http://www.java.com/en/download/help/testvm.xml

  • How do I make the height of my cells bigger? I am trying to put togther a guest list for my wedding.

    I have worked with excel in the past and it seems easier to manuever through. I am wondering if I should purchase it for MAC? I need to get my guest list done ASAP and I can't figure out how to make the cells bigger. Please help! Thank you!

    Tolf,
    I'll add one method to Wayne's list that you may find helpful in some certain situations. Begin by eliminating all the unnecessary rows and columns by grabbing the Add Rows/Columns grip at the lower right hand corner of the table and dragging it up and left until it stops. All the rows and columns with no content will now be gone.
    Now you have a table with just the minimum necessary rows and columns. Select the table object by clicking on once on the table name in the Sheets Pane or by clicking on the grip in the upper left corner of the table.
    You should now be seeing the 8 sizing handles, little open squares. They are at the 4 corners and in the middle of the 4 sides.
    Grab one of these sizing handles and drag it to change all of the cell sizes at once. If you grab one of the corners you can change the height and width simultaneously. If you just grab a side, you'll just change the spacing of the lines parallel to that side.
    If your level of ASAP precludes you from having time to work with Numbers, you can download the free trial of Office for Mac, or you can download one of the free Office clones, like LibreOffice. They would be more familiar to you in the short run.
    Good luck with your wedding planning.
    Jerry

  • Anchor tag inside Spry Tabbed Panel Content

    I have successful been able to use code I found listed on
    here to open a specific tab in a Spry Tabbed Panel form a link. Now
    I am wondering if anyone has found out how to add an anchor tag
    code this so that is goes to a specific location inside that Tabbed
    Panel Content?

    I was looking for an answer on how to open a tab from another tab and found it!
    In return I'll give you a hint on how to open a tab from another tab using an anchor
    for example,
    if you were working on a file named "projects.php"
    create an anchor in tab 2
    <a name="anchor1" id="anchor1"></a>come next to me
    in tab 1 create the link to the anchor in tab 2
    <a href="projects.php#anchor1" onclick="TabbedPanels1.showPanel(1); return false;">open tab 2 and go to its anchor 1</a>
    In your case you are overlooking the file name and jumping directly to the anchor name.....am I right??
    cheers from Lima, Perú

Maybe you are looking for

  • In need of help with wiping my MBP..

    So my macbook pro is a couple of years old now and has been well used and well loved. I just bought an external hard drive so I can save all of my must-have and needed documents(music, photo's, games, etc.) and I was going to wipe my laptop clean to

  • IPhone 3G 2.1 the whole OS crashed

    So here's a story: I've opened Maps and tried to make a simple search, but suddenly it crashed... OK, I've seen this before, but my touch screen stopped to respond, lock key and Home key is not working either (double click). I can only adjust volume,

  • Connecting to Xbox Live using a Macbook Air?

    Okay, so i've had my Macbook Air about a month now and I wanted to use it to connect to xbox live just like I did when I had windows. I bought one of the adapters as the macbook air doesn't have a ethernet port and I have tried a lot of the tutorials

  • Forward a copy of sent emails to a different address?

    Is it possible when sending emails using Mail to automatically send a copy to a different email address? I see you can Cc: & Bcc: copies to yourself (same email address) in Mail's Compose Preferences, but not to a different email address.

  • Use of env-entry in ejb-jar

    In my ejb-jar.xml I have a Session bean with a env-entry: <env-entry> <env-entry-name>xslNameFile</env-entry-name> <env-entry-type>java.lang.String</env-entry-type> <env-entry-value>pdftemplate.xsl</env-entry-value> </env-entry> In a class where I us