I forgot a code |
I forgot a code |
Feb 28 2009, 11:58 AM
Post
#1
|
|
![]() Senior Member ![]() ![]() ![]() ![]() Group: Member Posts: 292 Joined: Jul 2007 Member No: 545,047 |
I know I've used it before but I'm blanking. I have a very wide image, which I want to use for the header of a layout. I made it so large, so that people with bigger resolutions can see more. I don't know how to explain this too well..
I want the image to only show what can fit on the screen. I don't want a scroll bar that show shows the whole image. How do I do this? Also, I don't want this image to be the background. I want to have it on a div. |
|
|
|
![]() |
Feb 28 2009, 12:27 PM
Post
#2
|
|
|
Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 |
Try this:
CODE <style> .header {position:absolute; top:#px; left:50%; margin-left:#px; height:#px; width:#px; overflow:hidden; background:url("URL") center no-repeat scroll; display:block;} .headerimg {height:#px; width:#px;} </style> <div class="header"> <img src="http://i33.tinypic.com/2j1t0sh.jpg" class="headerimg"> </div> Replace URL in the CSS code with the url of the image you want to use as your header. Also, replace the pound symbols with the appropriate values. See if that works for you. |
|
|
|
GunsNRachel I forgot a code Feb 28 2009, 11:58 AM
jcp So do you want to keep it center and just remove t... Feb 28 2009, 12:05 PM
GunsNRachel I just wanted to get rid of the scroll bars.
than... Feb 28 2009, 12:16 PM
GunsNRachel CODE<!DOCTYPE html PUBLIC "-//W3C//DTD... Feb 28 2009, 12:38 PM
Mike Replace this:
CODEbody {
background:url(... Feb 28 2009, 12:41 PM
GunsNRachel Thank you so much! Feb 28 2009, 12:48 PM
GunsNRachel Actually I have another problem now. I want it to ... Feb 28 2009, 12:51 PM
Mikeplyts Try using this to make it scroll but no horizontal... Feb 28 2009, 01:08 PM
GunsNRachel Doesn't work =\ Feb 28 2009, 01:44 PM
Mike It's actually like this:
CODEoverflow-x:h... Feb 28 2009, 02:05 PM
Mikeplyts ^Oh yeah. haha. Feb 28 2009, 02:14 PM
GunsNRachel I love you guys! Thanks a ton =) Feb 28 2009, 02:21 PM
Mike Topic closed & moved. Feb 28 2009, 02:46 PM![]() ![]() |