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 2 of 3 Previous  1, 2, 3  Next

Go down

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

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

First topic message reminder :

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) - Page 2 Empty Re: Is it possible to set only text signatures? (no images)

Post by Gangstar15 March 4th 2011, 10:14 pm

enable what Very Happy
if you want to hide the images in the signatures just put the css code above in your CSS stylesheet (:
ACP - Display - Colors - CSS stylesheet
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) - Page 2 Empty Re: Is it possible to set only text signatures? (no images)

Post by CruizingComet March 5th 2011, 9:41 am

Gangstar15 wrote:enable what Very Happy
if you want to hide the images in the signatures just put the css code above in your CSS stylesheet (:
ACP - Display - Colors - CSS stylesheet

Hey Gangsta

Thanks we did this and it worked, (it took the images away)
members still have around 6 or more lines of text? How do we reduce this to one line or a max of two? Thanks Smile



BTW
why is there no easy way of controling signatures within the signature section mods & admin?
avatar
CruizingComet
Forumember

Posts : 157
Reputation : 1
Language : English

Back to top Go down

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

Post by Gangstar15 March 5th 2011, 11:30 am

You need to suggest this in the suggestions section (:
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) - Page 2 Empty Re: Is it possible to set only text signatures? (no images)

Post by CruizingComet March 5th 2011, 11:39 am

I can never find the suggestions section Very Happy
avatar
CruizingComet
Forumember

Posts : 157
Reputation : 1
Language : English

Back to top Go down

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

Post by Gangstar15 March 5th 2011, 5:07 pm

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) - Page 2 Empty Re: Is it possible to set only text signatures? (no images)

Post by Harry Potter March 5th 2011, 6:42 pm


For Punbb:
Code:
.sig-content{
max-height: #px;
}

For Phpbb and Invision:
Code:
.signature_div{
max-height: #px;
}
Replace "#" with a number (in pixels)
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) - Page 2 Empty Re: Is it possible to set only text signatures? (no images)

Post by CruizingComet March 5th 2011, 7:49 pm

Harry Potter wrote:

For Punbb:
Code:
.sig-content{
max-height: #px;
}

For Phpbb and Invision:
Code:
.signature_div{
max-height: #px;
}
Replace "#" with a number (in pixels)

Does this reduce the amount of lines of text ot just images?
avatar
CruizingComet
Forumember

Posts : 157
Reputation : 1
Language : English

Back to top Go down

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

Post by Gangstar15 March 5th 2011, 10:08 pm

I know what he means with these codes (:
it will reduce the area of the signature and hide some lines but it needs this part too:
Code:
overflow:hidden;
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) - Page 2 Empty Re: Is it possible to set only text signatures? (no images)

Post by CruizingComet March 6th 2011, 10:47 am

Now I'm just confused! Mr. Green
avatar
CruizingComet
Forumember

Posts : 157
Reputation : 1
Language : English

Back to top Go down

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

Post by Darren1 March 6th 2011, 11:04 am

Hi,

Whats being suggested is that you use CSS Specific codes.


For Punbb:
Code:
.sig-content{
max-height: #px;
overflow:hidden;
}

For PHPBB2, PHPBB3 and Invision:
Code:
.signature_div{
max-height: #px;
overflow:hidden;
}

Replace "#" with a number (in pixels)

And insert it into your CSS Block: Admin panel >> Display >Colours > CSS Style Sheets > Paste at the end if you have any, otherwise just in the box if it's blank.


Does this help?


Last edited by Darren1 on March 6th 2011, 11:13 am; edited 1 time in total (Reason for editing : Corrected by base, I donno how I misplaces the "}" twice -.-)
Darren1
Darren1
Helper
Helper

Male Posts : 11853
Reputation : 566
Language : English

Back to top Go down

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

Post by Base March 6th 2011, 11:08 am

Actually, Darren the codes are:

PunBB:
Code:
.sig-content{
max-height: #px;
overflow:hidden;
}

phpBB 2, 3 and Invision:
Code:
.signature_div{
max-height: #px;
overflow:hidden;
}

Very Happy
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

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

Post by Darren1 March 6th 2011, 11:12 am

Bugga, thats true, howd I miss that lol. Thanks Base, bud Very Happy

That's a bit embarrassing lol Embarassed
Darren1
Darren1
Helper
Helper

Male Posts : 11853
Reputation : 566
Language : English

Back to top Go down

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

Post by Base March 6th 2011, 11:14 am

No problem, Darren, we all make mistakes. Wink

* * *

Please use the above codes supplied by me to get the desired effect. You will need to replace the # with a number of your choice.
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

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

Post by CruizingComet March 6th 2011, 12:48 pm

Sorry guys for sounding thick, really appreciate the help but what do I need to paste in to actually remove images and reduce lines of text

I'm a newbie to all this and struggle a bit so if you could talk me through it simply that would be great, as said before I managed to disable images/photos (with earlier code) but want to limit text as well?

So do I delete the current code? or just add to it? and what do I add?

Thanks Daren and don't worry mate, can't remember everything everytime, no ones that perfect mate Wink

Thanks All
avatar
CruizingComet
Forumember

Posts : 157
Reputation : 1
Language : English

Back to top Go down

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

Post by Base March 6th 2011, 1:04 pm

