Title: Right bottom image
Last modified: August 19, 2016

---

# Right bottom image

 *  [rejunker](https://wordpress.org/support/users/rejunker/)
 * (@rejunker)
 * [17 years, 4 months ago](https://wordpress.org/support/topic/right-bottom-image/)
 * Hello everyone 😀
    now my following problem is that ive got a nice background
   image on my blog and now i would like to add a little image ([http://www.cruxis.at/data/e4ed8fda1fb3c0_full.gif](http://www.cruxis.at/data/e4ed8fda1fb3c0_full.gif))
   to the right bottom of the site which should be there when i scroll up or down
   so it will allways be visible on the right corner thx 😀

Viewing 6 replies - 1 through 6 (of 6 total)

 *  [zeniph](https://wordpress.org/support/users/zeniph/)
 * (@zeniph)
 * [17 years, 4 months ago](https://wordpress.org/support/topic/right-bottom-image/#post-941364)
 * the basic CSS is
 *     ```
       #name-of-div{
        position:absolute;
        bottom:0;
        text-align:right;
       }
       ```
   
 * then just insert your image tag in that DIV.
 * cant remember exactly why (some IE6 quirk) but I ended up using bottom:-1px to
   make it work cross browser – which forces a vertical scroll bar to appear in 
   firefox unfortunately
 *  [zeniph](https://wordpress.org/support/users/zeniph/)
 * (@zeniph)
 * [17 years, 4 months ago](https://wordpress.org/support/topic/right-bottom-image/#post-941370)
 * whoops – scratch that
 *     ```
       #name-of-div{
        position:fixed;
        bottom:0;
        text-align:right;
       }
       ```
   
 * will work – but not for IE6…. will get back to you if I get a spare moment to
   look at further
 *  [zeniph](https://wordpress.org/support/users/zeniph/)
 * (@zeniph)
 * [17 years, 4 months ago](https://wordpress.org/support/topic/right-bottom-image/#post-941375)
 * check out this
    [http://www.cssplay.co.uk/layouts/fixed.html](http://www.cssplay.co.uk/layouts/fixed.html)
 *  Thread Starter [rejunker](https://wordpress.org/support/users/rejunker/)
 * (@rejunker)
 * [17 years, 4 months ago](https://wordpress.org/support/topic/right-bottom-image/#post-941408)
 * thx for the help 😀
    well somethings wrong ichecked the site but i cant find 
   the css code or im just bit stupid ^_^
 *  [zeniph](https://wordpress.org/support/users/zeniph/)
 * (@zeniph)
 * [17 years, 4 months ago](https://wordpress.org/support/topic/right-bottom-image/#post-941536)
 * it isnt a “typical” tutorial page I guess!
 * view the source of that page – and read the text
 *  [drewactual](https://wordpress.org/support/users/drewactual/)
 * (@drewactual)
 * [17 years, 4 months ago](https://wordpress.org/support/topic/right-bottom-image/#post-941555)
 * another thing you can do is this… track carefully:
 * make a new div in your css- call it #lastpic for speaking terms.. something like
   this:
 *     ```
       #lastpic  {
                    background: url(yoururl) fixed no-repeat;
                    postion:absolute;
                    bottom: 0;
                    right: 0;
                    height: ??? /*height of your pic*/
                    width: ??? /*width of your pic*/
                   }
       ```
   
 * and then.. go to your footer, and add before </body> a new div.. open it and 
   close it on the same line… ex:
 * `<div id="lastpic"></div>`
 * let me know how dat der’ works for ya!

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Right bottom image’ is closed to new replies.

 * 6 replies
 * 3 participants
 * Last reply from: [drewactual](https://wordpress.org/support/users/drewactual/)
 * Last activity: [17 years, 4 months ago](https://wordpress.org/support/topic/right-bottom-image/#post-941555)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
