The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Is it possible to set only text signatures? (no images)

+8
CruizingComet
Gangstar15
Adam360
Ivo94
Harry Potter
ToTheFuture
Maki1
Pontifex
12 posters

Page 1 of 3 1, 2, 3  Next

Go down

Is it possible to set only text signatures? (no images) Empty Is it possible to set only text signatures? (no images)

Post by Pontifex November 12th 2010, 11:32 pm

Is it possible to set a function that disables image signatures (jpg, gif, png, bmp) but enables just text signatures?

When I turn off the signature option, it automatically turns off everything in this section, which I don't want... I would at least like to allow modified text signatures with colors and links.

Is that possible?
Pontifex
Pontifex
Forumember

Female Posts : 63
Reputation : 0
Language : Slovene, English, German
Location : Slovenia

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Maki1 November 12th 2010, 11:37 pm

No I don't think so. But you can tell your members to only use text in their Signature.
Maki1
Maki1
Hyperactive

Male Posts : 2529
Reputation : 442
Language : English »» CSS Stylesheet
Location : The » Support » forum » Section! • No support by PM If you need custom theme please contact me!

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Pontifex November 12th 2010, 11:56 pm

Ok thanks. I was quite sure that this is not posssibe, but I still decided to ask Smile

Yeah, I know I could just tell my members to use only text signatures... but that would be quite complicated, as everyday somebody new registers and I would have to warn every single one about that.

In fact I don't know why Forumotion doesn't have something like that? I think it's not difficult to enable an option that would only accept text messages in the signatures... it's somethnig I've seen on other forums too and it's quite simple to use thumleft
Pontifex
Pontifex
Forumember

Female Posts : 63
Reputation : 0
Language : Slovene, English, German
Location : Slovenia

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Maki1 November 13th 2010, 12:02 am

Yeah, I know that... but the suggestion section => https://help.forumotion.com/suggestion-section-f29/ is always open. Very Happy
Maki1
Maki1
Hyperactive

Male Posts : 2529
Reputation : 442
Language : English »» CSS Stylesheet
Location : The » Support » forum » Section! • No support by PM If you need custom theme please contact me!

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by ToTheFuture February 27th 2011, 3:54 pm

You could tell them in an automatic welcome message. Very Happy
ToTheFuture
ToTheFuture
Forumember

Posts : 374
Reputation : 15
Language : English, Français

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Harry Potter February 27th 2011, 4:56 pm

Add in your CSS Stylesheet:

For Punbb:
Code:
.sig-content img{
display: none;
}

For Phpbb and Invision:
Code:
.signature_div img{
display: none;
}
Harry Potter
Harry Potter
New Member

Male Posts : 21
Reputation : 0
Language : Romanian

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Guest February 28th 2011, 3:38 pm

That's it Very Happy the same as what i want to write ;=)
avatar
Guest
Guest


Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Ivo94 February 28th 2011, 8:59 pm

Cool! Very Happy
Is there a way to set maximum width and height (pixels)? Members upload very big signatures, sometimes.

Thanks!
avatar
Ivo94
Forumember

Male Posts : 84
Reputation : 0
Language : English, Dutch
Location : The Netherlands

http://septemberfans.forumotion.com/

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Guest February 28th 2011, 9:01 pm

For images?
avatar
Guest
Guest


Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Ivo94 February 28th 2011, 9:04 pm

Yes, I meant images. Smile
avatar
Ivo94
Forumember

Male Posts : 84
Reputation : 0
Language : English, Dutch
Location : The Netherlands

http://septemberfans.forumotion.com/

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Guest February 28th 2011, 9:14 pm

