Simple Machines Community Forum

SMF Development => Bug Reports => Fixed or Bogus Bugs => Topic started by: poolhall on November 10, 2009, 11:26:08 AM

Title: Curve+Chrome: Signatures Broken?
Post by: poolhall on November 10, 2009, 11:26:08 AM
Signature areas are badly broken in SMF 2.0 RC2 with Aeva ~ Auto-Embed Video & Audio and Hide Tag Special mods installed for Chrome browser, latest version. Did not try on clean install.
Title: Re: Curve+Chrome: Signatures Broken?
Post by: Diabolo.ca on November 10, 2009, 07:10:47 PM
Is this the same problem as here: [Curve] Safari "float:left" signature display (http://www.simplemachines.org/community/index.php?topic=347117.0)?

In that case you could see if that fixes it.

Title: Re: Curve+Chrome: Signatures Broken?
Post by: poolhall on November 10, 2009, 09:18:36 PM
yep! Exactly the same, and that indeed fixes it! Thanks very much.
Title: Re: Curve+Chrome: Signatures Broken?
Post by: chaitu_cheat on November 11, 2009, 03:47:28 AM
Still doesn't work :(, alternative signatures in posts go right ...

demo: http://www.asli-indian.com/index.php?topic=706.0
Title: Re: Curve+Chrome: Signatures Broken?
Post by: chaitu_cheat on November 11, 2009, 04:09:18 AM
Guy,

Try this out:

/* All the signatures used in the forum.  If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
.signature, .attachments
{
   width: 98%;
   overflow: auto;
   clear: left;
   padding: 1em 0 3px 0;
   border-top: solid 1px #aaa;
   line-height: 1.4em;
   font-size: 0.85em;
}

change clear:right to left, this worked out for me...

info: file is index.css which is located under themes/default...let me know if u have any other fixes for it.
Title: Re: Curve+Chrome: Signatures Broken?
Post by: poolhall on November 11, 2009, 01:42:36 PM
another possible solution posted here: http://www.simplemachines.org/community/index.php?topic=347517.msg2352977#msg2352977
Title: Re: Curve+Chrome: Signatures Broken?
Post by: snork13 on November 11, 2009, 04:28:02 PM
try this:

Themes/default/css/index.css

find:

/* All the signatures used in the forum.  If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
.signature, .attachments
{
width: 98%;
overflow: auto;
clear: left;
padding: 1em 0 3px 0;
border-top: solid 1px #aaa;
line-height: 1.4em;
font-size: 0.85em;
}


replace with:

/* All the signatures used in the forum.  If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
.signature, .attachments
{
width: 98%;
overflow: auto;
clear: both;
padding: 1em 0 3px 0;
border-top: solid 1px #aaa;
line-height: 1.4em;
font-size: 0.85em;
}


Title: Re: Curve+Chrome: Signatures Broken?
Post by: poolhall on November 11, 2009, 05:03:00 PM
Probably this is a better solution, in index.css (Curve):

FIND
/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
overflow: auto;
line-height: 1.4em;
padding: 0.1em 0;
}


REPLACE WITH
/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
overflow: auto;
width: 100%;
line-height: 1.4em;
padding: 0.1em 0;
}
Title: Re: Curve+Chrome: Signatures Broken?
Post by: Sirius OCTeam on November 11, 2009, 10:14:36 PM
Hi

I confirm for the last solution:

Firefox 3.5.5 : OK
Safari 4.0.3 (531.9.1) : OK
Chrome 4.0.223.16 : OK
Opera 10.01 (1844) : OK
IE 7/8 : OK

But possible side effects....?
Title: Re: Curve+Chrome: Signatures Broken?
Post by: SoLoGHoST on November 13, 2009, 11:35:48 AM
Quote from: poolhall on November 11, 2009, 05:03:00 PM
Probably this is a better solution, in index.css (Curve):

FIND
/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
overflow: auto;
line-height: 1.4em;
padding: 0.1em 0;
}


REPLACE WITH
/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
overflow: auto;
width: 100%;
line-height: 1.4em;
padding: 0.1em 0;
}


Excellent, this 1 worked a charm.  Cheers :) 

Note:  Doing clear:both on the signature and attachment css rules causes another display issue just underneath the post title in chrome.  But adding width: 100%; in the code above did it just fine for me.
Title: Re: Curve+Chrome: Signatures Broken?
Post by: ~DS~ on January 06, 2010, 02:57:18 PM
Perfect, was looking for a solution in chrome and safari when PM and signature brokes over the screen.
Title: Re: Curve+Chrome: Signatures Broken?
Post by: FTGuy on February 03, 2010, 01:57:31 AM
Quote from: SoLoGHoST on November 13, 2009, 11:35:48 AM
Quote from: poolhall on November 11, 2009, 05:03:00 PM
Probably this is a better solution, in index.css (Curve):

FIND
/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
overflow: auto;
line-height: 1.4em;
padding: 0.1em 0;
}


REPLACE WITH
/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
overflow: auto;
width: 100%;
line-height: 1.4em;
padding: 0.1em 0;
}


Excellent, this 1 worked a charm.  Cheers :) 

Note:  Doing clear:both on the signature and attachment css rules causes another display issue just underneath the post title in chrome.  But adding width: 100%; in the code above did it just fine for me.
Thanks for the help folks... Worked for me as well..  8)

Cheers!
Title: Re: Curve+Chrome: Signatures Broken?
Post by: gm112 on February 13, 2010, 04:54:37 PM
I don't.. think this patch is needed. I removed webkit.css just to see what would happen, and everything rendered properly. I'm using Chromium 5.0.328.0 build 39002.

EDIT: Tested this on Google Chrome 5.0.307.7, and it worked perfectly fine w/o the hacked CSS. Not so sure about Safari. I don't think removing it "yet" would be smart. Just leave it up for your users who may be using older versions.


.attachments
{
    clear: right;
}


That's a simpler fix, in my opinion. Use which ever one you want. They all do the same thing ;P.
Title: Re: Curve+Chrome: Signatures Broken?
Post by: Joshua Dickerson on July 05, 2011, 12:26:32 AM
Another one that I'm not sure if it is actually a bug. Can someone look in to this?
Title: Re: Curve+Chrome: Signatures Broken?
Post by: Antechinus on July 05, 2011, 12:55:12 AM
From memory this was fixed yonks ago.
Title: Re: Curve+Chrome: Signatures Broken?
Post by: Joshua Dickerson on July 05, 2011, 01:51:45 PM
/me shows Antechinus where the MOVE TOPIC button is.