You'll need to add the code into your CSS Stylesheet which can be found by going to:

1. Administration Panel (advanced mode)
2. Display Tab
3. Colors (on the left, under Pictures and Colors)
4. CSS Stylesheet and paste the code there

Very Happy
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

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

Post by CruizingComet March 6th 2011, 1:37 pm

Base wrote:You'll need to add the code into your CSS Stylesheet which can be found by going to:

1. Administration Panel (advanced mode)
2. Display Tab
3. Colors (on the left, under Pictures and Colors)
4. CSS Stylesheet and paste the code there

Very Happy

Yes, thanks I know understand that bit, pasted the code previously Cool

But....

1) Do I delete the current code (which removed photos/images) ?
2) Which code do I replace with or add to reduce signature lines?

Thank You Wink
avatar
CruizingComet
Forumember

Posts : 157
Reputation : 1
Language : English

Back to top Go down

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

Post by Base March 6th 2011, 1:40 pm

Oh, right. Razz

You keep the code that removes images from signatures, and you add in the above code with it. You'll need to add the code that is relevant to your forum version i.e. if your forum is on phpBB 3, then you'll need to copy the bottom code.

Example:
Code:
.signature_div{
max-height: #px;
overflow:hidden;
}
.signature_div img{
display: none;
}
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

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

Post by CruizingComet March 6th 2011, 1:45 pm

Thanks Base

So to confirm we add:

.signature_div img{
display: none;
}

to the code already in the box? this will still alow signatures yes? but limit the amount of lines? (just bit confused because it says NONE in the code?)

Thank You
avatar
CruizingComet
Forumember

Posts : 157
Reputation : 1
Language : English

Back to top Go down

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

Post by Base March 6th 2011, 1:49 pm

The code tells the signature that if there are any images, then it will not display them hence the none you see in the code. It will allow signatures, but it will not limit the amount of lines. To limit the amount of lines, you'll need to set the code up so it's like the example shown in my above post. Wink

And yes, you will need to add it to the current CSS code.
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

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

Post by CruizingComet March 6th 2011, 2:07 pm

OK got the following code pasted in CSS style sheets but member is still showing around 6 lines of text?

.signature_div{
max-height: #px;
overflow:hidden;
}
.signature_div img{
display: none;
}
avatar
CruizingComet
Forumember

Posts : 157
Reputation : 1
Language : English

Back to top Go down

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

Post by Base March 6th 2011, 2:34 pm

That's because you haven't replaced the # in the code with a number of your choice. I would recommend 5px, but you can experiment and play around with the code until you find your liking.


Last edited by Base on March 31st 2011, 5:45 pm; edited 1 time in total
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

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

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

OK thanks base, Just tried replacing # with 5px as you suggested and it took out everyones signatures completely? Confused
avatar
CruizingComet
Forumember

Posts : 157
Reputation : 1
Language : English

Back to top Go down

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

Post by Base March 6th 2011, 4:17 pm

Try different values. I'm not sure which number would work perfectly on your forum; but for my forum I used 5 px and it worked great. It's basically a trial and error process. Wink

Just to note: the higher the number, the more of the signature will be displayed.
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

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

Post by CruizingComet March 6th 2011, 4:38 pm

OK, just to confirm I remove the hash "#" not add the number after the #?
avatar
CruizingComet
Forumember

Posts : 157
Reputation : 1
Language : English

Back to top Go down

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

Post by Base March 6th 2011, 4:42 pm

You replace the hash with a number. So, for instance:

Code:
#px
replaced would be
Code:
10px
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

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

Post by CruizingComet March 6th 2011, 4:43 pm

ok mate, will have another go Very Happy
avatar
CruizingComet
Forumember

Posts : 157
Reputation : 1
Language : English

Back to top Go down

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

Post by CruizingComet March 6th 2011, 4:47 pm

OK, had to go up to 45 otherwise signatures dont show? took it down to 42 but the text was cut in half? so at 45 would you say this is ok? lot higher than your 10?? Confused
avatar
CruizingComet
Forumember

Posts : 157
Reputation : 1
Language : English

Back to top Go down

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

Post by Base March 6th 2011, 4:50 pm

You use whatever number suits your forum. I didn't expect it to be a lot bigger than my ten actually. Razz

Without a screenshot, I can't see if 45 is a suitable number. But you're trying to limit the signature, right? So, if you feel that 45 has reduced it to your liking, then keep it that way. Of course, if you are free to change it at any time. Wink
Base
Base
Forumaster

Male Posts : 10386
Reputation : 1695
Language : English and French
Location : United Kingdom, England

http://forumotionhub.net

Back to top Go down

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

Post by CruizingComet March 6th 2011, 5:17 pm

ok thanks will see how we go Smile
avatar
CruizingComet
Forumember

Posts : 157
Reputation : 1
Language : English

Back to top Go down

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

Post by MrMario March 6th 2011, 5:18 pm

CruizingComet
May I remind you that double/triple posting isn't tolerated unless separated by 24 hours (Use the edit button) Wink
MrMario
MrMario
Helper
Helper

Male Posts : 22186
Reputation : 1839
Language : test

Back to top Go down

Page 2 of 3 Previous  1, 2, 3  Next

Back to top

- Similar topics

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