Results 1 to 2 of 2

Thread: a scroll bar for a long text not showing

  1. #1
    Join Date
    Mar 2010
    Posts
    11

    a scroll bar for a long text not showing

    my TEXT TEXT TEXT is much longer than a screen height, but i dont get a scroll option in any browser. the text is clipped. how can i wrap it into a div to enable scroll down?

    thanx in adv.


    PHP Code:
    <body>
                
             <
    div id="wrapper">
            
            <
    div id="text"><p>TEXT TEXT TEXT</p> </div>
            
        </
    div>
        
    </
    body

    Code:
    body {
    	background: #111 url(../images/bg.jpg) no-repeat left top fixed;
    	position: relative;
    	}
    
    
    #wrapper {
    	background:url(../images/pattern.gif) repeat;
    	width: 100%;
    	height:100%;
    	position:fixed;
    	z-index: 100;
    	}
    
    
     #text { 
    	margin-top: 30px;
    	margin-left: 20px;
    	height:auto;
    	}
    #text p{
            font-family: 'Arial Bold',Arial,sans-serif;
    	font-size: 16px;
    	letter-spacing:-0.5px;
    	padding:0px;
    	border:none;
    	color: #fff;
    	text-decoration: none;
    	}

  2. #2
    Join Date
    Feb 2006
    Location
    Salisbury UK
    Posts
    4,332
    EITHER
    Delete position: fixed in #wrapper (I'm not sure what good that's doing as the wrapper will always start from the top left corner and be effectively fixed without needing to code it as fixed).

    OR

    Keep the position: fixed and add overflow: scroll; to the #wrapper style.
    Code downloaded to my PC will be deleted in due course.
    WIN7; IE9, Firefox, Opera, Chrome and Safari for Windows; screen resolution usually 1366*768.
    Also IE6 on W98 with 800*600 and IE8 on Vista 1440*900.

Similar Threads

  1. Scroll Bar
    By hiddenbrooknb in forum Web Design, HTML Reference and CSS
    Replies: 1
    Last Post: 29 Oct 2009, 01:45 AM
  2. adding a scroll bar..
    By Fall0ut in forum Web Design, HTML Reference and CSS
    Replies: 1
    Last Post: 21 Mar 2007, 02:16 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •