Re: [css-d] Screen Resolution Independend CSS

2012-02-08 Thread Micky Hulse
On Wed, Feb 8, 2012 at 3:41 AM, Mrinmoy Ghosh wrote: > Can you provide me some tips that how can I disable this horizontal scroll > bar ? You could also play around with: body { overflow: hidden; } __ css-discuss [css-d@lists.c

Re: [css-d] Screen Resolution Independend CSS

2012-02-08 Thread David Laakso
On Wed, Feb 8, 2012 at 6:41 AM, Mrinmoy Ghosh wrote: I design a webpage with CSS in 1280*768 resolution using Absolute positioning. But when I change my screen resolution to 1024*768 then a horizontal scroll bar is come. Can you provide me some tips that how can I disable this horizontal scroll

Re: [css-d] Screen Resolution Independend CSS

2012-02-08 Thread Chris F.A. Johnson
On Wed, 8 Feb 2012, John D wrote: Use body width of 100% or width of the container/wrapper of 100%. Better still, don't specify. 100% is the default. However, if you specify 100%, then margins and padding will be added to that, causing horizontal scrolling. If you don't specify i

Re: [css-d] Screen Resolution Independend CSS

2012-02-08 Thread Micky Hulse
On Wed, Feb 8, 2012 at 3:41 AM, Mrinmoy Ghosh wrote: > I design a webpage with CSS in 1280*768 resolution using Absolute > positioning. But when I change my screen resolution to 1024*768 then a > horizontal scroll bar is come. Can you provide me some tips that how can I > disable this horizonta

Re: [css-d] Screen Resolution Independend CSS

2012-02-08 Thread John D
Use body width of 100% or width of the container/wrapper of 100%. Hope this gives you an idea to adapt this technique. > I design a webpage with CSS in 1280*768 resolution using Absolute > positioning. But when I change my screen resolution to 1024*768 then a > horizontal scroll bar is come

Re: [css-d] Screen Resolution Independend CSS

2012-02-08 Thread Venditelli, Daniel - Web Development Administrator
css-d] Screen Resolution Independend CSS Hi, I design a webpage with CSS in 1280*768 resolution using Absolute positioning. But when I change my screen resolution to 1024*768 then a horizontal scroll bar is come. Can you provide me some tips that how can I disable this horizontal scroll bar ? Re

Re: [css-d] Screen Resolution Independend CSS

2012-02-08 Thread Chris F.A. Johnson
On Wed, 8 Feb 2012, Mrinmoy Ghosh wrote: I design a webpage with CSS in 1280*768 resolution using Absolute positioning. But when I change my screen resolution to 1024*768 then a horizontal scroll bar is come. Can you provide me some tips that how can I disable this horizontal scroll bar ?

[css-d] Screen Resolution Independend CSS

2012-02-08 Thread Mrinmoy Ghosh
Hi, I design a webpage with CSS in 1280*768 resolution using Absolute positioning. But when I change my screen resolution to 1024*768 then a horizontal scroll bar is come. Can you provide me some tips that how can I disable this horizontal scroll bar ? Regards Mrinmoy  __