Roundcube Community Forum

News and Announcements => General Discussion => Topic started by: fz1 on October 02, 2012, 08:56:17 AM

Title: New user questions
Post by: fz1 on October 02, 2012, 08:56:17 AM
Hi
I have just started to use roundcube and have the following questions which i hope you can answer:

1. can I upload a Photoshop type signature ?

2. how do i remove the under line for my web address under my signature?

there are a few more questions which i will come back :)

Thanks in advance


Title: Re: New user questions
Post by: SKaero on October 02, 2012, 12:12:10 PM
1. I'm not sure what a Photoshop type signature is, if you mean having an image in your signature than yes you can do that.
2. Add style="text-decoration:none;" to the <a> tag.
Title: Re: New user questions
Post by: fz1 on October 02, 2012, 08:43:57 PM
in html mode? can you provide the whole code plz

Title: Re: New user questions
Post by: fz1 on October 04, 2012, 12:35:43 PM
i played around with it but cant getit to work what do i need to add to remove the underline?

also how can you insert images?
;D

Title: Re: New user questions
Post by: SKaero on October 04, 2012, 02:49:26 PM
The code to remove the underline should be:

<a href="http://example.com/" style="text-decoration:none;">Link Text</a>


You can link to an image on a web server or get the base64 value of the image and but that in the img tag.
Title: Re: New user questions
Post by: fz1 on October 04, 2012, 06:37:35 PM
<pre><span style="text-decoration: none;"><span style="color: #000000;"><a href="www.example.com" target="_blank"><span style="color: #000000; text-decoration: none;">www.example.com</span></a></span></span></pre>

this is what i have edited. i press update but underline is still there
Title: Re: New user questions
Post by: fz1 on October 07, 2012, 12:42:09 PM
what do i need to change in the above code?

Title: Re: New user questions
Post by: SKaero on October 07, 2012, 05:41:33 PM
The code should look like the following:
<pre><a href="www.example.com" target="_blank" style="color: #000000;text-decoration:none;">www.example.com</a></pre>
Title: Re: New user questions
Post by: fz1 on October 08, 2012, 09:24:41 AM
Thanks. it removed the line but also removed the link :-[ the web address is no longer linkable
also the font is not the same as the rest of the text
Title: Re: New user questions
Post by: SKaero on October 08, 2012, 01:48:33 PM
Try removing the <pre> tags.