Safey89
-
How to stretch my page and get scroll bar when zooming in?
thanks everyone and sorry if i bothered you ^_^
-
How to stretch my page and get scroll bar when zooming in?
I think I found my solution : $('html').css('width',$(window).attr('innerWidth')); $('html').css('overflow-x','scroll') $('html').css('position','absolute')
-
How to stretch my page and get scroll bar when zooming in?
I was asked to scroll the whole page when zooming not only the table , also I thought It's wrong to give the table a width (for example : 1200px) beacuase I don't know what screen would be used to display my site !
-
How to stretch my page and get scroll bar when zooming in?
maybe this's called a fluid width of table
-
How to stretch my page and get scroll bar when zooming in?
okay I'm sorry , I'm not the one who wrote those stylesheets . I'm just trying to find errors and I'm a beginner and here's my pain
-
How to stretch my page and get scroll bar when zooming in?
please help me :( I tried many ways and I had two results : if I want to make my site like this site : all elements inside html and body I have to make width:100% for html and body and not specify any width for any element (table) inside html and b…
-
How to stretch my page and get scroll bar when zooming in?
I wrote some code here's somthing similar to my problem : http://jsfiddle.net/U2YkF/11/
-
How to stretch my page and get scroll bar when zooming in?
you are so right . you can't help without seeing what I'm talking about and I'm not allowed to show you local code . I asked our designer here in company and he didn't know what's wrong . he said I should know how zooming w…
-
How to stretch my page and get scroll bar when zooming in?
I'm really sorry :$ I just want my page to be like stackoverflow.com when zooming in . but style I have (which I didn't write) do as you see in the image above . html and body don't get bigger they are always in the size of my browse…
-
How to stretch my page and get scroll bar when zooming in?
http://jsbin.com/apane6/14 it's my problem !! I want to get rid of this problem . I want the whole page which contains many tabs and tables inside tabs to grow together . thats simple ...
-
How to stretch my page and get scroll bar when zooming in?
I'm not the ine who wrote the stylesheets . I'm just using them . and I was asked to fix this problem
-
How to stretch my page and get scroll bar when zooming in?
I solved it : body html { position: fixed; width: 100%; overflow:scroll; } but the scroll is not visible :(
-
How to stretch my page and get scroll bar when zooming in?
if you are develoing a product you will have many style sheets :D !! what's strange in that ! I can't give a link . I thought you guys are experts who can find the bug from an image it's a position or overflow or somthing I still d…
-
How to stretch my page and get scroll bar when zooming in?
I have many css files and I don't know which one I should show you its code . any way here it is : body{font-size: 11pt;color: #333333;font-family: Calibri,"Times New Roman";} a{text-decoration: none} h3{border-bottom:1px s…
-
How to stretch my page and get scroll bar when zooming in?
the table is going outside the html body content . I'll give you an example ! my page now is like this site . try to zooming-in here this page . I want the zooming to be like http://stackoverflow.com scroll I'm talking about is in the bot…