Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
Lisa Simpson #1
flexible layer width?
Is it possible to force a layer to have a flexible layer width? Imagine
that you have 2 layers side by side, one on the left and one on the right.
The layer on the right you have aligned to the right edge of the browser
window (using the pv7 extension snap layers), and you want the layer on the
left to be aligned to the left edge of the browser window but span over to
the left edge of the layer on the right even when the browser window is
resized - how can this be done?
Lisa Simpson Guest
-
flexible page
hi everyone i am having problem resizing table so it would be streached after viewing on diffrent monitors with diffrent resolutions.the problem... -
layer width
Hi Chaps, am fairly new to this but have a v annoying prob: have a layer thats 100% width along the bottom of my page and when its on 800x600... -
Make a layer stretch 100% of the width
Hey- I'm trying to make my layer stretch across the top of the page from border to border. I think I need to include something in the .css file... -
Extending a layer across 100% of the width of the page
Hey all I know I'm missing the code that goes into .css that extends the bg- will it work with layers? Can I get the code? Thanks!! BR -
on Director : 3D layer + flash (SWF) layer (or with other layer type)
Thankx for all it's works :) Coool -
rob :: digitalburn #2
Re: flexible layer width?
It's all incredibly simple if you just learn the JavaScript yourself. It's
the difference between learning how to cook and living off fast food :)
Lisa Simpson wrote:> Is it possible to force a layer to have a flexible layer width?
> Imagine that you have 2 layers side by side, one on the left and one
> on the right. The layer on the right you have aligned to the right
> edge of the browser window (using the pv7 extension snap layers), and
> you want the layer on the left to be aligned to the left edge of the
> browser window but span over to the left edge of the layer on the
> right even when the browser window is resized - how can this be done?
rob :: digitalburn Guest
-
Al Sparber- PVII #3
Re: flexible layer width?
rob :: digitalburn wrote:
It's even easier if you don't use script at all.> It's all incredibly simple if you just learn the JavaScript yourself.
> It's the difference between learning how to cook and living off fast
> food :)
Style sheet:
#leftDiv {
position: absolute;
left: auto;
top: 60px;
right: 200px;
}
#rightDiv {
position: absolute;
width: 200px;
left: auto;
top: 60px;
right: 0px;
}
Markup:
<div id="leftDiv">
Left Div Content
</div>
<div id="rightDiv">
Right Div Content
</div>
--
Al Sparber - PVII
[url]http://www.projectseven.com[/url]
Dreamweaver Extensions - DesignPacks - Tutorials - Books
---------------------------------------------------------------------
The PVII Newsgroup | [url]news://forums.projectseven.com/pviiwebdev[/url]
The CSS Newsgroup | [url]news://forums.projectseven.com/css[/url]
---------------------------------------------------------------------
Al Sparber- PVII Guest
-
Lisa Simpson #4
Re: flexible layer width?
Well, I ain't gonna learn how to cook just to scarf down a burger! : }
"rob :: digitalburn" <rob@digitalburn.net> wrote in message
news:c1g26j$9ss$1@forums.macromedia.com...> It's all incredibly simple if you just learn the JavaScript yourself. It's
> the difference between learning how to cook and living off fast food :)
>
>
> Lisa Simpson wrote:>> > Is it possible to force a layer to have a flexible layer width?
> > Imagine that you have 2 layers side by side, one on the left and one
> > on the right. The layer on the right you have aligned to the right
> > edge of the browser window (using the pv7 extension snap layers), and
> > you want the layer on the left to be aligned to the left edge of the
> > browser window but span over to the left edge of the layer on the
> > right even when the browser window is resized - how can this be done?
>
Lisa Simpson Guest
-
rob :: digitalburn #5
Re: flexible layer width?
Okay, I guess what I meant was to learn the tools, not necessarily just the
JavaScript :)
> It's even easier if you don't use script at all.
>
> Style sheet:
>
> #leftDiv {
> position: absolute;
> left: auto;
> top: 60px;
> right: 200px;
> }
> #rightDiv {
> position: absolute;
> width: 200px;
> left: auto;
> top: 60px;
> right: 0px;
> }
>
>
> Markup:
>
> <div id="leftDiv">
> Left Div Content
> </div>
> <div id="rightDiv">
> Right Div Content
> </div>
rob :: digitalburn Guest
-
Troyan #6
Re: flexible layer width?
<div>Layer with Flexible Width</div>
<div style="float: right; width: 200px;">Layer with fixed Width</div>
--
- Rio de Janeiro, Brasil
- Troyan <dnunes[at]email[dot]com>
Troyan Guest



Reply With Quote

