I would like to include an image down the side on each page. The image will be about 15 pixels wide X about 700 pixels deep.

If this possible, how would I do it?

Comments

abs_uk’s picture

funny, I have been looking for a solution for this and all through the Drupal fourms i can find loads of people asking the same thing, but no one actually responding, am i missing something, is this so obvous of a solution that we novices have missed it. or is this something so complicated that no one in drupal knows how to implement it.

I have been looking for days now and nothing as of yet in terms of a solution.

the only way i see to do it is to create loads of stories with images and create view of all these images as one page. thats a thought, am just gona do that, screw all this. no more searching ;)

verta’s picture

I found that there is active discussion on http://www.roopletheme.com/forum/ ... perhaps try there?

Kisugi Ai’s picture

Status: Active » Closed (fixed)

hm you have to add the image in the page.tpl.php
maybe befor <div id="page">
eg.:

<div class="test"><img src="<?php print base_path() . path_to_theme() . '/images/test.jpg'; ?>" alt="test" /></div> 

and add in the styles

.test {
  position: absolute;
}

fixes the position top left

or

.test {
  position: fixed; 
}
 

same as absolute, but the item remains available when scrolling and positioning based on the viewport (the visible browser window), not the parent.
closed -- issue fixed for 2 weeks with no activity.