Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
to understand my problem please see http://www.nimbusitsolutions.com/ in this site given "give feedback" and "Hottest Offer" are given plese help me.
Posted
Updated 18-Aug-10 23:41pm
v2
Comments
Dalek Dave 19-Aug-10 5:41am    
Minor Edit for spelling and removal ot Txtspk.

They're using CSS or styles to position the images and links. If you were to view the source of the page you may be able to figure out what they are doing. My guess is a sidebar with an absolute positioned element containing the images and links. This link[^] will give you a selection of sites that discuss CSS layouts, etc.
 
Share this answer
 
You need to set the following CSS properties to the element you want to set position:

Set fixed position as : "position:fixed"
Set a high z index : Say, "z-index:1000"
Set left/right and top position : Say, "right:0px", "bottom:15px";

So, you can create a Css class as follows:
.cornerImage
{
   position:fixed;
   z-index:1000;
   right:0px;
   bottom:15px;
}


And, set the css class of your image as follows:

<img class="cornerImage" src="" id="" />
 
Share this answer
 
v2
Comments
Dalek Dave 19-Aug-10 5:42am    
Good Call.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900