Layer Positions - absolute

Having problems with layer position. Dreamweaver preview is
correct, as is
display in Internet Explorer.PC.
Firefox on PC, and all Mac browsers do not correctly place
top value (left
value is correct)
Any ideas? All layer attributes are in css. Emp01 below is
correctly placed.
Emp07 is not. All layers given unique Z-index
#Emp01 {
position:absolute;
left:183px;
top:275px;
width:180px;
height:42px;
z-index:1;
visibility: hidden;
#Emp07 {
position:absolute;
left:600px;
top:265px;
width:175px;
height:61px;
z-index:7;
visibility: hidden;

> This doesn't seem to make sense to me. Does it to you?
Yes, of course.
You have not controlled the margin-top on the <p> tag,
and IE will not
collapse that margin - thus leading you to conclude that it's
positioned
correctly. When you use a modern browser, that correctly
collapses that top
margin, you see the layer as being placed higher than you
want. The
solution is to use CSS to set that <p> tag's top margin
to zero. Then you
will be able to position the layer reliably....
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
==================
"Anthony LeBaron" <[email protected]> wrote in message
news:[email protected]...
> Sorry Murray,
> Was not able to post file since it contains unreleased
financial data...
> Nowever, I have repaired the problem but I don't
understand the issue.
> Maybe you can explain.
>
> Each layer was a div tage with an absolute position.
> Within the div tag was a small text field.
> The first line was within a span tag with a specific css
style.
> The following lines were within a second span tag with
another css style.
>
> If the div tag was immediately followed by a <p>
(i.e., <div><p><span>...)
> the layer was positioned properly in all browsers, both
mac and pc.
> If the <p> was omitted, the layer would position
correctly in IE (pc) and
> in Dreamweaver preview. In other browsers and on the
Mac, it would display
> higher than specified.
>
> This doesn't seem to make sense to me. Does it to you?
>
> Here is the code used within the div tag.
>
> <div id="Emp06">
> <p>
> <span class="Name">Lorem Ipsum</span><br
/>
> <span class="Title">
> tile line 1<br />,
> title line 2</span>
> </div>
>
>
> "Murray *ACE*" <[email protected]>
wrote in message
> news:[email protected]...
>> Would need to see your HTML too. Can you post a link
to the page?
>>
>> --
>> 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
>> ==================
>>
>>
>> "Anthony LeBaron" <[email protected]> wrote in
message
>> news:[email protected]...
>>> Having problems with layer position. Dreamweaver
preview is correct, as
>>> is display in Internet Explorer.PC.
>>> Firefox on PC, and all Mac browsers do not
correctly place top value
>>> (left value is correct)
>>> Any ideas? All layer attributes are in css.
Emp01 below is correctly
>>> placed. Emp07 is not. All layers given unique
Z-index
>>>
>>> #Emp01 {
>>> position:absolute;
>>> left:183px;
>>> top:275px;
>>> width:180px;
>>> height:42px;
>>> z-index:1;
>>> visibility: hidden;
>>> }
>>>
>>> #Emp07 {
>>> position:absolute;
>>> left:600px;
>>> top:265px;
>>> width:175px;
>>> height:61px;
>>> z-index:7;
>>> visibility: hidden;
>>> }
>>>
>>
>>
>
>

