Simple Machines Community Forum

SMF Support => SMF 2.0.x Support => Topic started by: chaincommonkuy on June 27, 2011, 12:32:50 PM

Title: Signature Float due to Avatar
Post by: chaincommonkuy on June 27, 2011, 12:32:50 PM
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fupic.me%2Fi%2Fed%2F7sdds.png&hash=5015569e94c7fec536c76911f0a6b2180f4b2c3c)

As you can see at the picture, how can we make the signature remains at the bottom line of each post by the user.

Thx  ;)
Title: Re: Signature Float due to Avatar
Post by: Antechinus on June 27, 2011, 06:25:16 PM
Set a minimum height on .inner in index.css.
Title: Re: Signature Float due to Avatar
Post by: chaincommonkuy on June 27, 2011, 06:53:03 PM
Sorry, can not fix it. Could you show example please?
Title: Re: Signature Float due to Avatar
Post by: Antechinus on June 27, 2011, 06:58:27 PM
.inner
{
padding: 1em 1em 2px 0;
margin: 0 1em 0 0;
border-top: 1px solid #99a;
}


Change to:

.inner
{
padding: 1em 1em 2px 0;
margin: 0 1em 0 0;
min-height: 120px;
border-top: 1px solid #99a;
}


Use whatever height works for you.
Title: Re: Signature Float due to Avatar
Post by: chaincommonkuy on June 28, 2011, 05:51:01 AM
Quote from: Antechinus on June 27, 2011, 06:58:27 PM
.inner
{
padding: 1em 1em 2px 0;
margin: 0 1em 0 0;
border-top: 1px solid #99a;
}


Change to:

.inner
{
padding: 1em 1em 2px 0;
margin: 0 1em 0 0;
min-height: 120px;
border-top: 1px solid #99a;
}


Use whatever height works for you.

Can not find ".inner" in index.css
All I find is

Quote.search_results_posts .inner
{
   padding: 0.5em 1em;
   overflow: hidden;
}

:-[
Title: Re: Signature Float due to Avatar
Post by: Antechinus on June 28, 2011, 06:50:07 AM
Link?
Title: Re: Signature Float due to Avatar
Post by: chaincommonkuy on June 28, 2011, 07:04:14 AM
Link to where. http://www.teamspeakcybergames.com/index.php
Sorry :(
Title: Re: Signature Float due to Avatar
Post by: Antechinus on June 28, 2011, 09:43:24 AM
Set the min-height on .post then.
Title: Re: Signature Float due to Avatar
Post by: chaincommonkuy on June 28, 2011, 06:45:38 PM
yeah problem solved Thank you :) :)