forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: artinoah on September 04, 2009, 08:22:54 pm

Title: Table from top to bottom
Post by: artinoah on September 04, 2009, 08:22:54 pm
...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?
Title: Re: Table from top to bottom
Post by: Joachim Müller on September 14, 2009, 04:32:13 pm
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.
Title: Re: Table from top to bottom
Post by: artinoah on September 15, 2009, 05:55:24 pm
...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