0

I am customizing the default theme provided with roundcube. however i am facing problems while adding image in my template. the image is inside the images folder inside mytheme. i want to add that image using an img tag but i just cant figure out how.

I have already tried these paths..none of them are working.
/images/myimage.png
../images/myimage.png
http://local.mysite.com/images/myimage.png How can i insert an image residing on my own server using img tag?

Praveen Puglia
  • 5,577
  • 5
  • 34
  • 68
  • If you want help in this concern then surely you should visit http://roundcubeskins.com/ to resolve your query. try it. – Jaffer Wilson Jul 30 '15 at 17:02

1 Answers1

0

Assuming your webmail installation is at the root of your url (e.g. http://mail.example.com/), try:

<img src="/skins/mytheme/images/myimage.png">
mlerley
  • 70
  • 1
  • 2
  • 10