Okay the same code above (:
but add
Code:
max-width:xxpx;max-height:xxpx;
(:
avatar
Guest
Guest


Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Ivo94 February 28th 2011, 9:19 pm

Is the following code correct? Very Happy

Code:
.signature_div img{
display: none;
}
max-width:450px;max-height:250px;

What is the message to a member that embeds an image that's too big? Smile
Thanks! Very Happy
avatar
Ivo94
Forumember

Male Posts : 84
Reputation : 0
Language : English, Dutch
Location : The Netherlands

http://septemberfans.forumotion.com/

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Guest February 28th 2011, 9:23 pm

Nah Very Happy you need to replace the code i gave with "display:none;" (:
Code:
.signature_div img{
max-width:450px;max-height:250px;
}
There is no message (:
All images will have the max width,height we have in the CSS code (:
avatar
Guest
Guest


Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Ivo94 February 28th 2011, 9:55 pm

I see. So when members save their signature with an image that's too big, the page will refresh and the field will be empty again? Very Happy
Thanks! Smile
avatar
Ivo94
Forumember

Male Posts : 84
Reputation : 0
Language : English, Dutch
Location : The Netherlands

http://septemberfans.forumotion.com/

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by ToTheFuture February 28th 2011, 9:57 pm

Is there a way to only allow text signatures for members, but allow moderators and/or admins full signature permissions?
ToTheFuture
ToTheFuture
Forumember

Posts : 374
Reputation : 15
Language : English, Français

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Guest February 28th 2011, 10:15 pm

#IvoGreen, when a user add big image in the signature, the image will be resized automatically (:
#ToTheFuture, Nope, BUT, i try something i then tell you if its possible Very Happy
avatar
Guest
Guest


Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Ivo94 February 28th 2011, 10:19 pm

Thanks! Smile
avatar
Ivo94
Forumember

Male Posts : 84
Reputation : 0
Language : English, Dutch
Location : The Netherlands

http://septemberfans.forumotion.com/

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Adam360 March 1st 2011, 7:29 pm

Is it possible to dissalow the signature option for individual members?
Adam360
Adam360
Forumember

Male Posts : 866
Reputation : 11
Language : English
Location : England

http://GameBase.betaboard.net

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Guest March 1st 2011, 8:30 pm

If you have another problem please make your own topic (:
avatar
Guest
Guest


Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by ToTheFuture March 2nd 2011, 5:45 pm

Gangstar15 wrote:#ToTheFuture, Nope, BUT, i try something i then tell you if its possible Very Happy

What is it you're trying? Shocked
ToTheFuture
ToTheFuture
Forumember

Posts : 374
Reputation : 15
Language : English, Français

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Guest March 2nd 2011, 5:56 pm

Use the code above to hide the images in the signature (:
then when you an image in your signature and want it to be shown.. use this CSS code:
Code:

img[src="YOU IMAGE URL"]{
   display:block !important;
   }

Hope you get it Very Happy
avatar
Guest
Guest


Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by ToTheFuture March 4th 2011, 4:11 pm

Wow, that is genius! Very Happy But which above code?
ToTheFuture
ToTheFuture
Forumember

Posts : 374
Reputation : 15
Language : English, Français

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Gangstar15 March 4th 2011, 5:44 pm

That one Very Happy
Code:
.signature_div img{
display: none;
}
Gangstar15
Gangstar15
Forumember

Female Posts : 392
Reputation : 163

http://www.designdrops.net/

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by ToTheFuture March 4th 2011, 8:50 pm

So put that in the CSS, and use the code for signatures to show images. Razz Cool. Thanks! Very Happy That is awesome, I'm gonna use it as soon as I'm out of my WebSense-using, hits-monitoring (so no proxies or HotspotShield) school. Razz
ToTheFuture
ToTheFuture
Forumember

Posts : 374
Reputation : 15
Language : English, Français

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by CruizingComet March 4th 2011, 8:56 pm

how do you add the above codes, sorry but Im a little confused? We are trying to stop members adding images / photos to their signatures?
avatar
CruizingComet
Forumember

Posts : 157
Reputation : 1
Language : English

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Gangstar15 March 4th 2011, 9:00 pm

What is your forum version?
Gangstar15
Gangstar15
Forumember

Female Posts : 392
Reputation : 163

http://www.designdrops.net/

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by ToTheFuture March 4th 2011, 9:13 pm

I'm pretty sure it's in the Custom CSS...
ToTheFuture
ToTheFuture
Forumember

Posts : 374
Reputation : 15
Language : English, Français

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by CruizingComet March 4th 2011, 9:33 pm

Gangstar15 wrote:What is your forum version?

phpBB3 (prosilver)
avatar
CruizingComet
Forumember

Posts : 157
Reputation : 1
Language : English

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by Gangstar15 March 4th 2011, 9:34 pm

Then use this:
Code:
.signature_div img{
display: none;
}
Gangstar15
Gangstar15
Forumember

Female Posts : 392
Reputation : 163

http://www.designdrops.net/

Back to top Go down

Is it possible to set only text signatures? (no images) Empty Re: Is it possible to set only text signatures? (no images)

Post by CruizingComet March 4th 2011, 10:13 pm

Gangstar15 wrote:Then use this:
Code:
.signature_div img{
display: none;
}

thanks but how do i enable it, can you run us through it as simply as possible in stages as we are newbies at this forum stuff Mr. Green
avatar
CruizingComet
Forumember

Posts : 157
Reputation : 1
Language : English

Back to top Go down

Page 1 of 3 1, 2, 3  Next

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum