views:

29

answers:

1

hi,

I've added the following code inside a Drupal block, to display an image.

<img alt="Fuzion logo" src="sites/all/themes/zen/zen/logo.png" />test<br />

I've tried several urls. For none of them I can see the image in my front-end website. The block only contains the text "test".

hostingpath/sites/all/themes/zen/zen/logo.png ---> I can see the logo in back-end (editing field, only with this)
sites/all/themes/zen/zen/logo.png
logo.png

thanks

+1  A: 

Did you remember to use an appropriate filter that allows img tags?

googletorp
thanks, it is really hard for me to keep in mind all these options, and I sometimes lost a lot of time, but at least Drupal is really cool to do whatever I want
Patrick
You can set Full HTML to site-wide default, or better yet, use the Better Formats module to set default input formats for each user role (so you, as admin, could have Full HTML by default, while others have Filtered HTML by default).
semperos

related questions