Go Back   CodingForums.com > :: Client side development > HTML & CSS

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 09-05-2011, 07:03 PM   PM User | #1
misslilbit02
New Coder

 
Join Date: Jul 2005
Posts: 12
Thanks: 3
Thanked 0 Times in 0 Posts
misslilbit02 is an unknown quantity at this point
CSS image positioning

I have this site whereby I want to put an image in a fixed positon on a site relative to the div that it is in. So I've read about it and it's not coming out the way I want it so I'm looking for assistance. What I want to do is this

But I have this

The code I'm using on the image in the HTML is this.
Code:
<div style="position:relative;"><img src="images/shani.png"  class="pos_fixed"/></div>
The code in the CSS file is this
Code:
    
div.pos_fixed
{
/*position:inherit;*/
position:absolute;
top:461px;
/*right:5px;*/
left:0px;
}
misslilbit02 is offline   Reply With Quote
Old 09-05-2011, 07:22 PM   PM User | #2
tracknut
Regular Coder

 
Join Date: Aug 2006
Posts: 892
Thanks: 4
Thanked 206 Times in 205 Posts
tracknut is an unknown quantity at this point
Change this:
Code:
div.pos_fixed
to:
Code:
img.pos_fixed
since you're applying the class to an img, and not to a div. That should get you going in the right direction.

Dave
tracknut is offline   Reply With Quote
Users who have thanked tracknut for this post:
misslilbit02 (09-05-2011)
Old 09-05-2011, 10:38 PM   PM User | #3
misslilbit02
New Coder

 
Join Date: Jul 2005
Posts: 12
Thanks: 3
Thanked 0 Times in 0 Posts
misslilbit02 is an unknown quantity at this point
thanks

This helps alot!!
misslilbit02 is offline   Reply With Quote
Old 09-06-2011, 01:33 AM   PM User | #4
misslilbit02
New Coder

 
Join Date: Jul 2005
Posts: 12
Thanks: 3
Thanked 0 Times in 0 Posts
misslilbit02 is an unknown quantity at this point
I've gotten a solution Thanks!
misslilbit02 is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 10:42 AM.


Advertisement
Log in to turn off these ads.