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.
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.
yep! Exactly the same, and that indeed fixes it! Thanks very much.
Still doesn't work :(, alternative signatures in posts go right ...
demo: http://www.asli-indian.com/index.php?topic=706.0
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.
another possible solution posted here: http://www.simplemachines.org/community/index.php?topic=347517.msg2352977#msg2352977
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;
}
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;
}
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....?
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.
Perfect, was looking for a solution in chrome and safari when PM and signature brokes over the screen.
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!
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.
Another one that I'm not sure if it is actually a bug. Can someone look in to this?
From memory this was fixed yonks ago.
/me shows Antechinus where the MOVE TOPIC button is.