Mar 4, 2007 #1 crappdan Technical User Mar 4, 2007 4 GB text will not fit layer as paragraph. layer expands to infinity horizontaly on first line
Mar 5, 2007 #2 traingamer Programmer Jun 18, 2002 3,270 US How are you restricting/defining the width of the layer? Expanding to fill the width is the default for paragraphs (and pretty much everything else). Greg "Personally, I am always ready to learn, although I do not always like being taught." - Winston Churchill Upvote 0 Downvote
How are you restricting/defining the width of the layer? Expanding to fill the width is the default for paragraphs (and pretty much everything else). Greg "Personally, I am always ready to learn, although I do not always like being taught." - Winston Churchill
Mar 6, 2007 Thread starter #3 crappdan Technical User Mar 4, 2007 4 GB thats the problem, i don't know how to define/restrict the width of layer Upvote 0 Downvote
Mar 6, 2007 #4 traingamer Programmer Jun 18, 2002 3,270 US Ok. What are your layers? table cells? divs? Greg "Personally, I am always ready to learn, although I do not always like being taught." - Winston Churchill Upvote 0 Downvote
Ok. What are your layers? table cells? divs? Greg "Personally, I am always ready to learn, although I do not always like being taught." - Winston Churchill
Mar 6, 2007 Thread starter #5 crappdan Technical User Mar 4, 2007 4 GB i belive they'r table cells. i'm selecting INSERT> LAYOUT OBJECT> LAYER to achieve a group of nested layers Upvote 0 Downvote
i belive they'r table cells. i'm selecting INSERT> LAYOUT OBJECT> LAYER to achieve a group of nested layers
Mar 6, 2007 #6 am7555 Technical User Mar 6, 2007 27 CA Below are 2 examples of how the code looks like when limiting the size of Layer and Div. #Layer1 { position:absolute; width:200px; height:115px; z-index:1; left: 47px; top: 190px; } --> </style> inline style code, limited div to 300 pixels: <div id="div1" style="width:300px">Content for id "div1" Goes Here</div> Upvote 0 Downvote
Below are 2 examples of how the code looks like when limiting the size of Layer and Div. #Layer1 { position:absolute; width:200px; height:115px; z-index:1; left: 47px; top: 190px; } --> </style> inline style code, limited div to 300 pixels: <div id="div1" style="width:300px">Content for id "div1" Goes Here</div>