Table from top to bottom Table from top to bottom
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Table from top to bottom

Started by artinoah, September 04, 2009, 08:22:54 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

artinoah

...how can i create a side with a table filling the whole side (with coppermine)...from top to bottom

...without coppermine: www.artinoah.de...it works

...with coppermine i always stay away from the bottom, but i want to fit at the bottom...

I work with : <body leftmargin="0" topmargin="0" bottommargin="0">
  <table width="100%" height="100%" border="0" align="center" cellpadding="0" cellspacing="0" >
...

CSS:
body {
        font-family : Verdana, Arial, Helvetica, sans-serif;
   margin: 0% 0;
   position: middle;
   left: 0px;
   visibility: visible;
   width: 100%;
   height: 100%;
}

Where is the problem? Isn´t it working with a table at all? Shall i use a layer?

Joachim Müller

Use HTML (table-driven layout), use CSS. Both options are possible - it's up to you what you use. It might help if you post a link to your actual gallery for a start.

artinoah

...i have solved the problem by using a layer with <div id="Layer1">...

<style type="text/css">
<!--
#Layer1 {
   position:absolute;
   width:100%;
   height:100%;
   z-index:1;
   left: 0;
   top: 0;
}
-->
</style>

...
Stefan