Hi everyone,
I'm using a CSS only layout and have defined the leftpane and the contentpane so far. The contentpane uses a margin-left: 200px and everything looks fine when I have content in the leftpane (like the login etc.)
------------ SITE -------------
[][][][][] TEXT TEXT TEXT
[][][][][] TEXT TEXT TEXT
...........TEXT TEXT TEXT
>> looks fine
However, when I click on Login or Register, the leftpane is empty and it starts to look weird, because the content of the contentpane is not aligned in the centre (because of the margin-left).
------------ SITE -------------
[][][][][]
[][][][][]
>> not centred :-(
First I tried float: left for the leftpane, but the text starts to go to the complete left side, when the height of the leftpane is reached (the original idea of float, like in a newspaper with pictures in between where the text moves around).
------------ SITE -------------
[][][][][] TEXT TEXT TEXT
[][][][][] TEXT TEXT TEXT
TEXT TEXT TEXT
>> text goes to the complete left side
Is there any workaround to this problem?
01. Is it maybe possible to assign a new CSS to the logins etc. only?
02. Or a programming trick?
Thanks in advance!!!