I've set up a simple 4 page site in Drupal for a local kennels/cattery
There are 4 pages - home, cats, dogs, contact.
I can place images using the fields editor and they show up, but I cant locate them where I want on the page. So I set them to "hidden" and they disappear.
Using the "Insert" tool, I can place images on the "dogs" page and it works fine.
The other pages will not allow me to place images. The code goes on the page, but no image shows.Here is the code:
<img src="http://localhost/drupal/sites/default/files/curious-cat.png" width="145" height="260" alt="" title="" />We look after cats
When I use the Element Inspector the image does not show.
<div class="content clearfix">
<div class="field field-name-body field-type-text-with-summary field-label-hidden">
<div class="field-items">
<div class="field-item even" property="content:encoded">
<p>We look after cats</p>
</div>
</div>
</div>
<div class="field field-name-field-animal field-type-image field-label-hidden">
<::after>
</div>
Dogs page:
<img src="http://localhost/drupal/sites/default/files/Border-collie-dog.png" width="298" height="260" alt="" title="" align="left" style="margin: 0px 30px 0px 0px" />XXXX Quarantine Kennels is
When I use the Element Inspector:
<div class="field-items">
<div class="field-item even" property="content:encoded">
<p>
<img src="http://localhost/drupal/sites/default/files/Border-collie-dog.png" width="298" height="260" alt="" title="" align="left" style="margin: 0px 30px 0px 0px"/>
XXX Quarantine Kennels is a small, ...
</p>
</div>
</div>
Hope someone can help!
question?
With respect, I read the post but do not see a question. To give all possible options would mean writing a long tutorial!
You say "The other pages will not allow me to place images." Often this is nothing more serious than that you have selected Filtered HTML and forgotten to save your work as Full HTML.
There are several ways to control the way an image uploaded via an image field is displayed. But for a very small and simple site, uploading an image via the WYSIWYG may be all you need.
full html
Forgive me I was so concerned with providing the information I lost track of completeing the question - but you got the idea.
You hit the nail on the head. Dogs page was full, others (default) was filtered. Site sorted. Thanks.