Center-justify a vimeo movie widget in Muse

Hi there, folks
I'm preparing a site which has some buttons in the footer, but only a vimeo movie widget in the body of the site.  It looks great, and is so easy to do in Muse (thank you Adobe!) but I'd like the vimeo widget to be centered, so if the page is enlarged or made smaller it always keeps a proportional distance from the header and footer.  Is this possible?
Many thanks in advance for the time, folks!
- Fredo

For product specific questions you may do better in the specific product forum
If you start at the Forums Index http://forums.adobe.com/index.jspa
You will be able to select a forum for the specific Adobe product(s) you use
Click the "down arrow" symbol on the right to open the drop down list and scroll
http://forums.adobe.com/community/muse

Similar Messages

  • Does muse have a vimeo gallery widget like youtube gallery widget for multiple videos

    Does Muse have a gallery widget for Vimeo like the Youtube gallery widget to play multiple videos on the same page

    Answered on your another thread Does vimeo have a vimeo gallery widget like youtube gallery widget

  • Using AP elements on a center justified page

    Sorry if this question has been asked innumerable times
    before. If so, can anyone direct me to a link that explains how to
    move AP elements about on a center justified web page? When I do
    so, the AP elements seem to do their own thing, irrespective of the
    center justified page.
    Here is the URL
    in question.
    I realize I can manually set the CSS position properties for
    each of the 12 AP elements, but was wondering if I can do this in a
    quicker, simpler way.
    Here is an
    example of a page layout I'm trying to emulate. Any ideas?

    Joe: Just so you'll know, that solution is posted here 5-10
    times a week.
    I would change your code to this -
    <body>
    <div id="wrapper">
    <div id="apDiv6"><img src="images/jp-bio_bkgd.gif"
    width="1300"
    height="850"
    /></div>
    <div id="apDiv8"></div>
    <div id="apDiv9"></div>
    <div id="apDiv10"></div>
    <!-- /wrapper -->
    </div>
    </body>
    Then I would stop using absolute positioning altogether until
    you can build
    an entire page in Notepad. It's a seductive nightmare
    otherwise.
    Understanding why my solution works will require that you
    understand how CSS
    positioning works. This may help you understand 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
    page element
    (except for those contained within it, of course).
    2. The absolutely positioned element takes its position from
    the position of
    its closest PARENT *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
    layer'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).
    Furthermore, the space in
    which
    this element would have appeared were it not positioned
    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 the 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
    relatively 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 element 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
    offsets (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
    content 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
    Finally, to get away from absolute positioning, start here -
    http://apptools.com/examples/pagelayout101.php
    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
    ==================
    "jpodlesnik" <[email protected]> wrote in
    message
    news:[email protected]...
    > My goodness, Murray! That was FAST! AND it worked! :-)
    >
    > Far as I can tell, seems I had to move the code around
    to make it work.
    > Had to
    > keep the code for the AP elements (which I can move
    around AND they stay
    > in
    > place - bravo!) inside the code that you sent me. Does
    this look correct
    > (see
    > below)? Well, in any case, it works: I can move the AP
    elements around
    > anywhere
    > I like and they stay exactly where I leave them when the
    page is previewed
    > in a
    > browser. Thank you very much, Murray!
    >
    > --Joe
    >
    > <body>
    > <div id="wrapper">
    > <!-- /wrapper -->
    > <div id="apDiv6"><img
    src="images/jp-bio_bkgd.gif" width="1300"
    > height="850"
    > /></div>
    > <div id="apDiv8"></div>
    > <div id="apDiv9"></div>
    > <div id="apDiv10"></div>
    > </div>
    >
    > </body>
    >

  • Problem with Vertical Menu Widget in Muse

    Using the vertical menu widget in Muse, I want to make the submenu pop up under the parent item. The default action is to pop up to the right. How do I override this?

    Thanks for posting this question - I too had this question, and I think I found a way to do this.  Try using the "Padding" feature located on the Spacing panel.  Looks like you can use this tool to move the location of the sub-menu group,  Just make sure you have the sub-menu's selected first.  Seems to have worked for what I was wanting to do.  Hope this helps!
    I will be posting a "new feature" request involving the menu widget, later on today.  Check back later and vote in favor.

  • Vimeo autoplay disfunctional on Muse lightbox and IE11.

    I am advising clients to upload their videos only to YouTube when submitting their videos to us. We use Muse lightboxes to play videos which are always set to autoplay. This is tough on photographers and videographers who tend to prefer Vimeo. Some have already submitted their videos on Vimeo and we have asked them to re-submit on YouTube.
    What happens if you place a Vimeo video in a Muse lightbox widget set to autoplay using IE11?
    It will play immediately when the page is loaded and totally disregard the lightbox trigger.
    The result is a horrible cataclysmic experience for the user.

    Here are the screen shots that I see. It sort of appears that there are different states for the trigger image (as noticed on the right bottom corner of the screen.) You can see that I can select the various states either at the top left where it says "Trigger: active" or at the bottom right on the tab "States". However, when I preview in a browser, there button doesn't have different states.

  • How would I use my html5 Music Store Widget in Muse?

    I would like to "place" or insert my music store widget into muse, and have a visual of where it sits on the page... Is this possible?

    Figured it out... It's so simple and obviouse, I feel dumb for asking... HTML5 scripts can be place and sized with the text tool... Copy your html or html5 script and paste into text box, size it with transform, and wahlah! In browser preview and there it sits... Seems any legit script works... Hope this helps users that come from copy and paste, drag and drop web editors like me.. Music players, Social buttons, etc...

  • Trying to add goggle analytics widget to muse files

    Trying to add goggle analytics widget to muse files. When "master page" is referred to is adobe referencing the masters (at the bottom of the plan section) or are they referring to all the pages build on the original master.
    Also, if applying the analytic code only (not widget), same question as above. Each and every page or just the base master pages. I added it to master page/page properties/metadata but it completely messed up the code.
    THIS IS INSTRUCTION FROM Add Google Analytics | Exchange | Adobe Muse CC
    "Just drag the item your master pages (place it at the top and out of the content area) enter you google tracking code ID number and your done. "
    ANY IDEA WHAT "AT THE TOP" means? OUT OF CONTENT AREA? Are they referring to the "desktop area" outside the perimeters of the website width?
    Thanks!

    You're not giving us much to go on.  Go to your Google WebMaster account & grab the GA tracking code.  Re-insert it into some test pages.    Analytics reporting may not show anything for several days.
    Nancy O.

  • Movie widget not loading????

    movie widget recently says "undefined" and "loading" but never does?

    I downloaded and re-installed it and works fine..

  • Left, Right or center justified. Need some help

    Hi,
    I have to do an assignment in which i am asked to read a file containing text of strings. I have to set some properties for my implementation class so that i will get the output in desired format i.e
    left, right or center justified.
    Can anybody tell me the documents or the classes to go through. i am new to java. Please reply me.
    Thanks
    Rita

    ya, i know how to read the file and probably print them to the console Good!
    but i dont know how to print the output in right- justified manner.
    The output is by default left-justified, but i dont know how to do right-justified.Okay, you need to do some padding (justification). Check out the stuff in StringBuffer (and StringBuilder, in 1.5) and String. Questions about padding/justification come up on the forum all the time (did you try searching?). Basically, you have to decide the full length you want (e.g., 100 characters), and then prepend/append the proper number of spaces to the original String.

  • What is the site where I can access many 3rd party Widgets for MUSE?

    What is the site where I can access many 3rd party Widgets for MUSE?

    Hi
    Some more
    Adobe Muse Free Templates | Download Muse Themes and Widgets
    MUSE RESOURCES™ | Library Widgets
    RESOURCES | Adobe Muse CC
    Regards

  • How can i install or get acces to more widgets in Muse?

    Hello can anybody tell me if it is possible to install new widgets in Adobe Muse?
    I caanot find any information about this.
    Thanks Eric.

    Hi Eric,
    If what you're looking for are entirely new widgets (i.e. a video player widget, an audio player widget, a slide out drawer widget, etc.) that would appear in the Widget Library and work like the other widgets, then morgan_in_london's response is correct. The Muse Widget Library is currently limited to the set of widgets in the product.
    Many HTML widgets can be used via the Insert HTML feature (i.e. Google maps, YouTube videos, FaceBook like buttons, etc.), but they generally don't offer the ease-of-use or flexibility of the built-in Muse widgets. A third party, www.muse-themes.com, has started an online directory of Insert HTML-based widgets for use with Muse that can be found at http://www.muse-themes.com/pages/muse-widget-directory.
    If what your looking for is a library of examples that demonstrate what's possible with the current widgets in Muse (which have many different behavior and formatting options), we're in the process of putting together the start of a gallery of example widgets that should be live online soon.

  • I cannot move layers in Muse 2014.2. I am on a Mac

    I cannot move layers in Muse 2014.2. I am on a Mac.

    Hello,
    Hopefully closing Muse and relaunching will fix the problem. If it do not fix it then please reset its preference and that should fix the issue.
    Steps to reset preferences are mentioned below.
    1) Quit Muse.
    2) Go to desktop > click on Go > "Go to folder"
    3) Type "~/library" without the quotes and press Return.
    4) Go to folder named "Preferences"
    5) Go to folder named "com.adobe.AdobeMuseCC.2014.2" to "com.adobe.AdobeMuseCC.2014.2.old"
    7) Re-launch Muse.
    Regards
    Vivek

  • Why won't my movie widget work

    I have a new computer running mac OS 10.7 lion. when I tried o access the movie widget it is black. how can I fix it anfd get it to work?

    What movie widget?
    iMovie?
    Where is it black? In the dock?
    Does it work?

  • Dashboard Movie Widget Date Update

    Is there a way to update the date of the dashboard movie widget aside from restarting the computer? I wish it were smarter and knew what day it was.

    Mine has not been working for a couple of months now.  I just noticed that this widget does not recognize any Canadian cities anymore.  It used to work no problem up till September.  Its really too bad as I like this widget a lot.  Hope Apple fixes this or if anyone else has any suggestions on how to.  Thanks.

  • How do I change the movies widget to the uk

    Hi
    Just got my first Macbook Pro and am customising it.  Trying to change the Movies Dashboard Widget to the UK.  Is this possible?
    Many thanks
    C

    You can not
    http://www.fandango.com/
    It is a USA Widget
    You can alter the City, Zip Code
    cmd and click on movie widget (Right Click) , then click on the i button and enter the deails requested

Maybe you are looking for

  • Read only table issue

    By default, read only table should take selected row as current row as long as we have selectedRowKeys & selectionListener within table definition. But, it doesn't, why? How to resolve this issue? Thanks.

  • How do I change platform for downloading and installing Photoshop Elements from Windows to Mac?

    How do I change platform for downloading and installing Photoshop Elements from Windows to Mac?

  • Problems with home button

    My son got me an Ipod 5th gen back in october through the apple online store and has worked just great until today, the home button does not seem to work and am looking for some help if i can fix it or should i find someone or send it back to apple t

  • Wireless Printing with Airport Extreme just stopped

    Strangely, it is not working on one of my 3 computers only! Was working with all 3, today it would not print from my iMac with Intel 2.33 GHz. No problem recognizing the printer. When I print the printer comes on, the printer head moves normally but

  • UCS-Fabric Interconnect Replacement

    Hello everybody, I have a UCS domain with a failed Fabric Interconnect and i have to replace this Fabric. For me there is no action to do in the configuration of the new FI i just have to add it in the existing domain and give it the IP address, but