footer at bottom of page without content
footer at bottom of page without content
Hi, I would like to have my footer at the bottom of the page, as if you would have a table with a height of 100%. The footer should be at the bottom of the page even when there's no content. how can i solve my problem.
i can't give my footer table a height of 100% and align my text to the bottom...
i would be pleased for any help...
--Deutsch--
Hallo, ich würde gerne die footer tabelle zuunterst auf meiner page haben, auch wenn ich gar keinen inhalt auf der page habe. es soll auch bei jeder auflösung zuunterst sein. ich kann dies aber nicht erreichen, indem ich meiner footer tabelle sage, es soll eine 100% höhe haben und dann den text mit valign nach unten verschiebe...
wie kann ich dies lösen...
wäre um jede hilfe dankbar
i can't give my footer table a height of 100% and align my text to the bottom...
i would be pleased for any help...
--Deutsch--
Hallo, ich würde gerne die footer tabelle zuunterst auf meiner page haben, auch wenn ich gar keinen inhalt auf der page habe. es soll auch bei jeder auflösung zuunterst sein. ich kann dies aber nicht erreichen, indem ich meiner footer tabelle sage, es soll eine 100% höhe haben und dann den text mit valign nach unten verschiebe...
wie kann ich dies lösen...
wäre um jede hilfe dankbar
hi,
setze deine layoutvorlage so, das du rechts 1 Pixel Breite hast, dann setze da ein Spacer ein, dann wird die Seite auch ohne Inhalt immer so hoch dargestellt und Dein Footer sitzt dann immer an der gleichen Stelle.
setze deine layoutvorlage so, das du rechts 1 Pixel Breite hast, dann setze da ein Spacer ein
Code: Select all
{SPACER:1:450}
Gruß/ regards cyrano
--------------------------------------------------------
templates -> http://www.128.weitzelmedia.de
planepix -> http://www.planepix.de
XING -> https://www.xing.com/profile/Thomas_Weitzel3
--------------------------------------------------------
templates -> http://www.128.weitzelmedia.de
planepix -> http://www.planepix.de
XING -> https://www.xing.com/profile/Thomas_Weitzel3
wenn ich das richtig verstehe suchst du sowas
siehe hier z.B. http://www.simondigital.de
einfach in Admin-Seitenlayout bei Alle Blöcke etc. bis Fußzeile bei Class
'tableight' eintragen (ohne ' )
dann in der Standard CSS folgendes einfügen
das sollte es gewesen sein
Horst
siehe hier z.B. http://www.simondigital.de
einfach in Admin-Seitenlayout bei Alle Blöcke etc. bis Fußzeile bei Class
'tableight' eintragen (ohne ' )
dann in der Standard CSS folgendes einfügen
Code: Select all
.tableheight { height: 100%; }
Horst
das dabei ist aber, dass es nicht dynamisch ist. wenn ich den footer für die bildschrimauflösung von 1024x768 zu unterst an den browserrand positioniere, so wird es bei einer auflösung von 1280x1024 nicht mehr zu unterst sein.cyrano wrote:hi,
setze deine layoutvorlage so, das du rechts 1 Pixel Breite hast, dann setze da ein Spacer ein, dann wird die Seite auch ohne Inhalt immer so hoch dargestellt und Dein Footer sitzt dann immer an der gleichen Stelle.Code: Select all
{SPACER:1:450}
dank dir pico! so simple und ich sah es nicht!pico wrote: wenn ich das richtig verstehe suchst du sowas
siehe hier z.B. http://www.simondigital.de
einfach in Admin-Seitenlayout bei Alle Blöcke etc. bis Fußzeile bei Class
'tableight' eintragen (ohne ' )
dann in der Standard CSS folgendes einfügen
Code:
.tableheight { height: 100%; }
das sollte es gewesen sein
Horst
tut mir leid, dass ich am ahnfang das Problem nicht richtig schildern konnte.
thx!
Also im Pagelayout bei Class überall:
tablehight
eintragen und im css
[...]
Lokales Testsystem
tablehight
eintragen und im css
[...]
Code: Select all
.tableHead {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
font-weight: bold;
color: #6D7983;
line-height: 13px;
}
.tableSubHead {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #000000;
.tablehight { height: 100%; }
}
Code: Select all
.tableSubHead {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #000000;
.tablehight { height: 100%; }
}
Code: Select all
.tableSubHead {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #000000;
}
.tablehight { height: 100%; }
for the English speaking People here:
the Thread is about to hold the Footer-Area alway at the Bottom of the Browser-Window also when the Content Part is emty or very short.
The solution for that ist to set in Backend - Pagelayout
enter in the Class-Field - tableheight -
and append your Standard-CSS with
hope this helps
the Thread is about to hold the Footer-Area alway at the Bottom of the Browser-Window also when the Content Part is emty or very short.
The solution for that ist to set in Backend - Pagelayout
enter in the Class-Field - tableheight -
and append your Standard-CSS with
Code: Select all
.tablehight { height: 100%; }