When i minimize my window, the page is getting minimized. but not showing the entire page as there is no scrollbar once the page is minimized. How to get the scrollbar to get view of the entire page
When i run my application, it will be opened in browser window. If i click restore down button(i mean the button next to close button) the browser window will become half of the full window size. So we cant see the entire content of the page without a scrollbar...
I'm asking how to get that scrollbar when i click restore down button... hope u got it////////
Unless you have explicitly set overflow:hidden for your content, it should normally display the scroll bars. Check whether you've applied that style overflow:hidden.
ManojNR
Member
114 Points
59 Posts
Scrollbar does not appear when page is minimized
Apr 12, 2012 05:21 AM|LINK
Hi,
When i minimize my window, the page is getting minimized. but not showing the entire page as there is no scrollbar once the page is minimized. How to get the scrollbar to get view of the entire page
shatru
Participant
1513 Points
292 Posts
Re: Scrollbar does not appear when page is minimized
Apr 12, 2012 05:24 AM|LINK
Not getting you. Can you explain it a bit?
Regards
Ajatshatru
Dragons Lab
ManojNR
Member
114 Points
59 Posts
Re: Scrollbar does not appear when page is minimized
Apr 12, 2012 05:30 AM|LINK
When i run my application, it will be opened in browser window. If i click restore down button(i mean the button next to close button) the browser window will become half of the full window size. So we cant see the entire content of the page without a scrollbar... I'm asking how to get that scrollbar when i click restore down button... hope u got it////////
shatru
Participant
1513 Points
292 Posts
Re: Scrollbar does not appear when page is minimized
Apr 12, 2012 05:40 AM|LINK
Still not sure about your situation, but you can try putting your contents in a DIV with scrollbar. Somthing like this:
<head> <style type="text/css" media="screen"> #myDiv {width:200px;height:500px;overflow:auto;} </style> </head>Regards
Ajatshatru
Dragons Lab
Evolutionz
Member
261 Points
95 Posts
Re: Scrollbar does not appear when page is minimized
Apr 12, 2012 05:45 AM|LINK
i seriously dont get it...
when you click the restor button ...the scroll bars appears automatically..
Ruchira
All-Star
43056 Points
7040 Posts
MVP
Re: Scrollbar does not appear when page is minimized
Apr 12, 2012 12:28 PM|LINK
Hello,
Unless you have explicitly set overflow:hidden for your content, it should normally display the scroll bars. Check whether you've applied that style overflow:hidden.
My Tech blog | My YouTube ChannelPlease 'Mark as Answer' if this post helps you.