How can i expand a Composition to the full width of the browser?

I want to have a slideshow on the background of my site in the full browser window so i used the blank composition and added photos, I originally made it close to 2000 pixels wide and then I moved back the selection box to the browser line but for some reason it doesn't expand to the width of the browser as it would it a photo. Can someone please help?

I think you are confused by the question
THough muse face book answered me with a link to a work around that is not a fix to a very real bug in bot compositions widget and accordion
Just thought I would put a note here.
I found the id number in Inspector and targeted it by adding <style>my css</style> to the metadata head of the page:
Page Properties
Metadata
HTML for <head>
I was then able to center the text frame :-)
on my site its not there for about 3 days start counting lol and if you want my working files I will sell em to you for good price as long as you strip out my content and change design 
when I am done I will post
Vancouver Web Design Home

Similar Messages

  • IWDGroup - making it the full width of the screen

    Hi everyone, I am using the IWDGroup element to enclose several other elements, e.g. Table, textview, labels, etc.
    I will be listing several groups on one screen, in order to make them uniform, I'd like to make it by default, stretch to atleast the full width of the screen.  I've tried setting the setStretchHorizontal to be true, however, still this does not work.  Please help.
    Thanks in advance,
    Michael P

    Hi Armin,
    Yes, I have tried setting the width=100%, using the CSS principle as it had suggested.  I'm starting to perhaps think that this is a bug.
    You have always been very helpful in the past, do you have any other suggestions?
    Kind Regards,

  • How do I make a placed image the full width of the browser?

    Hi, I've tried adding the image as the browser fill only to have it shuffling all other placed objects out of wack.
    I've also tried having it as a placed object but, when I preview in browser I can't seem to be able to get it the full which of the screen.
    my website is 1000 px wide, the image I'm trying to place in it is 5147x2668

    Thanks for the response Vivek,
    Tried that but no joy, it seems I've tried everything I can think of. I tried setting the the image as a browser fill. Very confused. It actually seems to be something to do with the page width or something. Using your method I successfully got the menu bar and the 100% width placed image the same width (previously they were different width's), but my whole site, when previewed just isnt the width of the browser. I must say I'm lost, I've tried changing the site properties (page width, margins etc.) I'm new to Muse but have studied it quite thoroughly over the last 6 weeks. Now I'm ready to build my site I seem to have tripped at the first hurdle here's a screenshot of what I'm getting when veiwed in a browser, as you can see it's all a bit shrunk down:
    and what I'm seeing in Muse's design page:

  • Importing my video from my event library into my project library, it shows the full width of the clip, but on the viewing section, it's zoomed in and cut the sides of the video off.  How do I stop this from happening?

    When importing my video from the event library to the project library, it's zooming in and
    narrowing the width of my footage.  How do I stop this from happening?

    In the project, double-click on the clip to open the Clip Inspector. In the Clip tab you will see an item about two thirds down labelled "Stabilization". If checked, uncheck the box "Smooth clip motion".
    Stabilizing clips causes a zoomed in effect, with the extent of the zoom dependent upon how shaky the footage is. There is a slider beneath the check-box labelled "Maximum Zoom" - this can be draggged back and forth to adjust the zoom effect if desired, once the clip has been stabilized.
    You may have chosen to analyze clips for stabilization when importing to iMovie (that's a choice provided by iMovie upon import). If so, it's best to turn off an option in iMovie's preferences. Go to this from the iMovie menu item iMovie>Preferences. Click on the Browser tab and deselect (uncheck) the box labelled "Automatically stabilize clips that have been analyzed".
    I prefer to import clips without analyzing, as this speeds up the import process. Afterwards, in the Event you can check for any overly shaky clips, then analyze them in the Inspector. If necessary, once dropped into a Project, you can stabilize them as desired. You can also stabilize clips directly in the Project without having to first analyze them in the Event.
    John
    Message was edited by: John Cogdell

  • How to stretch the header the full width of the screen?

    I am trying to stretch the header which is a fluid grid layout div wrapped between body. I have something like the following:
    html
    <body>
    <div class="wrapper">
      <div class="gridContainer clearfix">
    <div id="header </div>
      </div>
    </body>
    CSS
    #header {
    clear: both;
    float: left;
    margin-left: 0;
    min-width: 100%;
    display: block;
    Any help would be much appreciated.
    KN

    Use this CSS:
    .wrapper {
        width: 100%;
    #header {
        display: block;
        text-align: center;
    And use this HTML:
    <div class="wrapper">
        <div class="gridContainer clearfix">
            <div id="header"><h1>Header</h1></div>
        </div>
    </div>
    This should stretch to full width.
    Good luck.

  • Using GridBagLayout to fill the full width of a JFrame, ...

    I have two quick questions regarding GridBagLayout.
    1st, I would like the fill the full width of a JFrame with a JPanel. I have tried:
    JFrame frame = new JFrame();
    //Set width and height of frame
    JPanel panel = createFilledPanel();
    panelConstraints.gridx = 0;
    panelConstraints.gridy = 0;
    panelConstraints.fill = GridBagConstraints.HORIZONTAL;But this fails to stretch the panel to the full width of the frame.
    2nd, I would like to align the elements in a panel to the farthest left they can go. I have tried:
    element.anchor = GridBagConstraints.LINE_START;But this aligns all the elements I do this to, to the same starting position horizontally, but not all the way left.
    I would appreciate help with either or both of these questions!

    weightx or weighty : Easy way to understand is priority amongs components and if this componets get setting
    with weightx = 1.0 then this components 's width and height values are respected to be kept over others.
    It just says that, putting the weight on this components over others. kept all others attributes of this componets first
    over other components.
    I hope my jebrish explanation help -

  • Trying to get a JEditorPane to highlight the full width of a displayed line

    I have displayed the wep page in JEditorPane . Now I'm trying to get a JEditorPane to highlight the full width of a displayed line. All the examples I've tried only highlight the textual content. For example if I have content such as this:
    + Here is some text +
    + some more text +
    within a JEditorPane represented by the box above, then highlighting the first row highlights only the 'Here is some text' (represented between [ and ] below).
    [ Here is some text ]
    [some more text ]
    I would like it to highlight the full width of the JEditorPane like the following:( ie Inspecting the Html element in firebug ....)
    l Here is some text l
    l some more text l
    l_________________________l
    Is there a way to do this?
    Edited by: arunnprakash on Mar 27, 2009 7:59 AM

    Take a look here:
    [http://tips4java.wordpress.com/2008/10/29/line-painter/]
    [http://www.java-forums.org/awt-swing/10862-how-select-highlight-entire-row-jtextpane.html]
    db

  • TS3999 In MONTH, (PC) iCal only clearly lists 2 items a day. The 3rd item is "faded" and bottom portion cut off, w/ a "more" triangle in the lower-right corner. How can I expand (vertically) so the 3rd line posts clearly, and ONLY shows "more" if 4+ event

    In MONTH, (PC) iCal only clearly lists 2 items a day. The 3rd item is "faded" and bottom portion cut off, w/ a "more" triangle in the lower-right corner. How can I expand (vertically) so the 3rd line posts clearly, and ONLY shows "more" if 4+ events?
    Better yet... as there's a lot of "wasted" space w/ too large Month title and empty space surrounding the Month title above and too much space surrounding the month/year slider bar below, how can I minimize these to allow me more usable / valuable calendar "contents" so I don't need to waste so much time clicking "more" just to see the bottom of the truncated third event and find out there are no 4+ events posted that date?  i.e. more "user-friendly" presentation?
    Thx!
    [email protected]

    In MONTH, (PC) iCal only clearly lists 2 items a day. The 3rd item is "faded" and bottom portion cut off, w/ a "more" triangle in the lower-right corner. How can I expand (vertically) so the 3rd line posts clearly, and ONLY shows "more" if 4+ events?
    Better yet... as there's a lot of "wasted" space w/ too large Month title and empty space surrounding the Month title above and too much space surrounding the month/year slider bar below, how can I minimize these to allow me more usable / valuable calendar "contents" so I don't need to waste so much time clicking "more" just to see the bottom of the truncated third event and find out there are no 4+ events posted that date?  i.e. more "user-friendly" presentation?
    Thx!
    [email protected]

  • How can I expand the gutters in a document created with a Pages brochure template?

    How can  I expand the gutters/ space between panels on a document created with a Pages brochure template?

    You haven't said which.
    Each panel is usually just a locked object, unlock them and resize the boxes.
    Peter

  • I have recently purchased a hybred 750GbHDD as an upgrade for my MAC Book Pro (Intell Version) I have a boot camp partition to the original 500GB HDD. How can I expand both partitions to fit the new drive?

    I have recently purchased a hybred 750GbHDD as an upgrade for my MAC Book Pro (Intell Version) I have a boot camp partition to the original 500GB HDD. How can I expand both partitions to fit the new drive?
    I have tried bootcamp and have had no luck due to the fact that boot camp doesn't see the additional HDD space of 250Gb. What am I not doing?

    Ouch, well there is a problem.
    This is the stack of partitions on your old drive
    EFI (hidden)
    Lion (50GB say)
    Bootcamp (50GB say)
    Lion Recovery Partiton (hidden)
    This is the same stack on your new drive imaged from the old one.
    EFI (hidden)
    Lion (50GB say)
    Bootcamp (50GB say)
    Lion Recovery Partiton (hidden)
    Emtpy Space (100GB say)
    This is what you want
    EFI (hidden)
    Lion (100GB say)
    Bootcamp (100GB say)
    Lion Recovery Partiton (hidden)
    EFI has to be at the top of the drive and Lion Recovery has to be at the bottom of the drive.
    And you only have four partitions.
    You can't move the Lion Recovery Partition or Bootcamp partiton, however you can expand the Lion Partition into empty space below it. (but can't delete or move the Lion Recovery partition)
    Your Duplicator duplicated perfectly, too perfectly Likely would work with same sized drives/partitions.
    This is what your going to need to do.
    You need to move the Bootcamp partition to a blank external drive using WinClone and disconnect. This is so you have two backups of it. (one on your old 500GB drive)
    You will need a drive enclousre or IDE/SATA to USB adapter cable for the older 500GB drive and option key boot from it. (some enclosures can't be booted from so check first Other World Computing is good place to ask)
    Download the free Carbon Copy Cloner, grab any new files off the new 750GB internal drive to the old 500GB your booted from.
    Open Apple's Disk Utility and Erase with Zero option the entire internal 750GB drive and let it rip, this will map off as many bad sectors and improve reliability.
    Now use Carbon Copy Cloner to clone the 500GB Lion + Lion Recovery Partitions to the internal 750GB, it will "fix" things and place Lion Recovery at the bottom of the drive where it belongs, give all the extra space to OS X Lion.
    Next your going to have to follow WinClones instructions to restore your Bootcamp, likely you will have to recreate the Bootcamp partition first (in Bootcamp) to the size you want and then clone. Likely Winclone may "fix" Windows to recognize it's in a new larger partition now. I don't know you'll have to check as I haven't used it.
    When Bootcamp creates the partition it will place it near the bottom next to the Lion Recovery Partition.
    As you know you will have to re-validate Windows with Lord Redmond or it expires as you changed the hardware.

  • How can I make an image placed in the body tag expand to the entire width of the browser?

    How can I make an image placed in the body tag expand to the entire width of the browser?I

    background-repeat -- best used with small image tiles.
    background-gradient  - Ultimate CSS Gradient Generator - ColorZilla.com
    background-size:cover - Resizable Full Page Background Image
    Nancy O.

  • How can I expand the source panel on the Import dialog window (mac LR3.3)?

    Hello,
    How can I expand the source panel to the right under the Import dialog window?
    I'm unable to drag the seperation line to the right and therefor unable to view folder names when in lower hirarchy...
    thanks you
    shlomit

    Shlomit Heymann wrote:
    shouldn't there be at least a scroling bar from left to right? How am I suppose to view my sub folders names?
    To a lesser extent, the same problems exists on all panels, whether they be in import window or elsewhere. Just look at the Folder panel in Library to see how much space is wasted in offsetting the subfolders. When this was pointed out to the relevant folk the reply came back that it was by design. Bad design, but we're pi...g into a head wind trying to get it changed.

  • How can I select to answer a mail with or without the message

    Hello
    When a mail is received and then opened, I have the options to answer to the sender or to all. In the account preferences, I can specify if the original message is copied or not. This option applies to ALL the answers. How can I choose when editing a mail if I want the message to be copied or not ?
    Kind regards
    JP

    This is the easiest method I have found that will resolve your issue.
    'Tools' > 'Account Settings' > 'Composition & Addressing' for the maill account
    or
    'menu icon' > 'Options' > 'Account Settings' > 'Composition & Addressing' for the mail account.
    deselect / do not select 'Automatically quote the original message when replying'.
    Click on OK to save changes.
    To send a 'Reply' with no original message, simply click on 'Reply' button.
    To send a 'Reply' with all or part of original message.
    Highlight the section of the message or all of the message and then click on 'Reply' button

  • How can I see more than 6 all day events in the week view without scrolling?

    How can I see more than 6 all day events in the week view without scrolling?  I need to see all of my all day events at once.  I use this for scheduling and comparing of # invoices.  Going back and forth to scroll is cumbersome.  I just want to be able to expand the top section so I can see everything at once.

    Any ideas, anyone?

  • I have a 27" iMac with 16GB of factory installed SDRAM and 1T harddrive.  It is telling me the harddrive is full and is not functioning correctly.  How can I adjust so that all files are managed on the harddrive rather than the SDRAM.  (BTW - design flaw)

    Processor 3.4 GHz Intel Core i7
    Memory  16 GB 1333 MHz DDR3
    I have a 27" iMac with 16GB of factory installed SDRAM and 1T harddrive.  It is telling me the harddrive is full and is not functioning correctly.  How can I adjust so that all files are managed on the harddrive rather than the SDRAM.  (BTW - design flaw here.)
    Older Macs with a single Harddrive would simply expand OS management on the drive, and I think I understand the new Fusion Drive to do just that, but how do I get this product that I spent a great deal of money on to be more than a pretty screen?

    I was confused by this statement
    It is telling me the harddrive is full and is not functioning correctly.
    OS X manages ram and when you run out, it create swapfiles to extend your ram on the HDD (Hard Disk Drive). The OS itself, takes about 16 gig of space and that too resides on the HDD.  Your 16 gig of RAM is really a temporary space that holds things from the HDD so the processor can work on them.  There is no design flaw between your ram and HDD.  Something else is going on and there are a lot of smart people here to help you figure out what that "something else" is.
    I would do three things.  First I would create a backup, backups are important.  Second, I would reboot into recovery and repair my HDD.  Lastly while still booted in recovery I would repair permissions.
    Can you capture a screen shot of the exact error you are getting?

Maybe you are looking for

  • Flash not working in Safari (and Chrome and Firefox) - possible solution

    Yesterday my Mac crashed (actually when I was away from it) and when it rebooted, Adobe Flash would freeze any web browser it ran in (Safari, Firefox and Chrome - which surprised me as I thought it used a different version of Flash). Great with so ma

  • Issue related to next page in smartform

    Hi expert, M working on a  smartform..i have used next page window in that with condition that if in the first page entries are more that '6' then it must trigger next page to show rest of entries..my code is. DESCRIBE TABLE GT_STRUCT LINES LINE. *BR

  • Can i upgrade premier pro CS3 to work on win 8.1

    Can I upgrade premier pro cs 3 to work on win 8,1.... Terry

  • How to Download Employee W2 information in EFW2 format

    Hi, I am new to Tax Reporting in HR. We have a requirement to download Employee W2 information in EFW2 format and send to third party vendor after the employee's consent. Can you please throw some light on the procedure and pre-requisites to do this.

  • IBook Illegal Instruction, Black Screen... Death?

    I have an ibook G4... I just got an iPhone and was told to update iTunes before synching. I chose to do the most recent software updates on iTunes, iPhone, and the Security Update. I walked away while downloading/updating and came back to a white/gre