Author Topic: New user questions  (Read 5340 times)

Offline fz1

  • Newbie
  • *
  • Posts: 6
New user questions
« 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



Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,881
    • SKaero - Custom Roundcube development
Re: New user questions
« Reply #1 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.

Offline fz1

  • Newbie
  • *
  • Posts: 6
Re: New user questions
« Reply #2 on: October 02, 2012, 08:43:57 PM »
in html mode? can you provide the whole code plz


Offline fz1

  • Newbie
  • *
  • Posts: 6
Re: New user questions
« Reply #3 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


Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,881
    • SKaero - Custom Roundcube development
Re: New user questions
« Reply #4 on: October 04, 2012, 02:49:26 PM »
The code to remove the underline should be:
Code: [Select]
<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.

Offline fz1

  • Newbie
  • *
  • Posts: 6
Re: New user questions
« Reply #5 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

Offline fz1

  • Newbie
  • *
  • Posts: 6
Re: New user questions
« Reply #6 on: October 07, 2012, 12:42:09 PM »
what do i need to change in the above code?


Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,881
    • SKaero - Custom Roundcube development
Re: New user questions
« Reply #7 on: October 07, 2012, 05:41:33 PM »
The code should look like the following:
Code: [Select]
<pre><a href="www.example.com" target="_blank" style="color: #000000;text-decoration:none;">www.example.com</a></pre>

Offline fz1

  • Newbie
  • *
  • Posts: 6
Re: New user questions
« Reply #8 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
« Last Edit: October 08, 2012, 09:27:45 AM by fz1 »

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,881
    • SKaero - Custom Roundcube development
Re: New user questions
« Reply #9 on: October 08, 2012, 01:48:33 PM »
Try removing the <pre> tags.