Tagged Questions
0
votes
0answers
13 views
scroll bar on div with overflow:auto and percentage height
Is it possible to create a div that adjusts to the size of the browser and is also scrollable.
I want to use overflow:auto on the div and percentage height of 90%.
The structure of the page is
...
0
votes
1answer
16 views
scroll div but not entire webview
Is it possible to prevent a uiwebview from scrolling around, but to also have a div that can scroll?
I have a jquery navbar and want a scrollable div underneath with many images. I'd like to be able ...
0
votes
1answer
32 views
Ugly scroll bars with overflow: scroll in Safari, Firefox
I'm building a page here with the entry content in the middle set at a fixed height with overflow: scroll so as to show all the content
http://www.avgdigital.co/elena_urioste/category/biography/
...
0
votes
5answers
36 views
Scroll doesn't work
So I have this page, with a background image, that fill up 100 % of the page. The problem is that now my scroll doesn't work, which gives problems on small screens, because the user then not are able ...
0
votes
0answers
18 views
Need to scroll through search in background instead of scrolling out of background
I'm pretty sure I need to implement an overflow:auto; but I'm not quite sure where. I don't want the background-image to become cut off. I want to be able to scroll through the search results. I can ...
0
votes
0answers
125 views
Body overflow-y hidden and scroll inner div only
I have this HTML structure:
<div id="main_wrapper">
<header>Header</header>
<div id="inner_wrapper">
<div id="left_menu">Left menu</div>
<div ...
0
votes
1answer
56 views
CSS div height overflows the document body when content is added
I have a #container div that is set to height:100%; width:100%; of the document body. Inside the #container is div#box2 that is set to height:100%; width:200px;. When I add lots of content to ...
0
votes
0answers
33 views
Show/Hide divs when fixed size div scrolls/overflows
I have a fixed size div with dynamic content, set to overflow-y: scoll;
The effect I'm trying to achieve is if the inner dynamic content is larger than the outer div size and the user starts ...
0
votes
0answers
49 views
Html - Overflow:hidden still takes space
I have a problem with a scrollable div. There's a div acting as a scrollable container (using a jquery plugin). The container has an overflow:hidden style. it works as expected, but i noticed that the ...
0
votes
1answer
170 views
Have a fixed position div that needs to scroll if content overflows
I have actually two issues, but lets resolve the primary issue first as I believe the other is easier to address.
I have a fixed position div on the left side of the scroll for a menu. Right side is ...
0
votes
1answer
146 views
CSS - Can't get overflow:hidden to work when overflowing on right or bottom
I have created a template that contains a panel and a content. Depending on the template's class (Top, Left, Right, or Bottom) the panel will have a different position. The expand and collapse ...
0
votes
0answers
39 views
When editing a textarea, how can I prevent the containing div from scrolling to it?
I am developing a website where users can create textareas and move them around as they like inside a container div with overflow:hidden - corresponding to a piece of paper.
My problem arises when a ...
2
votes
1answer
67 views
EDIT control text overflow
This is simple. I created an EDIT control like this:
HWND MYTEXT= CreateWindowEx(WS_EX_CLIENTEDGE, L"EDIT", L"",
WS_CHILD|WS_VISIBLE|ES_LEFT|ES_MULTILINE,
...
0
votes
1answer
38 views
How to make image appear based on overflow status
I have a div area that contains pagination, but for mobile devices to access the later pages the horizontal scrollbars do not show and the visitor has to use their finger.
I'm looking for a pretty ...
1
vote
1answer
116 views
How to create a scrolling DIV without cropping overflow-x?
I have a DIV that is only supposed to scroll vertically. I would like to have an element inside this DIV overflow horizontally without being cropped. This is the desired effect:
I thought that if I ...