Similar Messages

  • Help with Layer Positioning and TimeLine

    Hello all, here is my situation:
    I am trying to do a simple Layer animation for my home
    page... 4 Layers startoff at the right of my webpage(table) and end
    up at the left handside, as an example.
    My problem is I have a main 1x1 table that is centered, and
    that works fine to center all the text and images that are within
    it, but the layers that I tried placing within it stay absolute to
    the screen and not relative to the table.... and if I try to
    specify relative position in the first place for any of the layers
    that Layer disapears from my Layer panel and I cannot timeline with
    it???!!!
    This Started out as a lame trial to avoid making a flash
    movie for this animation.. but right now I am more interested in
    knowing the possibilities and limitations of using Layers and
    Timelines in Dreamweaver.... Any help or comments are most welcome.
    Layth

    I have requested that the thread be removed, Andrew. That's
    the best we can
    do, I'm afraid. Thing is, it can only be removed from the
    webforums, and
    not from the local computers of those who have already
    downloaded the
    message. Also, if Google Groups synched already, then it's
    like being
    carved in stone....
    You can see if that's the case by searching here -
    http://groups.google.com/advanced_group_search?q=+group:macromedia.dreamweaver
    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
    ==================
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    > If you go here -
    http://www.great-web-sights.com/g_layerlaws.asp,
    and read
    > through the layer laws, you'll see that you have broken
    at least one by
    > putting your layers into a table. Being absolutely
    positioned, the layers
    > do not rely on the table for their location on the
    screen. There are ways
    > to do this (easily) if you understand the whole concept
    of CSS
    > positioning. You can try the following things -
    >
    > * After setting your timeline the way you want it,
    MANUALLY change the
    > position attribute of each layer from "absolute" to
    "relative". The
    > timeline will still work, but you have changed the
    entire paradigm for
    > positioning on the <div> tags by making that
    change. Having relatively
    > positioned elements withing a table seems to work pretty
    well.
    >
    > or
    >
    > * After setting your timeline the way you want it,
    MANUALLY move the code
    > for the layers OUT OF THE TABLE, and place it back on
    the page,
    > immediately above the </body> tag. Then follow
    these directions -
    >
    > Change this -
    >
    > </head>
    >
    > to this -
    >
    > <style type="text/css">
    > <!--
    > body { text-align:center; color:#CCC; }
    > #wrapper { text-align:left; width:720px; margin:0
    > auto;position:relative; }
    > -->
    > </style>
    > </head>
    >
    > change this -
    >
    > <body ...>
    >
    > to this -
    >
    > <body ...>
    > <div id="wrapper">
    >
    > and this -
    >
    > </body>
    >
    > to this -
    >
    > </div><!-- /wrapper -->
    > </body>
    >
    > and see if that helps.
    >
    >
    > --
    > 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
    > ==================
    >
    >
    > "laythss" <[email protected]> wrote in
    message
    > news:[email protected]...
    >> Hello all, here is my situation:
    >> I am trying to do a simple Layer animation for my
    home page... 4 Layers
    >> startoff at the right of my webpage(table) and end
    up at the left
    >> handside, as
    >> an example.
    >> My problem is I have a main 1x1 table that is
    centered, and that works
    >> fine to
    >> center all the text and images that are within it,
    but the layers that I
    >> tried
    >> placing within it stay absolute to the screen and
    not relative to the
    >> table....
    >> and if I try to specify relative position in the
    first place for any of
    >> the
    >> layers that Layer disapears from my Layer panel and
    I cannot timeline
    >> with
    >> it???!!!
    >> This Started out as a lame trial to avoid making a
    flash movie for this
    >> animation.. but right now I am more interested in
    knowing the
    >> possibilities and
    >> limitations of using Layers and Timelines in
    Dreamweaver.... Any help or
    >> comments are most welcome.
    >>
    >> Layth
    >>
    >
    >

  • Problem in iBooks 3.2 with position absolute in iOS 7.0.4

    We are positioning in a reflow-able ebook a "div container" via "position absolute”. The position of the div container is changed via “translate3d”.
    Everything work fine in iOS 5.1.1 / eBooks 3.1 and iOS 6.1.3 / eBooks 3.1.
    But in iOS 7.0.4 / iBooks 3.2 we are confronted with the following problems:
    Image container: after page 1 double clicking the image does not work as the text layer is responding the touch event instead of the div container.
    Video container: closing the fullscreen view jumps to the hidden div container on the last page (if hidden on the first page closing the full screen video jumps to the first page too).
    Question:
    What is the reason for this behavior?
    Does “position absolute” not work any longer in iBooks 3.2+
    If yes - what can be used instead?
    Is there any documentation on how iBooks 3.2 handles HTML, CSS and JavaScript beyond the documentation in iTunesConnect? Especially regarding the difference from the standard behavior of webkit.

    Take the phone back to the shop and ask for a refund.

  • Text and layer position problems

    Hi, I am creating a webpage and I have installed a background
    image. for which I have centred and all is fine.
    I am now using layers to add text so I can place the text
    wherever I want.
    But when I save and view in IE and Firefox the text is not in
    the correct position. I have tried a number of things to solve this
    all to no avail.
    Please can someone help me.
    The text I have so far is:

    > I am now using layers to add text so I can place the
    text wherever I want.
    This is number 4 in the top 5 mistakes someone can make in
    building their
    pages. Here's why -
    http://www.great-web-sights.com/g_layer-overlap.asp
    It will help you to understand the difference between
    absolute positioning
    and centering content. Your layer is absolutely positioned,
    and your
    background is centering. That's never going to work the way
    you want....
    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
    ==================
    "YNWA4EVA" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi, I am creating a webpage and I have installed a
    background image. for
    > which
    > I have centred and all is fine.
    >
    > I am now using layers to add text so I can place the
    text wherever I want.
    >
    > But when I save and view in IE and Firefox the text is
    not in the correct
    > position. I have tried a number of things to solve this
    all to no avail.
    >
    > Please can someone help me.
    >
    > The text I have so far is:
    >
    >
    >
    > <!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=iso-8859-1" />
    > <title>Liverpool Hope University - IT Deanery Book
    Sales</title>
    >
    > <style type="text/css">
    > <!--
    > body {
    > background-image: url(template.png);
    > background-repeat: no-repeat;
    > background-attachment: fixed;
    > background-position:center center;
    > margin-top:0;
    > margin-bottom:0;
    > margin-left:0;margin-right:0;
    >
    > }
    > #Layer3 {
    > position:absolute;
    > width:200px;
    > height:115px;
    > z-index:1;
    > left: 334px;
    > top: 115px;
    > }
    > -->
    > </style></head>
    >
    > <body>
    > <div id="Layer3">
    > <p>I want my text here </p>
    > </div>
    > </body>
    > </html>
    >

  • Layer Position

    Maybe I am an idiot... (Don’t answer that)
    I have been designing web pages for a while now, but never
    really got into layers (i'm a table/css man myself). But, I now
    have found a possible use...
    I have a webpage that is a whole mess of tables, and I do not
    want to disturb that. BUT, I want to overlay some flash on top. So,
    I thought, let me tryout layers...
    well, I'm not having much luck. Every time I publish the
    page, the table shifts. (Different in IE and Fire fox).
    I have them positioned absolute in my CSS, no dice... I tried
    putting the exact pixels in the div tag, still no luck. It looks
    perfect in the development environment.
    So, do tables just plane suck? Or just need a little
    massaging?
    OR
    Does someone have a better way to overlay a flash object on
    top of my existing tables?
    Thanks in advance.

    > but its shifting when published (different in IE and
    FireFox). It
    > also shifts when the browser window is adjusted.
    The layer is not shifting since it is absolutely positioned.
    The table
    underneath it is, probably. Is it a centered or a percent
    width table?
    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
    ==================
    "flying_scott" <[email protected]> wrote in
    message
    news:[email protected]...
    > Yes, the layer is technically working... and I don't
    beleive I have it in
    > a
    > table cell, but its shifting when published (different
    in IE and FireFox).
    > It
    > also shifts when the browser window is adjusted. here is
    a snippet of my
    > code:
    >
    > <b><style type="text/css">
    > <!--
    > #flash {
    > position:absolute;
    > left:265px;
    > top:10px;
    > width:770px;
    > height:604px;
    > z-index:1;
    > }
    > -->
    > </style>
    > </head>
    >
    > <body bgcolor="#444444" leftmargin="0" topmargin="10"
    marginwidth="0"
    > marginheight="10">
    > <div id="flash">
    > <object classid="clsid:
    D27CDB6E-AE6D-11cf-96B8-444553540000"
    > codebase="<a
    > target=_blank class=ftalternatingbarlinklarge
    > href="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#versio
    > n=7,0,19,0"">
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab
    > #version=7,0,19,0"</a> width="770"
    height="600">
    > <param name="movie" value="gil.swf">
    > <param name="quality" value="high">
    > <param name="wmode" value="transparent">
    > <embed src="gil.swf" quality="high"
    wmode="transparent"
    > pluginspage="<a
    > target=_blank class=ftalternatingbarlinklarge
    > href="
    http://www.macromedia.com/go/getflashplayer"">http://www.macromedia.com/go
    > /getflashplayer"</a>
    type="application/x-shockwave-flash" width="770"
    > height="600"></embed>
    > </object>
    > </div></b>
    >
    > Is this just a browser render problem, or am i missing
    some stuff.
    >
    > Scott
    >

  • Layer position fix to Table position

    Hi there,
    I have read quite a bit about positioning layers, however i
    still find it imposible to use flexible tables with layers.
    I have a simple info buton that onRollOver is shows a layer,
    Example:
    sample website
    I manage to keep it quite close to the info buton, by setting
    the left: 45% top: 65%; instead of pixels.
    But when you resize the browser window (F11) it still moves .
    And on full Screen it actually overlaps the buton making the
    layer jumpy.
    Thanks for some creative advice.
    Anybody with a better solution?

    > Ok, could you telll me what is wrong?
    You didn't do what I told you to do.
    <td colspan="2" align="center" valign="bottom"><div
    style="position:relative"><div
    id="Layer1"></div></div></td>
    here is the css code
    #Layer1 {
    position:absolute;
    width:334px;
    height: 82px;
    z-index:1;
    left: 108px;
    top:1px;
    visibility: hidden;
    background-image: url(olo_images/bubble.gif);
    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
    ==================
    "Txar?n" <[email protected]> wrote in
    message
    news:[email protected]...
    >
    quote:
    Originally posted by:
    Newsgroup User
    > > otherwise it would strech the whole table to give
    space for the image
    > > inside the layer, even after having set the table
    at an absolute size of
    > 522px width.
    >
    > No, it wouldn't. Since the layer (and its contents) are
    removed from the
    > flow of the page (by virtue of being absolutely
    positioned) neither the
    > layer, nor its contents can interact with any other page
    element.
    >
    >
    > Ok, could you telll me what is wrong?
    > I have a table that is width:522
    > Set to be in the middle and centre to screen
    > 3columns and 3 rows
    > in the middle i have the logo and in 2 corners
    invisible.gif
    > I tried to put the layer (<Div>THE.gif loaded from
    css</Div>)at the botom
    > righ
    > corner (in the cell)
    > It wouldn't work! It streched the whole table to ad the
    image size.
    > When i merges the two cells botom right so that the cell
    was biger than
    > the
    > image loaded it worked!
    > Where is the mistake?
    >
    > the htm code:
    > <td colspan="2" align="center"
    valign="bottom"><div
    > id="Layer1"></div></td>
    >
    > here is the css code
    > #Layer1 {
    > position:relative;
    > width:334px;
    > height: 82px;
    > z-index:1;
    > overflow: visible;
    > left: 108px;
    > top:1px;
    > visibility: hidden;
    > background-image: url(olo_images/bubble.gif);
    > }
    >
    >
    > PS the problem is solved but i'd like to know for the
    future. :-)
    >
    > Thanks
    >
    >

  • Elements in JPanel not painting when positioned absolutely

    I am designing a superclass that extends JPanel which will have methods like addTextField(int x, int y, int w, int h). Basically it just creates the named component at the given coordinates, positioned absolutely on the panel.
    Here's the important snipits of my code... but nothing shows up on the window when I run the applet that uses these panels. It's just blank. Can anyone tell me why?
    public class MinionsGCPanel extends JPanel implements ActionListener, ListSelectionListener
    <snip>
         // Constructor
         public MinionsGCPanel(MinionsGC svr){
              super();
              server = svr;
              setLayout(null);
              setSize(800, 600);
              setVisible(true);
              components = new ArrayList<Component>();
         // Add a component
         protected void add(Component com, int x, int y, int w, int h){
              com.setBounds(x, y, w, h);
              components.add(com);
         // Add a label
         protected MLabel addLabel(int x, int y, int w, int h, String text){
              MLabel l = new MLabel(text);
              add(l, x, y, w, h);
              return l;
    <snip>
         // Repaint
         public void paint(Graphics g){
              super.paint(g);
              Iterator it = components.iterator();
              while(it.hasNext()){
                   Component c = (Component) it.next();
                   c.repaint();
    }Edited by: L4E_WakaMol-King on Oct 29, 2007 10:23 PM

    Here's an actual instance of a subclass of that class:
    public class LoginPanel extends MinionsGCPanel
    <snip>
         // Constructor
         public LoginPanel(MinionsGC svr){
              super(svr);
         // Draw GUI
         public void refresh(){
              super.refresh();
              username = addTextField(50, 50, 200, 20);
              password = addPasswordField(50, 80, 200, 20);
              loginButton = addButton(50, 110, 100, 20, "Login");
    <snip>
    }And the applet itself:
    public class MinionsGC extends JApplet
    <snip>
         // Prompt for login
         public void dologin(){
              switchPanels(loginPanel);
    <snip>
         // Load Panels
         public void loadPanels(){
              loginPanel = new LoginPanel(this);
              chatPanel = new ChatPanel(this);
              logoffPanel = new LogoffPanel(this);
    <snip>
         // Switch panels
         public void switchPanels(MinionsGCPanel p){
              p.refresh();
              setContentPane(p);
              currentPanel = p;
              validate();
    <snip>
    }Edited by: L4E_WakaMol-King on Oct 30, 2007 8:52 AM

  • Layer position misBehavior..!    -(  help ? )-

    On any of the various pages I'd been putting together recently, I get confusing responses.
    When I come back to verify link settings before publishing (locally), some of the links refuse to be positioned frontmost. Then I discover that a few of the other graphics in its neighborhood refuse to be directed backmost.
    I've seen so much of this 'misbehavior' that I've developed the pattern of changing the opacity of any questionable link -(back to almost full)- just to determine from it's coloring where in the layer hierarchy it's decided to settle.
    I tried duplicating another, properly behaving link, and changing its setting to the link I'd had to delete. That would only stay front most until it I'd moved it near the old position.
    My experience has been that a newly duplicated item, iWeb would deposit on the page as frontmost
    But these new links seemed to change their layer mind when they'd get close to the layer position they were replacing. Their now temporarily fully colored area would slide behind any item(s) in the current problem area.
    I've tried several workarounds - most of them from within the same page. But the only thing that seems to work consistently has been to select something similar from another page where they seemed to be behaving correctly. Then I'd copy them from there and paste them into the new page as a group and change any text or graphic components as necessary.
    It sure has become tedious keeping up with these iWeb neuroses.!
    Does anyone know why this might be happening..?
    -(my domain file size currently is around 16 mB, probably half of which is temp. archived graphics )-
    -( for the interim, totally publishing locally)-
    Has anyone a cure for this peripatetic behavior..?
    Is there any easier workaround..?
    Much advance appreciation for any tediosity relief.!
    G-4; 400/896   Mac OS X (10.4.7)  

    One way to do that would be to use two images: one blurred, one not. then use a mask to show and hide one or the other. You can probably adapt this example file: http://www.ddg-designs.com/downloads/mask.zip

  • Spry Effects doesnt work with position:absolute CSS

    HI guys,
    I have a text with position: absolute; left: 20px; top: 10px;
    to it and using Spry's Fade Effect, it just shows it without any
    fade animation, any ideas why?
    quote:
    <!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" />
    <title>Untitled Document</title>
    <script src="assets/SpryAssets/SpryTabbedPanels.js"
    type="text/javascript"></script>
    <script src="assets/SpryAssets/SpryEffects.js"
    type="text/javascript"></script>
    <script src="assets/SpryAssets/xpath.js"
    type="text/javascript"></script>
    <script src="assets/SpryAssets/SpryData.js"
    type="text/javascript"></script>
    <link href="assets/SpryAssets/SpryTabbedPanels.css"
    rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    .TabbedPanelsContent {
    background-color: #006699;
    .cool {
    background-color:#993366;
    position:absolute;
    left: 20px;
    top: 10px;
    -->
    </style>
    <script type="text/javascript">
    <!--
    function TabbedPanelsCycler(tp)
    this.tp = tp;
    this.timerID = 0;
    this.interval = 5000; // Milliseconds
    TabbedPanelsCycler.prototype.start = function()
    this.stop();
    var self = this;
    this.timerID = setTimeout(function() { self.next(); },
    this.interval);
    TabbedPanelsCycler.prototype.stop = function()
    if (this.timerID)
    clearTimeout(this.timerID);
    this.timerID = 0;
    TabbedPanelsCycler.prototype.next = function()
    var tp = this.tp;
    Spry.Effect.DoFade('Content' + (tp.getCurrentTabIndex()+1) %
    tp.getTabbedPanelCount(), {duration: 1000, from: 100, to: 0,
    toggle: false, finish: function(){
    var el = document.getElementById('Content' +
    ((tp.getCurrentTabIndex() + 1) % tp.getTabbedPanelCount()));
    tp.showPanel((tp.getCurrentTabIndex()+1) %
    tp.getTabbedPanelCount()); // 1, 2, 3, 4, 0 ... loop
    Spry.Effect.DoFade('Content' + (tp.getCurrentTabIndex() + 1)
    % tp.getTabbedPanelCount(), {duration: 1000, from: 0, to: 100,
    toggle: false});
    if (this.timerID)
    this.start();
    TabbedPanelsCycler.prototype.previous = function()
    var tp = this.tp;
    var curIndex = tp.getCurrentTabIndex();
    tp.showPanel(((curIndex < 1) ? tp.getTabbedPanelCount() :
    curIndex) - 1);
    if (this.timerID)
    this.start();
    function MM_effectAppearFade(targetElement, duration, from,
    to, toggle)
    Spry.Effect.DoFade(targetElement, {duration: duration, from:
    from, to: to, toggle: toggle});
    var dsFeaturebox1 = new
    Spry.Data.XMLDataSet("assets/xml/featurebox_data.xml",
    "featurebox/feature1");
    //-->
    </script>
    </head>
    <body onload="cycler.start();">
    <div id="TabbedPanels1" class="TabbedPanels">
    <ul class="TabbedPanelsTabGroup">
    <li class="TabbedPanelsTab"
    onclick="MM_effectAppearFade('Content1', 1000, 0, 100, false)"
    tabindex="0">Tab 1</li>
    <li class="TabbedPanelsTab"
    onclick="MM_effectAppearFade('Content0', 1000, 0, 100, false)"
    tabindex="0">Tab 2</li>
    </ul>
    <div class="TabbedPanelsContentGroup">
    <div class="TabbedPanelsContent" id="Content1">
    <div>Normal text here</div>
    </div>
    <div class="TabbedPanelsContent" id="Content0"
    spry:detailregion="dsFeaturebox1">
    <div class="cool">{XML text here}</div>
    </div>
    </div>
    </div>
    <script type="text/javascript">
    <!--
    var tp1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
    var cycler = new TabbedPanelsCycler(tp1);
    //-->
    </script>
    </body>
    </html>
    Thanks,
    J

    Hi guys,
    I just would like to know why adding position: absolute on my
    css would stop the Spry Effects from doing its job? Thanks!

  • Layer position resets when creating animations

    I'm creating an animated gif from a video clip (cinemagraph). In order to acheive the effect I need, I need to move each layer with the move tool to get an object to stay in the same position. I have gone through layer by layer and used the move tool to move the contents of each layer. When I play the animation I see the layers in the position I put them in. As soon as I stop playing the animation the contents of each layer snap back to their original positions. I have tried using the lock tools (both lock position and lock all) but they don't make a difference. Can anyone tell me why layer positions would reset when creating animations and how to get it to stop?
    Thanks for any help.
    Eric

    It seems from your answer that you're thinking I'm just moving one frame and expecting the rest of them to move automatically (but I'm not sure if that's what you are saying). I have gone through and moved each frame individually and then locked each frame's position individually. When I play the animation and then stop it the layers move back to their original positions.
    I'm also not sure if you're thinking I'm expecting that when I move one image off the layer it will affect the next layer. That's not what I'm expecting. I'm just repositioning the image on each layer to get a particular object to stay in one place (the camera was moving while shooting), so I'm dealin gwith each layer individually.
    Thanks

  • Position: absolute, Fixed, Relative, Static

    Hi ,
    I dont understand yet now css "Position: absolute, Fixed, Relative, Static"
    Anybody have a brief tutorial for this plz help?

    Fixed examples.
    http://alt-web.com/DEMOS/CSS2-Sticky-Footer.shtml
    http://alt-web.com/DEMOS/CSS2-Sticky-Text.shtml
    Nancy O.

  • Position:absolute question

    I have a div that is position:absolute. I can't seem to float it right or left. I need it to be centered between 2 other divs. Is the only way to do this by margin-left or right since the float won't work?
    Thanks

    calijatt4lyfe wrote:
    I'm using a google custom search engine, and the search results display on the same page below the search box. I wanted the results to not move the contents of the page below as they came in, so I am using
    position: absolute;
    z-index: 1;
    Is there a better way to do it?
    Post a link to your page please.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Layer positioning problem

    i insert a layer. set properties - top, left, width, height -
    but layer goes where it wants to. not honoring property values in
    dreamweaver edit mode and even worse positioning error in
    preview/debug. can not figure it out. all other layers on page
    behave fine. position set to absolute, float to none.

    Design view....
    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
    ==================
    "Walt F. Schaefer" <[email protected]> wrote in
    message
    news:ep8eu1$rj9$[email protected]..
    >>>what features to leave out of the cut down
    version.
    >
    > Code View?
    >
    > Walt
    >
    > "Malcolm N_" <[email protected]> wrote in
    message
    > news:[email protected]..
    >> On Wed, 24 Jan 2007 01:34:31 +0000 (UTC),
    "elmorilloana"
    >> <[email protected]> wrote:
    >>
    >>> i have been
    >>>teaching children to make pages using pagemill as
    is much more intuitive
    >>>than
    >>>dw. but, things move on - time i learned the
    'latest'. forums are a
    >>>nice help.
    >>
    >> I think one of the problems is that DW is too high
    level for some
    >> people to start html work - and therefore too
    expensive. No amateur is
    >> going to spend the full price, when other packages
    like Pagemill were
    >> /are in the 50 to 100 dollar / pound / euro league.
    >>
    >> I've said before that Adobe may be well advise to
    release the next DW
    >> in the same way as Photoshop; the whole package for
    professionals and
    >> like Photoshop Elements for the domestic market. The
    tricky part would
    >> be what features to leave out of the cut down
    version.
    >>
    >> --
    >>
    >> ~Malcolm N....
    >> ~
    >
    >

  • Layer Positioning For IE and Firefox

    Im using Dreamweaver 8. Im trying to position a flash file at
    the center of the top of the page, and at the bottom of the page.
    but for some reason its only laying out properly in Internet
    Explorer. i was using Project Vii's Screen Layout extension. For
    some reason in Firefox the layer at the bottom of the page is
    positioned strangely. like it is too low or something or that its
    trying to position at the very top of the layer instead of the
    bottom - i want the bottom flash file to overlap the top one when
    clicked - u can take a look. check it out in IE and Firefox.
    anyhelp is greatly appreciated.
    http://www.johnniewang.com/tests/mainswf.html

    Get rid of the Layout Designer and take a look at how I did
    it here -
    http://www.murraytestsite.com/mainswf.htm
    It's way simpler.
    In addition, I'm not sure what you are describing, but could
    this be your
    problem?
    <param name="wmode" value="transparent" />
    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
    ==================
    "raverdx" <[email protected]> wrote in
    message
    news:e5n7qb$q99$[email protected]..
    > Im using Dreamweaver 8. Im trying to position a flash
    file at the center
    > of the
    > top of the page, and at the bottom of the page. but for
    some reason its
    > only
    > laying out properly in Internet Explorer. i was using
    Project Vii's Screen
    > Layout extension. For some reason in Firefox the layer
    at the bottom of
    > the
    > page is positioned strangely. like it is too low or
    something or that its
    > trying to position at the very top of the layer instead
    of the bottom - i
    > want
    > the bottom flash file to overlap the top one when
    clicked - u can take a
    > look.
    > check it out in IE and Firefox. anyhelp is greatly
    appreciated.
    >
    > <a target=_blank class=ftalternatingbarlinklarge
    > href="
    http://www.johnniewang.com/tests/mainswf.html
    > ">
    http://www.johnniewang.com/tests/mainswf.html
    > </a>
    >

  • Changing layer position vertically

    I'm having a problem when adding a new layer that needs to be positioned
    below older layers on the timeline.
    When I drag the layer down, it -overlays- another layer, rather remaining
    separate. Or it positions itself on a layer with other video, which I don't want.
    Any help appreciated.

    It probably doesn't apply in this case, but a cool tip is to Option-drag a sequence into another sequence and drop it as an Overwrite edit on the higher video track. Option dragging will give you all the individual clips, rather than one big NESTed clip.
    (At least I think it's Option-drag. System not on right now. If it's not Option, try the other modifier keys. PBC - Posting Before Coffee.)

Maybe you are looking for