Maybe you can use margin-top, so the signature will be at the bottom of the message area, if the message is one line. Unfortunately, it's a bit ugly for a long message.
Alternatively, you can add a row between the post author/message and the post button for the signature.
oh... Now I know what leefish meant.. u just added a new row and put the signature inside that row right ? this is a good trick but what about those users with no signature ? I don't wanna have empty rows.
I finally came up with the right answer
here...
But here's another issue.. some firefox versions aren't compatible with positioning codes introduced there. therefore the signature sticks out of the flow of the web page.. Other browsers are ok with it.. and that's what I call a catch 22.
Quote:Maybe you can use margin-top, so the signature will be at the bottom of the message area, if the message is one line. Unfortunately, it's a bit ugly for a long message.
Alternatively, you can add a row between the post author/message and the post button for the signature.
Actually I went for this one coz it's the most compatible way.
All I did was add a <br /> before the postbit_signature:
PHP Code:
<br /><hr size="1" width="25%" align="right" />
{$post['signature']}
|
Thank u guys for helpin..tagged the thread as [Solved]
Well, it all depends on how you want your layout to look. For example, I don't have the <hr> tag as I don't like it and I have my .css set so it is not very obvious there is a "missing line". I also use the default profile plugin to hand out a standard sig and avatar on registration. I also have a fixed height on my signatures to stop the board looking too much like a Christmas tree.
I checked ur site a few minutes ago and I have to admit that this is a very cool trick.. at least u have no compatibility issue. I'll give this one a try...
congrats BTW.. ur website is so cool.. I never get tired browsin it.
Quote:I don't have the <hr> tag as I don't like it and I have my .css set so it is not very obvious there is a "missing line.
how did u do that ?
you prolly omitted "hr" and replaced it with "div" and defined it in global.css.. Am I correct?
yup, pretty much
this is what I have in postbit_signature
HTML Code
<div class="signature">{$post['signature']}</div>
|
and in the .css
Code:
.signature {
border:2px solid #b5bfbe;height:56px;overflow:auto;
}
|
I can't thank u enough Lee... hope this helps the others who come up with such an issue as well...