English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

i know layers, and i know css,

I do have a little problem though,

I am trying to use subdreamer cms, but whenever i put the php like this in -

$inputsize=15;
for($i=0; $i<7; $i++) {
if($pluginpath[$i]!="plugins/p1_empty/empty.php") {
print "

{$pluginname[$i]}
";
include($pluginpath[$i]);
print "

";
}
}
?>

within the layer, the layer will not extend with the script ( so it just extends past the layer box )

is there a way to make it 'extend' with the scripts result ?

( sorry, but i am not sure how to describle it )

2007-01-16 21:40:32 · 2 answers · asked by glynn.alexander 3 in Computers & Internet Programming & Design

NOTE: If you are talking about extending vertically, you are looking at the wrong piece of code. You should make a change in the style sheet. ----

i need it to extend downwards, how would i achieve that ?

2007-01-16 23:50:31 · update #1

2 answers

Official CSS specs require the content to extend past the outside of the box (in your case the DIV).

Previous versions of Internet Explorer (including IE6) would extend the box. Firefox, Netscape, Opera, Safari all correctly let the content go outside the box. IE7 properly allows the content to extend out of the box.

Typically, this is an issue horizontally, but not vertically. You can change the CSS to having no height so the box extends vertically. There is a minheight in CSS, but IE6 will treat that as height, so I don't recommend it.

NOTE: If you are talking about extending vertically, you are looking at the wrong piece of code. You should make a change in the style sheet.

2007-01-16 23:46:36 · answer #1 · answered by LorettoBoy 4 · 0 0

Sorry I can't help but if you ask at the following website you'll more than likely find somesmartass to answer your question.

This particular forum is excellent for finding help with web design related stuff...

http://forums.digitalpoint.com/

2007-01-17 05:45:19 · answer #2 · answered by riffyxraff 3 · 0 2

fedest.com, questions and answers