Results 1 to 5 of 5

Thread: CSS Scroller Question

  1. #1
    Join Date
    Aug 2006
    Posts
    15
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default CSS Scroller Question

    Hey Everybody,

    Question for you....I have a css scroller box on this page:

    http://www.hollywoodbeachhostel.com/


    I am on a MAC and see the scroller box perfectly with none of the text getting cut off. But a co-worker on a PC and also I saw on Browser Shots that the last sentence you see before you scroll down gets cut off at the middle.

    They want to try and have this fixed (more for aesthetics then for anything else). I have tried padding but it doesn't seem change anything. Can something like this be controlled?

    I don't think so but I thought I would ask first.

    Thank you!!!!

  2. #2
    Join Date
    Jun 2009
    Location
    UK
    Posts
    19
    Thanks
    2
    Thanked 2 Times in 2 Posts

    Default

    Have you tried this:

    Code:
    overflow: hidden;
    This sometimes stops content overflowing outside the div container, I've had a similar issue to you before when I was doing a friends website... So hopefully it might work for you... If it doesn't then let me know

  3. #3
    Join Date
    Aug 2006
    Posts
    15
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Hmmmm...didn't seem to work because it hid the scroll bar all together. : (

  4. #4
    Join Date
    Jul 2009
    Location
    Cleveland, OH
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Try adding:

    Code:
    * html #content {
    	overflow: visible;
    }
    You have to reset the overflow for IE. Place it after your current #content rules

  5. #5
    Join Date
    Aug 2006
    Posts
    15
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    They want it on this section of text? They don't like that last sentence getting cut off at the middle but I didn't think that was something that css could control.

    Especially across different browsers. I always thought that depended on your browser, monitor settings, etc.

Bookmarks

Posting Permissions

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